X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d6802dca17a8f11a78285b82d0110eb5513f43a7..fa0414cf62aaa1e72c02b1b12567dddfcfcd12d2:/wolnelektury/static/js/catalogue.js diff --git a/wolnelektury/static/js/catalogue.js b/wolnelektury/static/js/catalogue.js index 83edbc9b0..a76215aa5 100644 --- a/wolnelektury/static/js/catalogue.js +++ b/wolnelektury/static/js/catalogue.js @@ -1,3 +1,53 @@ +var LOCALE_TEXTS = { + "pl": { + "DELETE_SHELF": "Czy na pewno usunąć półkę", + "HIDE_DESCRIPTION": "Zwiń opis", + "EXPAND_DESCRIPTION": "Rozwiń opis", + "LOADING": "Ładowanie" + }, + "de": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "fr": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "en": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "ru": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "es": { + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "lt":{ + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + }, + "uk":{ + "DELETE_SHELF": "Translate me!", + "HIDE_DESCRIPTION": "Translate me!", + "EXPAND_DESCRIPTION": "Translate me!", + "LOADING": "Translate me!" + } +} var BANNER_TEXTS = [ 'Przekaż 1% żeby ukryć ten baner.', 'Jak dobrze wydać 1% swojego podatku? Poradnik dla opornych.', @@ -9,9 +59,9 @@ var BANNER_TEXTS = [ '1% dla biblioteki lektur szkolnych. 1% dla Twojej biblioteki.', '1% na lektury szkolne.', '1% dla wolności lektur szkolnych.', - 'Podaruj Jeden Procent na rzecz szkolnej biblioteki internetowej', + 'Podaruj Jeden Procent na rzecz szkolnej biblioteki internetowej.', '1% podatku dla biblioteki szkolnej Wolne Lektury.', - '1% na rzecz darmowego dostępu do szkolnych lektur', + '1% na rzecz darmowego dostępu do szkolnych lektur.', 'Żeby czytać teksty a nie skany. Przekaż 1%.', 'Czytaj teksty a nie skany. Przekaż 1%', 'Motyw artysty w literaturze - 47 cytatów. Pomóż znaleźć następne.', @@ -40,6 +90,20 @@ function changeBannerText() { } } +function autocomplete_result_handler(event, item) { + $(event.target).closest('form').submit(); +} +function serverTime() { + var time = null; + $.ajax({url: '/katalog/zegar/', + async: false, dataType: 'text', + success: function(text) { + time = new Date(text); + }, error: function(http, message, exc) { + time = new Date(); + }}); + return time; +} (function($) { $(function() { @@ -65,14 +129,16 @@ function changeBannerText() { function() { $(this).css({background: '#FFF'}); } ).click(function() { $(this).fadeOut(function() { - $(this).prev().fadeIn() + $(this).prev().fadeIn(); }); + return false; }) } }); $('.fragment-short-text').click(function() { $(this).fadeOut(function() { $(this).next().fadeIn() }); + return false; }).hover( function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); }, function() { $(this).css({background: '#FFF'}); } @@ -157,7 +223,7 @@ function changeBannerText() { $('.delete-shelf').click(function() { var link = $(this); var shelf_name = $('.visit-shelf', link.parent()).text(); - if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) { + if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+ ' '+ shelf_name + '?')) { $.post(link.attr('href'), function(data, textStatus) { link.parent().remove(); }); @@ -195,7 +261,7 @@ function changeBannerText() { $('.delete-shelf').click(function() { var link = $(this); var shelf_name = $('.visit-shelf', link.parent()).text(); - if (confirm('Czy na pewno usunąć półkę ' + shelf_name + '?')) { + if (confirm(LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF'] + ' ' + shelf_name + '?')) { $.post(link.attr('href'), function(data, textStatus) { link.parent().remove(); }); @@ -204,6 +270,39 @@ function changeBannerText() { }); } }); + + $('#suggest-window').jqm({ + ajax: '@href', + target: $('#suggest-window div.target')[0], + overlay: 60, + trigger: '#suggest-link', + onShow: function(hash) { + var offset = $(hash.t).offset(); + hash.w.css({position: 'absolute', left: offset.left - hash.w.width() + $(hash.t).width(), top: offset.top}); + $('div.header', hash.w).css({width: $(hash.t).width()}); + hash.w.show(); + }, + onLoad: function(hash) { + $('form', hash.w).ajaxForm({ + dataType: 'json', + target: $('#suggest-window div.target'), + success: function(response) { + if (response.success) { + $('#suggest-window div.target').text(response.message); + setTimeout(function() { $('#suggest-window').jqmHide() }, 1000) + } + else { + $('#suggest-form .error').remove(); + $.each(response.errors, function(id, errors) { + $('#suggest-form #id_' + id).before('' + errors[0] + ''); + }); + $('#suggest-form input[type=submit]').removeAttr('disabled'); + return false; + } + } + }); + } + }); $('#books-list .book').hover( function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); }, @@ -217,16 +316,25 @@ function changeBannerText() { function() { $(this).css({background: '#EEE'}); } ).click(function() { if ($('#description').hasClass('hidden')) { - $('#description').slideDown('fast').removeClass('hidden'); - $.cookie('description-state', 'opened', {path: '/', expires: 30}); - $('p', this).html('Zwiń opis ▲'); + $('#description').animate({"height": $('#description').attr("box_h")+'px'}, {duration: "fast" }).removeClass('hidden'); + $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['HIDE_DESCRIPTION'] + ' ▲'); } else { - $('#description').slideUp('fast').addClass('hidden'); - $.cookie('description-state', 'closed', {path: '/', expires: 30}); - $('p', this).html('Rozwiń opis ▼'); + $('#description').animate({"height": '4em'}, {duration: "fast" }).addClass('hidden'); + $('p', this).html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION'] + ' ▼'); } }); - + + $('#toggle-share-shelf').hover( + function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); }, + function() { $(this).css({background: '#EEE'}); } + ).click(function() { + if ($('#share-shelf').hasClass('hidden')) { + $('#share-shelf').slideDown('fast').removeClass('hidden'); + } else { + $('#share-shelf').slideUp('fast').addClass('hidden'); + } + }); + var target = $('#set-window div.target'); $('#set-window').jqm({ @@ -236,7 +344,7 @@ function changeBannerText() { trigger: 'a.jqm-trigger', onShow: function(hash) { var offset = $(hash.t).offset(); - target.html('

Ładowanie

'); + target.html('

'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'

'); hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() }, onLoad: function(hash) { $('form', hash.w).ajaxForm({ @@ -254,10 +362,12 @@ function changeBannerText() { }); }); - if ($.cookie('description-state') == 'closed') { - $('#description').hide().addClass('hidden'); - $('#toggle-description p').html('Rozwiń opis ▼'); - } + $('#description').attr("box_h", $('#description').height()); + $('#description').css("height", '4em').addClass('hidden'); + $('#toggle-description p').html(LOCALE_TEXTS[LANGUAGE_CODE]['EXPAND_DESCRIPTION']+' ▼'); + + $('#share-shelf').hide().addClass('hidden'); + $('#share-shelf input').focus(function(){this.select();}); $('#user-info').show(); changeBannerText(); @@ -268,7 +378,7 @@ function changeBannerText() { $('#download-shelf-menu').slideDown('fast'); if (!formatsDownloaded) { - // Pobierz dane o formatach + // Get info about the formats formatsDownloaded = true; $.ajax({ url: $('#download-formats-form').attr('data-formats-feed'), @@ -301,4 +411,4 @@ function changeBannerText() { return false; }); }); -})(jQuery) \ No newline at end of file +})(jQuery)