Merge branch 'staging'
[wolnelektury.git] / wolnelektury / static / js / catalogue.js
1 var STATIC = '/static/';
2 var LOCALE_TEXTS = {
3     "pl": {
4         "DELETE_SHELF": "Czy na pewno usunąć półkę",
5         "HIDE_DESCRIPTION": "Zwiń opis",
6         "EXPAND_DESCRIPTION": "Rozwiń opis",
7         "LOADING": "Ładowanie"
8     },
9     "de": {
10         "DELETE_SHELF": "Möchtest du wirklich dieses Bücherregal entfernen?",
11         "HIDE_DESCRIPTION": "Beschreibung zuklappen",
12         "EXPAND_DESCRIPTION": "Beschreibung aufklappen",
13         "LOADING": "Herunterladen"
14     },
15     "fr": {
16         "DELETE_SHELF": "Voulez-vous supprimer l'étagère  définitivement?",
17         "HIDE_DESCRIPTION": "Montrer la description",
18         "EXPAND_DESCRIPTION": "Cacher la description",
19         "LOADING": "Chargement"
20     },
21     "en": {
22         "DELETE_SHELF": "Are you sure you want to delete this shelf?",
23         "HIDE_DESCRIPTION": "Hide",
24         "EXPAND_DESCRIPTION": "Expand",
25         "LOADING": "Loading"
26     },
27     "ru": {
28         "DELETE_SHELF": "Уверены ли вы том, чтобы удалить полку?",
29         "HIDE_DESCRIPTION": "Свернуть описание",
30         "EXPAND_DESCRIPTION": "Раскрыть описание",
31         "LOADING": "Загрузка"
32     },
33     "es": {
34         "DELETE_SHELF": "¿Estás seguro que quieres borrar este estante?",
35         "HIDE_DESCRIPTION": "Esconder la descripción",
36         "EXPAND_DESCRIPTION": "Ampliar la descripción",
37         "LOADING": "Cargando"
38     },
39     "lt":{
40         "DELETE_SHELF": "Ar tikrai nori pašalinti lentną?",
41         "HIDE_DESCRIPTION": "Suvyniok aprašymą ",
42         "EXPAND_DESCRIPTION": "Išplėsk aprašymą",
43         "LOADING": "Krovimas"
44     },
45     "uk":{
46         "DELETE_SHELF": "Ви впевнені, що хочете видалити полицю?",
47         "HIDE_DESCRIPTION": "Сховати опис",
48         "EXPAND_DESCRIPTION": "Показати опис",
49         "LOADING": "Завантажується"
50     }
51 }
52 var BANNER_TEXTS = [
53     'Przekaż 1% żeby ukryć ten baner.',
54     'Jak dobrze wydać 1% swojego podatku? <strong>Poradnik dla opornych</strong>.',
55     'Wiadomość systemowa: wystąpił błąd brak funduszy. Wykonaj procedurę 1%.',
56     '<strong>FREE!</strong> Wygraj darmowe lektury!',
57     'Confidential business offer. Not scam! 1% for you.',
58     'Biblioteka Wolne Lektury wymaga aktualizacji. Kliknij dalej.',
59     '1000 lektur. <strong>1 procent</strong>.',
60     '1% dla biblioteki lektur szkolnych. 1% dla Twojej biblioteki.',
61     '1% na lektury szkolne.',
62     '1% dla wolności lektur szkolnych.',
63     'Podaruj Jeden Procent na rzecz szkolnej biblioteki internetowej.',
64     '1% podatku dla biblioteki szkolnej Wolne Lektury.',
65     '1% na rzecz darmowego dostępu do szkolnych lektur.',
66     'Żeby czytać teksty a nie skany. Przekaż 1%.',
67     'Czytaj teksty a nie skany. Przekaż 1%',
68     'Motyw artysty w literaturze - 47 cytatów. Pomóż znaleźć następne.',
69     'Twój 1% uwolni więcej lektur.',
70     'Ponad 400 motywów, blisko 10 000 000 cytatów. Pomóż znaleźć następne. Przekaż swój 1%.',
71     'Twój 1% uwolni lektury.',
72     'Rozlicz swój PIT z Wolnymi Lekturami. Skorzystaj z darmowego programu do rozliczania podatków.',
73     'Lektury 2010: Pan Tadeusz, Trylogia.',
74     'Pan Tadeusz też chce być w Internecie! Przekaż 1% swojego podatku.',
75     'Pomóż uwolnić 286 utworów z listy lektur szkolnych. Przekaż swój 1% na Wolne Lektury.'
76 ]
77
78 function changeBannerText() {
79     var index = Math.floor(Math.random() * BANNER_TEXTS.length);
80     if (BANNER_TEXTS[index] == $('#onepercent-text').html()) {
81         // try again
82         changeBannerText();
83     } else {
84         $('#onepercent-text').fadeOut('slow', function() {
85             $(this).html(BANNER_TEXTS[index]);
86             $(this).fadeIn('slow');
87         });
88
89         setTimeout(changeBannerText, 30 * 1000);
90     }
91 }
92
93 function autocomplete_result_handler(event, item) {
94     $(event.target).closest('form').submit();
95 }
96 function serverTime() {
97     var time = null;
98     $.ajax({url: '/katalog/zegar/',
99         async: false, dataType: 'text',
100         success: function(text) {
101             time = new Date(text);
102         }, error: function(http, message, exc) {
103             time = new Date();
104     }});
105     return time;
106 }
107
108 (function($) {
109     $(function() {
110
111         $.fn.toggle_slide = function(p) {
112             cont = $(this);
113             short_el = p['short_el'] || $(':first-child', this);
114             long_el = p['long_el'] || short_el.next();
115             button = p['button'];
116             short_text = p['short_text'],
117             long_text = p['long_text'];
118
119             var toggle_fun = function(cont, short_el, long_el, button, short_text, long_text) {
120                 var toggle = function() {
121                     if (cont.hasClass('short')) {
122                         cont.animate({"height": long_el.attr("cont_h")+'px'}, {duration: "fast" }).removeClass('short');
123                         short_el.hide();
124                         long_el.show();
125                         if (button && long_text) button.html(long_text);
126                     } else {
127                         cont.animate({"height": short_el.attr("cont_h")+'px'}, {duration: "fast" }).addClass('short');
128                         long_el.hide();
129                         short_el.show();
130                         if (button && short_text) button.html(short_text);
131                     }
132                     return false;
133                 }
134                 return toggle;
135             }
136             if (long_el.html().length <= short_el.html().length)
137                 return;
138
139             // ensure long element shown first
140             long_el.show();short_el.hide();
141             long_el.attr("cont_h", $(this).height()).hide();
142             short_el.show().attr("cont_h", $(this).height());
143             $(this).addClass('short');
144
145             if (button && short_text) button.html(short_text);
146             if (button) button.hover(
147                 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
148                 function() { $(this).css({background: '#EEE'}); }
149             ).click(toggle_fun(cont, short_el, long_el, button, short_text, long_text));
150             short_el.hover(
151                 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
152                 function() { $(this).css({background: '#FFF'}); }
153             ).click(toggle_fun(cont, short_el, long_el, button, short_text, long_text));
154             long_el.hover(
155                 function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
156                 function() { $(this).css({background: '#FFF'}); }
157             ).click(toggle_fun(cont, short_el, long_el, button, short_text, long_text));
158         };
159
160         $('form input').labelify({labelledClass: 'blur'});
161
162         target = $('#login-register-window div.target');
163
164         $('#show-registration-form').click(function() {
165             $('#login-form').hide();
166             $('#registration-form').show();
167         });
168
169         $('#show-login-form').click(function() {
170             $('#registration-form').hide();
171             $('#login-form').show();
172         });
173
174         // Fragments
175         $('.fragment-short-text').each(function() {
176             var fragment = $(this).closest('.fragment');
177             fragment.toggle_slide({
178                 short_el: $(this),
179                 long_el: fragment.find('.fragment-text')
180             })
181         });
182
183         $('.show-all-tags').click(function() {
184             $(this).parent().parent().fadeOut(function() {
185                 $(this).next().fadeIn();
186             });
187             return false;
188         });
189
190         $('.hide-all-tags').click(function() {
191            $(this).parent().parent().fadeOut(function() {
192                $(this).prev().fadeIn();
193            });
194            return false;
195         });
196
197         $('#registration-form').ajaxForm({
198             dataType: 'json',
199             beforeSubmit: function() {
200                 $('#registration-form input[type=submit]')
201                     .attr('disabled', 'disabled')
202                     .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
203             },
204             success: function(response) {
205                 if (response.success) {
206                     location.reload(true);
207                 } else {
208                     $('#registration-form span.error').remove();
209                     $.each(response.errors, function(id, errors) {
210                         $('#id_registration-' + id).before('<span class="error">' + errors[0] + '</span>');
211                     });
212                     $('#registration-form input[type=submit]').removeAttr('disabled');
213                     $('#registration-form img').remove();
214                 }
215             }
216         });
217
218         $('#login-form').ajaxForm({
219             dataType: 'json',
220             beforeSubmit: function() {
221                 $('#login-form input[type=submit]')
222                     .attr('disabled', 'disabled')
223                     .after('<img src="/static/img/indicator.gif" style="margin-left: 0.5em"/>');
224             },
225             success: function(response) {
226                 if (response.success) {
227                     location.reload(true);
228                 } else {
229                     $('#login-form span.error').remove();
230                     $.each(response.errors, function(id, errors) {
231                         $('#id_login-' + id).before('<span class="error">' + errors[0] + '</span>');
232                     });
233                     $('#login-form input[type=submit]').removeAttr('disabled');
234                     $('#login-form img').remove();
235                 }
236             }
237         });
238
239         $('#login-register-window').jqm({
240             target: target[0],
241             overlay: 60,
242             trigger: '.login-register-link',
243             onShow: function(hash) {
244                 var offset = $(hash.t).offset();
245                 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
246                 $('div.header', hash.w).css({width: $(hash.t).width()});
247                 hash.w.show();
248             }
249         });
250
251         $('ul.shelf-list li').hover(function() {
252             $(this).css({background: '#EEE', cursor: 'pointer'});
253         }, function() {
254             $(this).css({background: 'transparent'});
255         }).click(function() {
256             location.href = $('a.visit-shelf', this).attr('href');
257         });
258
259         $('.delete-shelf').click(function() {
260             var link = $(this);
261             var shelf_name = $('.visit-shelf', link.parent()).text();
262             if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+ ' '+ shelf_name + '?')) {
263                 $.post(link.attr('href'), function(data, textStatus) {
264                     link.parent().remove();
265                 });
266             }
267             return false;
268         });
269
270         var serverResponse;
271         $('#user-shelves-window').jqm({
272             ajax: '@href',
273             target: $('#user-shelves-window div.target')[0],
274             overlay: 60,
275             trigger: '#user-shelves-link',
276             onShow: function(hash) {
277                 var offset = $(hash.t).offset();
278                 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
279                 $('div.header', hash.w).css({width: $(hash.t).width()});
280                 hash.w.show();
281             },
282             onLoad: function(hash) {
283                 $('form', hash.w).ajaxForm({
284                     target: serverResponse,
285                     success: function(serverResponse) {
286                         var newShelf = $.parseJSON(serverResponse);
287                         $('#user-shelves-window div.target').html(newShelf.msg);
288                         setTimeout(function() { $('#user-shelves-window').jqmHide() }, 1000);
289                     }
290                 });
291
292                 $('input', hash.w).labelify({labelledClass: 'blur'});
293
294                 $('ul.shelf-list li', hash.w).hover(function() {
295                     $(this).css({background: '#EEE', cursor: 'pointer'});
296                 }, function() {
297                     $(this).css({background: 'transparent'});
298                 }).click(function() {
299                     location.href = $('a.visit-shelf', this).attr('href');
300                 });
301
302                 $('.delete-shelf').click(function() {
303                     var link = $(this);
304                     var shelf_name = $('.visit-shelf', link.parent()).text();
305                     if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF'] + ' ' + shelf_name + '?')) {
306                         $.post(link.attr('href'), function(data, textStatus) {
307                             link.parent().remove();
308                         });
309                     }
310                     return false;
311                 });
312             }
313         });
314
315         $('#suggest-window').jqm({
316             ajax: '@href',
317             target: $('#suggest-window div.target')[0],
318             overlay: 60,
319             trigger: '#suggest-link',
320             onShow: function(hash) {
321                 var offset = $(hash.t).offset();
322                 hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top});
323                 $('div.header', hash.w).css({width: $(hash.t).width()});
324                 hash.w.show();
325             },
326             onLoad: function(hash) {
327                 $('form', hash.w).ajaxForm({
328                     dataType: 'json',
329                     target: $('#suggest-window div.target'),
330                     success: function(response) {
331                         if (response.success) {
332                             $('#suggest-window div.target').text(response.message);
333                             setTimeout(function() { $('#suggest-window').jqmHide() }, 1000)
334                         }
335                         else {
336                             $('#suggest-form .error').remove();
337                             $.each(response.errors, function(id, errors) {
338                                 $('#suggest-form #id_' + id).before('<span class="error">' + errors[0] + '</span>');
339                             });
340                             $('#suggest-form input[type=submit]').removeAttr('disabled');
341                             return false;
342                         }
343                     }
344                 });
345             }
346         });
347
348         $('#books-list .book').hover(
349             function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
350             function() { $(this).css({background: '#FFF'}); }
351         ).click(function() {
352             location.href = $('h2 a', this).attr('href');
353         });
354
355         $('#description').each(function(){$(this).toggle_slide({
356             long_el: $('#description-long', this),
357             short_el: $('#description-short', this),
358             button: $(this).nextAll('#toggle-description').first().find('p'),
359             long_text: LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▲',
360             short_text: LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION'] + ' ▼'
361         })});
362
363         $('#toggle-share-shelf').hover(
364             function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
365             function() { $(this).css({background: '#EEE'}); }
366         ).click(function() {
367             if ($('#share-shelf').hasClass('hidden')) {
368                 $('#share-shelf').slideDown('fast').removeClass('hidden');
369             } else {
370                 $('#share-shelf').slideUp('fast').addClass('hidden');
371             }
372         });
373
374         var target = $('#set-window div.target');
375
376         $('#set-window').jqm({
377             ajax: '@href',
378             target: target[0],
379             overlay: 60,
380             trigger: 'a.jqm-trigger',
381             onShow: function(hash) {
382                 var offset = $(hash.t).offset();
383                 target.html('<p><img src="/static/img/indicator.gif" />'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'</p>');
384                 hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() },
385             onLoad: function(hash) {
386                 try {
387                         $('#createShelfTrigger').click(function(){
388                             // who cares it's not needed, but I was looking for it
389                             // that's why I want it to stay.. :) 
390                             // var slug = $(hash.t).attr('href').split("/")[3];
391                             $('#createNewShelf').show();
392                         });
393                 } catch (e){}
394                 $("#putOnShelf input[type=checkbox]").attr("checked",false);
395                 var serverResponse;
396                 $('form', hash.w).ajaxForm({
397                     target: serverResponse,
398                     success: function(serverResponse) {
399                         var newShelf = $.parseJSON(serverResponse);
400                         // for live shelf adding
401                         if(newShelf.name){
402                             var noIds = $("#putOnShelf ol ul").children('li').length;
403                             $("#putOnShelf ol ul").prepend('<li><label for="id_set_ids_'+ noIds +'"><input name="set_ids" value="'+ newShelf.id +'" id="id_set_ids_'+ noIds +'" type="checkbox" checked="checked"> '+ newShelf.name +' (0)</label></li>');
404                             $("#createNewShelf ol input[name=name]").val("");
405                         }
406                         if(newShelf.after == "close"){
407                             setTimeout(function() {$('#set-window').jqmHide();}, 1000);
408                         }
409                     }
410                 });    
411             }
412         });
413
414         $('a.remove-from-shelf').click(function(event) {
415             event.preventDefault();
416             link = $(this);
417             $.post(link.attr('href'), function(data, textStatus) {
418                 link.parent().remove();
419             });
420         });
421
422         $('#share-shelf').hide().addClass('hidden');
423         $('#share-shelf input').focus(function(){this.select();});
424
425         $('#user-info').show();
426         changeBannerText();
427         $('#onepercent-banner').show();
428
429         var formatsDownloaded = false;
430         $('#download-shelf').click(function() {
431             $('#download-shelf-menu').slideDown('fast');
432
433             if (!formatsDownloaded) {
434                 // Get info about the formats
435                 formatsDownloaded = true;
436                 $.ajax({
437                     url: $('#download-formats-form').attr('data-formats-feed'),
438                     type: 'GET',
439                     dataType: 'json',
440                     complete: function() {
441                         $('#download-formats-form-submit').attr('disabled', null);
442                         $('#download-formats-form-submit-li img').remove();
443                         $('#updating-formats').fadeOut('fast', function() {
444                             $('#formats-updated').fadeIn('fast');
445                         });
446                     },
447                     success: function(data) {
448                         $('#download-formats-form li').each(function() {
449                             var item = $(this);
450                             if (!!item.attr('data-format') && !data[item.attr('data-format')]) {
451                                 item.fadeOut('fast', function() {
452                                     item.remove();
453                                 });
454                             }
455                         });
456                     }
457                 });
458             }
459             return false;
460         });
461
462         $('#download-formats-form-cancel').click(function() {
463             $('#download-shelf-menu').slideUp('fast');
464             return false;
465         });
466
467         $('.sponsor-logos').cycle({timeout: 3000});
468
469         $('.widget-code').focus(
470             function(){
471                 $(this).animate({rows: '11'}, 100, function(){
472                     this.select();
473                     $(this).click(function(){
474                         this.select();
475                     });
476                 })
477                 
478             } 
479         ).blur(
480             function(){
481                 $(this).animate({rows: '1'}, 300, function(){
482                     $(this).unbind('click');
483                 })
484             } 
485         );
486         
487         $('.book-list-index').click(function(){
488             $('.book-list-show-index').hide('slow');
489             if($(this).parent().next('ul:not(:hidden)').length == 0){
490                 $(this).parent().next('ul').toggle('slow');
491             }
492             return false;
493         });
494
495         // player for audiobooks
496  
497         // event handlers for playing different formats
498         $('.audiotabs span').click(function(){
499             $('.audiobook-list').hide();
500             $('.audiotabs .active').removeClass('active');
501             // we don't want to interact with "audiobook" label, just 'format' tabs
502             var $this = $(this);
503             $this.addClass("active");
504             $("#"+$this.html().toLowerCase()+"-files").show();
505         });
506
507         $('.audiobook-list').hide();
508         $("#"+$(".audiotabs .active").html().toLowerCase()+"-files").show();
509         
510         /* this will be useful for javascript html player
511         var medias = $('.audiobook-list a');
512         var mp3List = [];
513         var oggList = [];
514         var daisyList = [];
515         var tmpExt;
516         if (medias.length > 0) {
517             // creating sources list for player
518             medias.each(function(index, item) {
519                 tmpExt = item.href.split(".").pop();    
520                 if(tmpExt == "mp3") {
521                     mp3List.push(item.href);
522                 } else if (tmpExt == "ogg") {
523                     oggList.push(item.href);
524                 } else if(tmpExt == "daisy") {
525                     daisyList.push(item.href);
526                 }
527             }); 
528         }*/       
529
530     });
531 })(jQuery)
532