-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·250 lines (235 loc) · 8.87 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Arboles con Ext JS</title>
<link rel="stylesheet" type="text/css" href="ext-2.2/resources/css/ext-all.css" />
<style type="text/css">
body{
height:100%;
font-family:georgia;
}
</style>
<script type="text/javascript" src="ext-2.2/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-2.2/ext-all-debug.js"></script>
<script type="text/javascript" src="ext-2.2/source/locale/ext-lang-es.js"></script>
<!--Contenido que sera módificado-->
<script>
Ext.BLANK_IMAGE_URL = 'ext-2.2/resources/images/default/s.gif';
Ext.onReady(function() {
// Estas dos líneas sirven para poder presentar los mensajes de error
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
// Crear un nodo que cargue asicronicamente (AJAX) sus hijos
root = new Ext.tree.AsyncTreeNode({
text: 'Raiz',
id: '0',
draggable: false
});
/**
* Función que permite crear nodos
*/
function crearNodo() {
// Se busca el nodo seleccionado
var nodo = Ext.getCmp('arbol').getSelectionModel().selNode;
var w = new Ext.Window({
title: 'Crear Nodo', width: 250, modal: true,
items: [{
xtype: 'form', id: 'formaCrearNodo', labelWidth: 40, url: 'arbol.php',
items:[{
xtype: 'hidden', name: 'accion', id: 'accion', value: 'crear'
},{
xtype: 'hidden', name: 'padre', id: 'padre', value: nodo.id
},{
xtype: 'textfield', fieldLabel: 'Texto', name: 'nombre', id: 'texto', allowBlank: false
}]
}],
buttons: [{
text: 'Guardar', handler: function() {
// Obtener la forma que recien cramos
var forma = Ext.getCmp('formaCrearNodo');
// Recuperamos el nombre del nodo
var nombre = forma.getForm().getValues().nombre;
forma.getForm().submit({
success: function(a, resp) {
//resp.result.id
// Busca el parent Contenedor y lo cierra
nodo.appendChild(new Ext.tree.TreeNode({
id: resp.result.id,
text: nombre
}));
forma. findParentByType('window').hide();
},
failure: function(a, b) {
// Se muestra un mensaje de error
Ext.MessageBox.show({
title: 'Error',
msg: 'Existion un error al crear el nodo!',
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
});
}
});
}
}]
});
w.show();
}
/**
* Función que permite editar el texto de un nodo
*/
function editarNodo() {
var nodo = Ext.getCmp('arbol').getSelectionModel().selNode;
(new Ext.Window({
title: 'Editar Nodo', width: 250, modal: true,
items: [{
xtype: 'form', id: 'formaEditarNodo', labelWidth: 40, url: 'arbol.php',
items:[{
xtype: 'hidden', name: 'accion', id: 'accion', value: 'editar'
},{
xtype: 'hidden', name: 'id', id: nodo.id, value: nodo.id
},{
xtype: 'textfield', fieldLabel: 'Texto', name: 'nombre', id: 'texto', allowBlank: false,
value: nodo.attributes.text
}]
}],
buttons: [{
text: 'Guardar', handler: function() {
//console.log(Ext.getCmp('formaCrearNodo').getForm());
forma = Ext.getCmp('formaEditarNodo');
// Recuperamos el nombre del nodo
var nombre = forma.getForm().getValues().nombre;
forma.getForm().submit({
success: function() {
forma. findParentByType('window').hide();
nodo.setText(nombre);
},
failure: function() {
// Se muestra un mensaje de error
Ext.MessageBox.show({
title: 'Error',
msg: 'Existion un error al editar el nodo!',
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
});
}
});
}
}]
}) ).show();
}
/**
* Función que permite borrar nodos
*/
function borrarNodo() {
// Inicio de llamada al servidor
var arbol = Ext.getCmp('arbol');
var nodo = arbol.getSelectionModel().selNode;
Ext.Ajax.request({
url:'arbol.php',
method: 'POST',
params: {accion: 'borrar', id: nodo.id},
success: function(resp, o) {
// Capturar excepcion
try{
// Decodifica las cadenas de texto y las convierte en JSON
r = Ext.decode(resp.responseText);
}catch(e) {
o.failure();
}
// Verificar respuesta exitosa
if(!r.success) {
// Se muestra un mensaje de error recibido desde el servidor
Ext.MessageBox.show({
title: 'Error',
msg: r.error,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
});
}else {
nodo.remove();
}
arbol.enable(); //Habilitar Panel
return false;
},
//Funcion de falla
failure: function(resp, o) {
arbol.enable();
// Se muestra un mensaje de error
Ext.MessageBox.show({
title: 'Error',
msg: 'Existion un error al borrar el nodo!',
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
});
}
});
}
// Crear Arbol
var tree = new Ext.tree.TreePanel({
id: 'arbol',
loader: new Ext.tree.TreeLoader({
url:'arbol.php',
requestMethod:'GET',
baseParams:{accion:'mostrar'}
}),
width: 250,
height: 300,
enableDD: true, //Permite Drag and Drop
containerScroll: true,
renderTo: 'arbol', //Id del tag en el cual se renderiza
root: root,
rootVisible: false, //No queremos ver el nodo raiz
tbar : [{
text: "Crear", handler: crearNodo
},{
text: "Editar", handler: editarNodo
},{
text: "Borrar", handler: borrarNodo
}]
});
// Se expande el nodo raíz y se selcciona su primer hijo
root.expand(false, false, function() {
root.childNodes[0].select();
});
/**
*Evento que permite realizar el movimiento de un nodo
*/
tree.on('movenode', function(arbol, node, oldParent, newParent, position) {
if(newParent.id == oldParent.id) {
//No realizar nada no se reemparento
return false;
}
//Inicio de llamada al servidor
Ext.Ajax.request({
url:'arbol.php',
method: 'GET',
params: {accion: 'mover', nodo: node.id, nuevoPadre: newParent.id},
success: function(resp, o) {
try{
// Decodifica las cadenas de texto y las convierte en JSON
r = Ext.decode(resp.responseText);
// Verificar respuesta exitosa
if(!r.success) {
o.failure(); //Fallo
}
arbol.enable(); //Habilitar Panel
// Capturar excepcion
}catch(e) {
o.failure();
}
},
//Funcion de falla
failure: function(resp, o) {
arbol.suspendEvents();
oldParent.insertBefore(node, null);
arbol.enable(); //habilitar arbol
}
});
});
});
</script>
<!-- Fin -->
<body>
<div id="arbol" ></div>
</body>
</html>