issue54, sort order can now be modified
[phpfspot.git] / phpfspot.js
1 function showImage(id)
2 {
3    var image_div = document.getElementById("content");
4    image_div.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id));
5 }
6
7 function showCredits()
8 {
9    var credits = document.getElementById("content");
10    credits.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits'));
11 }
12
13 function Tags(mode, id)
14 {
15    if(mode == "add") {
16       // add the tag to users session
17       HTML_AJAX.grab(encodeURI('rpc.php?action=addtag&id=' + id));
18    }
19    else if(mode == "del") {
20       // del the tag from users session
21       HTML_AJAX.grab(encodeURI('rpc.php?action=deltag&id=' + id));
22    }
23    else if(mode == "condition") {
24       setCheckedValue(id, id.value);
25       HTML_AJAX.grab(encodeURI('rpc.php?action=tagcondition&mode=' + id.value));
26    }
27
28    refreshAvailableTags();
29    refreshSelectedTags();
30    refreshPhotoIndex();
31
32 }
33
34 function refreshAvailableTags()
35 {
36    // update available tags
37    var avail_tags = document.getElementById('available_tags');
38    avail_tags.innerHTML = "Loading...";
39    avail_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags'));
40 }
41
42 function refreshSelectedTags()
43 {
44    // update selected tags
45    var selected_tags = document.getElementById("selected_tags");
46    selected_tags.innerHTML = "Loading...";
47    selected_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags'));
48 }
49
50 function showPhotoIndex(begin_with)
51 {
52    if(begin_with == undefined)
53       HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index'));
54    else
55       HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index&begin_with=' + begin_with));
56 }
57
58 // if photo index is currently shown, refresh it
59 function refreshPhotoIndex()
60 {
61    if(document.getElementById("matrix") != undefined || startup == 1) {
62       showPhotoIndex();
63       startup = 0;
64    }
65 }
66
67 function click(object)
68 {
69    if(object.blur)
70       object.blur();
71
72 }
73
74 // set the radio button with the given value as being checked
75 // do nothing if there are no radio buttons
76 // if the given value does not exist, all the radio buttons
77 // are reset to unchecked
78 function setCheckedValue(condition, value) {
79
80    var count = condition.length;
81    if(count == undefined) {
82       condition.checked = (condition.value == value.toString());
83       return;
84    }
85    for(var i = 0; i < count; i++) {
86       condition[i].checked = false;
87       if(condition[i].value == value.toString()) {
88          condition[i].checked = true;
89       }
90    }
91 }
92
93 function startSearch()
94 {
95    var searchfor = document.getElementsByName('searchfor')[0].value
96
97    from_year = document.getElementById('fromyear').value;
98    from_month = document.getElementById('frommonth').value;
99    from_day = document.getElementById('fromday').value;
100    from = from_year +"-"+ from_month +"-"+ from_day;
101    to_year = document.getElementById('toyear').value;
102    to_month = document.getElementById('tomonth').value;
103    to_day = document.getElementById('today').value;
104    to = to_year +"-"+ to_month +"-"+ to_day;
105
106    var request = 'rpc.php?action=search';
107
108    if(searchfor != "") {
109       request = request + '&for=' + searchfor;
110    }
111    
112    if(document.getElementsByName('consider_date')[0].checked == true) {
113       request = request + '&from='+ from +'&to='+ to;
114    }
115
116    var sort_order = document.getElementsByName('sort_order')[0];
117    request = request + '&sort_order='+ sort_order.options[sort_order.selectedIndex].value;
118
119    HTML_AJAX.grab(encodeURI(request));
120
121    refreshAvailableTags();
122    refreshSelectedTags();
123    showPhotoIndex();
124    
125 }
126
127 function datesearch()
128 {
129    var mode = true;
130
131    if(document.getElementsByName('consider_date')[0].checked == true) {
132       mode = false;
133    }
134       
135    document.getElementById('fromyear').disabled = mode;
136    document.getElementById('frommonth').disabled = mode;
137    document.getElementById('fromday').disabled = mode;
138    document.getElementById('toyear').disabled = mode;
139    document.getElementById('tomonth').disabled = mode;
140    document.getElementById('today').disabled = mode;
141  
142 }
143
144 function setViewMode(mode)
145 {
146    var exprt = document.getElementById('output');
147    exprt.innerHTML = "Loading...";
148    exprt.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=get_export&mode=' + mode));
149 }
150
151 function clearSearch()
152 {
153    document.getElementsByName('searchfor')[0].value = '';
154 }
155
156 function AskServerWhatToDo()
157 {
158    return HTML_AJAX.grab(encodeURI('rpc.php?action=what_to_do'));
159 }
160
161 function init_phpfspot()
162 {
163    refreshAvailableTags();
164
165    whattodo = AskServerWhatToDo();
166
167    if(whattodo == 'showpi' || whattodo == 'showpi_date') {
168       showPhotoIndex();
169    }
170    if(whattodo == 'showpi_tags') {
171       refreshSelectedTags();
172       showPhotoIndex();
173    }
174    if(whattodo == 'show_photo') {
175       if(photo = getPhotoToShow()) {
176          showImage(photo)
177          refreshSelectedTags();
178       }
179    }
180 }
181
182 function setBackGrdColor(item, color)
183 {
184    if(color == 'mouseover')
185       item.style.backgroundColor='#c6e9ff';
186    if(color == 'mouseout')
187       item.style.backgroundColor='#eeeeee';
188    if(color == 'mouseclick')
189       item.style.backgroundColor='#93A8CA';
190 }
191
192 function getPhotoToShow()
193 {
194    // update selected tags
195    var photo_to_show = HTML_AJAX.grab(encodeURI('rpc.php?action=get_photo_to_show'));
196
197    // if no image needs to be shown, return false from here
198    if(photo_to_show == "")
199       return false;
200    
201    return photo_to_show;
202 }
203
204 function showCalendar(date_box, click_obj)
205 {
206    var calendar = document.getElementById('calendar');
207    if(date_box == 'from') {
208       var xpos = document.getElementById('frompic').offsetLeft;
209       var ypos = document.getElementById('frompic').offsetTop;
210       calendar_mode = 'from';
211    }
212    if(date_box == 'to') {
213       var xpos = document.getElementById('topic').offsetLeft;
214       var ypos = document.getElementById('topic').offsetTop;
215       calendar_mode = 'to';
216    }
217    calendar.style.left = xpos + 60 + 'px';
218    calendar.style.top = ypos + 80 + 'px';
219
220    if(calendar.style.visibility == "" || calendar.style.visibility == 'hidden') {
221       calendar.style.visibility = 'visible';
222       calendar.innerHTML = "Loading...";
223       calendar.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=get_calendar_matrix'));
224       calendar_shown = 1;
225    }
226    else {
227       calendar.style.visibility = 'hidden';
228       calendar_shown = 0;
229    }
230 }
231
232 function setMonth(year, month, day)
233 {
234    var calendar = document.getElementById('calendar');
235    calendar.innerHTML = "Loading...";
236    calendar.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=get_calendar_matrix&year='+ year +'&month='+ month +'&day='+ day));
237 }
238
239 function setCalendarDate(year, month, day)
240 {
241    document.getElementById(calendar_mode+'year').value = year;
242    document.getElementById(calendar_mode+'month').value = month;
243    document.getElementById(calendar_mode+'day').value = day;
244 }
245
246 function resetAll()
247 {
248    HTML_AJAX.grab(encodeURI('rpc.php?action=reset'));
249    clearSearch();
250    refreshAvailableTags();
251    refreshSelectedTags();
252    refreshPhotoIndex();
253 }
254
255 function WSR_getElementsByClassName(oElm, strTagName, oClassNames){
256    var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
257    var arrReturnElements = new Array();
258    var arrRegExpClassNames = new Array();
259    if(typeof oClassNames == "object"){
260       for(var i=0; i<oClassNames.length; i++){
261          arrRegExpClassNames.push(new RegExp("(^|\s)" + oClassNames[i].replace(/-/g, "\-") + "(\s|$)"));
262       }
263    }
264    else{
265       arrRegExpClassNames.push(new RegExp("(^|\s)" + oClassNames.replace(/-/g, "\-") + "(\s|$)"));
266    }
267    var oElement;
268    var bMatchesAll;
269    for(var j=0; j<arrElements.length; j++){
270       oElement = arrElements[j];
271       bMatchesAll = true;
272       for(var k=0; k<arrRegExpClassNames.length; k++){
273          if(!arrRegExpClassNames[k].test(oElement.className)){
274             bMatchesAll = false;
275             break;
276          }
277       }
278       if(bMatchesAll){
279          arrReturnElements.push(oElement);
280       }
281    }
282    return (arrReturnElements)
283 }
284
285
286 function preloadPhotos(lbImg) {
287
288    var d=document;
289    if(d.images)
290       if(!d.photos)
291          d.photos=new Array();
292
293    var i, j=d.photos.length;
294
295    lbImg=WSR_getElementsByClassName(document,"img","thumb");
296    for(i=0;i<lbImg.length;i++){
297       d.photos[j]=new Image;
298       d.photos[j].src=lbImg[i].src;
299       j++;
300    }
301 }
302
303 var startup = 1;
304 var calendar_shown = 0;
305 var calendar_mode = '';
306