-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajax.js
186 lines (141 loc) · 5.78 KB
/
ajax.js
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
$(function(){
$.ajaxSetup({timeout: 4000,
url :window.location.href,
type: "POST",
//todo: beforesend kiu aldonas ID de paĝo
success:traktuRespondon,
error: function (a,err){alert(a.responseText); alert(err);} });
$.tempolimo = 0;
$("#sxargilo").ajaxStart(function(){
$(this).show(); })
.ajaxComplete(function(){
$(this).hide();
});
$("#nomo").click(aldonuEdit);
$("#enhavo").dblclick(function(){
$.ajax( { beforeSend: function(){ $("#enhavo").fadeTo(80,0.25); },
data: {ago:"redakti"} }
);
})
});
//aldonas redakteblan titolon
var aldonuEdit = function(event){
var valoro = $(event.target).text();
var patro = $(event.target).parent();
$(event.target).remove();
el = document.createElement("input");
el.onkeypress = function(e){
var el = e.target;
if(e.keyCode=='13'){
redonu(el, el.value);
konservuNomon();
}
else if(e.keyCode=='27'){
redonu(el, el.origValoro );
}
};
el.onblur = function (e){ var el = e.target; redonu(el, el.origValoro); };
el.id="nomo";
el.type="text";
el.value = valoro;
el.origValoro = valoro;
patro.append(el);
el.focus();
}
// redonas redakteblan titolon reen al h1titolo
var redonu = function (el, str ){
var patro = $(el).parent();
el.onblur = null ;
$(el).remove();
elspan = document.createElement("span");
elspan.id="nomo";
elspan.innerHTML = str;
elspan.onclick = aldonuEdit;
$(patro).append(elspan);
}
/****************************************************/
var traktu = function(event) {
if (!event) event = window.event;
if (event.target) elemento = event.target;
else if (event.srcElement) elemento = event.srcElement;
if (event.which == 0 || event.charCode == 0) { //ignoru klavarojn kiu neskribas signojn
return true;
}
clearTimeout($.tempolimo);
$.tempolimo = setTimeout( function(){ agu($(elemento)); }, 800);
return true;
};
/****************************************************/
//reakiru datojn de servilo
function rekomencu(){
$.ajax({data:{ago:"akiru",pagxo_id:$("#pagxo_id").val()}});
}
//provu forviŝi paĝon
function forvisxu(){
$.ajax({data:{ago:"forvisxi",pagxo_id:$("#pagxo_id").val()}});
}
//akiru idoj de servilo
function akiruIdojn(){
$.ajax({data:{ago:"idoj",pagxo_id:$("#pagxo_id").val()}});
}
function konservuNomon(){
$.ajax(
{ data: {nomo:$("#nomo").html(),
pagxo_id:$("#pagxo_id").val(),
ago: "konservi" }});
}
function konservuEnhavon(enhavo,memgxisdatigu){
if(memgxisdatigu == null){
memgxisdatigu = true;
}
var sendi = {nomo:$("#nomo").html(), //ĉiam sendu nomond
enhavo: enhavo ,
pagxo_id:$("#pagxo_id").val(),
ago: "konservi" };
var demando = {data:sendi}
if(memgxisdatigu==false)
demando.success = function(data){traktuRespondon(data,false);};
$.ajax( demando );
}
function traktuRespondon(data,memgxisdatigu){
if(memgxisdatigu == null){
memgxisdatigu = true;
}
data = $.parseJSON(data);
if(data.loko && data.loko !== window.location.pathname){
window.location.pathname = data.loko ;
return;
}
if(data.debug){
$('#debug').fadeTo(100, 0.01, function () {
$(this).html(data.debug).fadeTo(100, 1);
});
}
if(data.id){
$('#pagxo_id').val(data.id);
}
if(data.idoj){
$('#idoj').fadeTo(100, 0.01, function () {
$(this).html(data.idoj).fadeTo(100, 1);
});
}
//cxiam faru mesagxojn
$('#mesagxoj').fadeTo(100, 0.01, function () {
$(this).html(data.mesagxoj).fadeTo(100, 1);
});
if( data.sxangxita ){
$('#lasta_sxangxo').html( data.sxangxita);
}
if( ! memgxisdatigu ){ //se ni nerajtas mem ĝisdatigi ni finas
return;
}
if( data.nomo ){
$('#nomo').html( data.nomo );
document.title = data.nomo;
}
if(data.enhavo){
$('#enhavo').fadeTo(100, 0.01, function () {
$(this).html(data.enhavo).fadeTo(100, 1);
});
}
}