89ffeafb1900d2e4ad454b85ea147b0e23a2fb73
[redakcja.git] / platforma / static / js / main.js
1 if (!window.console) {
2     window.console = {
3         log: function() {}
4     }
5 }
6
7 // Teraz nieużywane
8 function highlight(colour) {
9     var range, sel;
10     if (window.getSelection) {
11         // Non-IE case
12         sel = window.getSelection();
13         if (sel.getRangeAt) {
14             range = sel.getRangeAt(0);
15         }
16         document.designMode = "on";
17         if (range) {
18             sel.removeAllRanges();
19             sel.addRange(range);
20         }
21         // Use HiliteColor since some browsers apply BackColor to the whole block
22         if ( !document.execCommand("HiliteColor", false, colour) ) {
23             document.execCommand("BackColor", false, colour);
24         }
25         document.designMode = "off";
26     } else if (document.selection && document.selection.createRange) {
27         // IE case
28         range = document.selection.createRange();
29         range.execCommand("BackColor", false, colour);
30     }
31 }
32
33 // function unselectThemes(themeId) {
34 //     $('.Apple-style-span').each(function() {
35 //         $(this).after($(this).html());
36 //         $(this).remove();
37 //     });
38 // }
39
40 function gallery(element, url) {    
41     var element = $(element);
42     var imageDimensions = {};
43     element.data('images', []);
44     
45     function changePage(pageNumber) {        
46         $('img', element).attr('src', element.data('images')[pageNumber - 1]);
47     }
48     
49     function normalizeNumber(pageNumber) {
50         // Numer strony musi być pomiędzy 1 a najwyższym numerem
51         var pageCount = element.data('images').length;
52         pageNumber = parseInt(pageNumber, 10);
53         
54         if (!pageNumber || pageNumber == NaN || pageNumber == Infinity || pageNumber == -Infinity) {
55             return 1;
56         } else if (pageNumber < 1) {
57             return 1;
58         } else if (pageNumber > pageCount) {
59             return pageCount;
60         } else {
61             return pageNumber;
62         }
63     }
64     
65     var pn = $('.page-number', element);
66     pn.change(function(event) {
67         event.preventDefault();
68         var n = normalizeNumber(pn.val());
69         pn.val(n);
70         changePage(n);
71     });
72     $('.previous-page', element).click(function() {
73         pn.val(normalizeNumber(pn.val()) - 1);
74         pn.change();
75     });
76     $('.next-page', element).click(function() {
77         pn.val(normalizeNumber(pn.val()) + 1);
78         pn.change();
79     });
80     
81     
82     var image = $('img', element).attr('unselectable', 'on');
83     var origin = {};
84     var imageOrigin = {};
85     var zoomFactor = 1;
86     
87     $('.zoom-in', element).click(function() {
88         zoomFactor = Math.min(2, zoomFactor + 0.2);
89         zoom();
90     });
91     $('.zoom-out', element).click(function() {
92         zoomFactor = Math.max(0.2, zoomFactor - 0.2);
93         zoom();
94     });
95     $('.change-gallery', element).click(function() {
96         $('.chosen-gallery').val($('#document-meta .gallery').html() || '/platforma/gallery/');
97         $('.gallery-image').animate({top: 53}, 200);
98         $('.chosen-gallery').focus();
99     });
100     $('.change-gallery-ok', element).click(function() {
101         if ($('#document-meta .gallery').length == 0) {
102             $('<div class="gallery"></div>').appendTo('#document-meta');
103         }
104         $('#document-meta .gallery').html($('.chosen-gallery').val());
105         updateGallery($('.chosen-gallery').val());
106         $('.gallery-image').animate({top: 27}, 200);
107     });
108     $('.change-gallery-cancel', element).click(function() {
109         $('.gallery-image').animate({top: 27}, 200);
110     });
111     
112     $('img', element).load(function() {
113         image.css({width: null, height: null});
114         imageDimensions = {
115             width: $(this).width() * zoomFactor,
116             height: $(this).height() * zoomFactor,
117             originWidth: $(this).width(),
118             originHeight: $(this).height(),
119             galleryWidth: $(this).parent().width(),
120             galleryHeight: $(this).parent().height()
121         };
122         
123         if (!(imageDimensions.width && imageDimensions.height)) {
124             setTimeout(function() { $('img', element).load(); }, 100);
125         }        
126         var position = normalizePosition(
127             image.position().left,
128             image.position().top, 
129             imageDimensions.galleryWidth,
130             imageDimensions.galleryHeight,
131             imageDimensions.width,
132             imageDimensions.height
133         );
134         image.css({left: position.x, top: position.y, width: $(this).width() * zoomFactor, height: $(this).height() * zoomFactor});
135     });
136
137     $(window).resize(function() {
138         imageDimensions.galleryWidth = image.parent().width();
139         imageDimensions.galleryHeight = image.parent().height();
140     });
141     
142     function bounds(galleryWidth, galleryHeight, imageWidth, imageHeight) {
143         return {
144             maxX: 0,
145             maxY: 0,
146             minX: galleryWidth - imageWidth,
147             minY: galleryHeight - imageHeight
148         }
149     }
150     
151     function normalizePosition(x, y, galleryWidth, galleryHeight, imageWidth, imageHeight) {
152         var b = bounds(galleryWidth, galleryHeight, imageWidth, imageHeight);
153         return {
154             x: Math.min(b.maxX, Math.max(b.minX, x)),
155             y: Math.min(b.maxY, Math.max(b.minY, y))
156         }
157     }
158     
159     function onMouseMove(event) {
160         var position = normalizePosition(
161             event.clientX - origin.x + imageOrigin.left,
162             event.clientY - origin.y + imageOrigin.top, 
163             imageDimensions.galleryWidth,
164             imageDimensions.galleryHeight,
165             imageDimensions.width,
166             imageDimensions.height
167         );
168         image.css({position: 'absolute', top: position.y, left: position.x});
169         return false;
170     }
171     
172     function setZoom(factor) {
173         zoomFactor = factor;
174     }
175     
176     function zoom() {
177         imageDimensions.width = imageDimensions.originWidth * zoomFactor;
178         imageDimensions.height = imageDimensions.originHeight * zoomFactor;
179         var position = normalizePosition(
180             image.position().left,
181             image.position().top, 
182             imageDimensions.galleryWidth,
183             imageDimensions.galleryHeight,
184             imageDimensions.width,
185             imageDimensions.height
186         );
187         image.css({width: imageDimensions.width, height: imageDimensions.height,
188             left: position.x, top: position.y});
189
190     }
191     
192     function onMouseUp(event) {
193         $(document)
194             .unbind('mousemove.gallery')
195             .unbind('mouseup.gallery');
196         return false;
197     }
198     
199     image.bind('mousedown', function(event) {
200         origin = {
201             x: event.clientX,
202             y: event.clientY
203         };
204         imageOrigin = image.position();
205         $(document)
206             .bind('mousemove.gallery', onMouseMove)
207             .bind('mouseup.gallery', onMouseUp);
208         return false;
209     });
210     
211     function updateGallery(url) {
212         $.ajax({
213             url: url,
214             type: 'GET',
215             dataType: 'json',
216
217             success: function(data) {
218                 element.data('images', data);
219                 pn.val(1);
220                 pn.change();
221                 $('img', element).show();
222             },
223             
224             error: function(data) {
225                 element.data('images', []);
226                 pn.val(1);
227                 pn.change();
228                 $('img', element).hide();
229             }
230         });
231     }
232     
233     if (url) {
234         updateGallery(url);
235     }
236 }
237
238
239 function transform(editor) {
240     $.blockUI({message: 'Ładowanie...'});
241     setTimeout(function() {
242         xml2html({
243             xml: editor.getCode(),
244             success: function(element) {
245                 $('#html-view').html(element);
246                 $.unblockUI();
247             }, error: function(text) {
248                 $('#html-view').html('<p class="error">Wystąpił błąd:</p><pre>' + text + '</pre>');
249                 $.unblockUI();
250             }
251         });
252     }, 200);
253 };
254
255
256 function reverseTransform(editor, cont) {
257     var serializer = new XMLSerializer();
258     if ($('#html-view .error').length > 0) {
259         return;
260     }
261     $.blockUI({message: 'Ładowanie...'});
262     setTimeout(function() {
263         html2xml({
264             xml: serializer.serializeToString($('#html-view div').get(0)),
265             success: function(text) {
266                 editor.setCode(text);
267                 $.unblockUI();
268                 if (cont) {
269                     cont();
270                 }
271             }, error: function(text) {
272                 $('#source-editor').html('<p>Wystąpił błąd:</p><pre>' + text + '</pre>');
273                 $.unblockUI();
274             }
275         });
276     }, 200);
277 }
278
279
280 // =============
281 // = HTML View =
282 // =============
283 function html(element) {
284     var element = $(element);
285     
286     function selectTheme(themeId)
287     {
288         var selection = window.getSelection();
289         selection.removeAllRanges();
290
291         var range = document.createRange();
292         var s = $(".motyw[theme-class='"+themeId+"']")[0];
293         var e = $(".end[theme-class='"+themeId+"']")[0];
294
295         if(s && e) {
296             range.setStartAfter(s);
297             range.setEndBefore(e);
298             selection.addRange(range);
299         }
300     };
301     
302     function verifyTagInsertPoint(node) {
303         if(node.nodeType == 3) { // Text Node
304             node = node.parentNode;
305         }
306
307         if (node.nodeType != 1) { 
308             return false;
309         }
310
311         node = $(node);
312         var xtype = node.attr('x-node');
313
314         if (!xtype || (xtype.search(':') >= 0) ||
315             xtype == 'motyw' || xtype == 'begin' || xtype == 'end') {
316             return false;
317         }
318         
319         // don't allow themes inside annotations
320         if( node.is('*[x-annotation-box] *') )
321             return false;
322
323         return true;
324     }
325     
326     function addAnnotation()
327     {
328         var selection = window.getSelection();
329         var n = selection.rangeCount;
330
331         if (n == 0) {
332             window.alert("Nie zaznaczono żadnego obszaru");
333             return false;
334         }
335
336         // for now allow only 1 range
337         if (n > 1) {
338             window.alert("Zaznacz jeden obszar");
339             return false;
340         }
341
342         // remember the selected range
343         var range = selection.getRangeAt(0);
344
345         if (!verifyTagInsertPoint(range.endContainer)) {
346             window.alert("Nie można wstawić w to miejsce przypisu.");
347             return false;
348         }
349
350         var text = range.toString();
351         var tag = $('<span></span>');
352         range.collapse(false);
353         range.insertNode(tag[0]);
354
355         xml2html({
356             xml: '<pr><slowo_obce>'+text+'</slowo_obce> --- </pr>',
357             success: function(text) {
358                 var t = $(text);
359                 tag.replaceWith(t);
360                 openForEdit(t);
361             },
362             error: function() {
363                 tag.remove();
364                 alert('Błąd przy dodawaniu przypisu:' + errors);                
365             }
366         })
367     }
368     
369     function addTheme()
370     {
371         var selection = window.getSelection();
372         var n = selection.rangeCount;
373
374         if(n == 0) {
375             window.alert("Nie zaznaczono żadnego obszaru");
376             return false;
377         }
378
379         // for now allow only 1 range
380         if(n > 1) {
381             window.alert("Zaznacz jeden obszar");
382             return false;
383         }
384
385         // remember the selected range
386         var range = selection.getRangeAt(0);
387
388         // verify if the start/end points make even sense -
389         // they must be inside a x-node (otherwise they will be discarded)
390         // and the x-node must be a main text
391         if (!verifyTagInsertPoint(range.startContainer)) {
392             window.alert("Motyw nie może się zaczynać w tym miejscu.");
393             return false;
394         }
395
396         if (!verifyTagInsertPoint(range.endContainer)) {
397             window.alert("Motyw nie może się kończyć w tym miejscu.");
398             return false;
399         }
400
401         var date = (new Date()).getTime();
402         var random = Math.floor(4000000000*Math.random());
403         var id = (''+date) + '-' + (''+random);
404
405         var spoint = document.createRange();
406         var epoint = document.createRange();
407
408         spoint.setStart(range.startContainer, range.startOffset);
409         epoint.setStart(range.endContainer, range.endOffset);
410
411         var mtag, btag, etag, errors;
412
413         // insert theme-ref
414                 
415         xml2html({
416             xml: '<end id="e'+id+'" />',
417             success: function(text) {
418                 etag = $('<span></span>');
419                 epoint.insertNode(etag[0]);
420                 etag.replaceWith(text);
421                 xml2html({
422                     xml: '<motyw id="m'+id+'">motyw</motyw>',
423                     success: function(text) {
424                         mtag = $('<span></span>');
425                         spoint.insertNode(mtag[0]);
426                         mtag.replaceWith(text);
427                         xml2html({
428                             xml: '<begin id="b'+id+'" />',
429                             success: function(text) {
430                                 btag = $('<span></span>');
431                                 spoint.insertNode(btag[0])
432                                 btag.replaceWith(text);
433                                 selection.removeAllRanges();
434                                 openForEdit($('.motyw[theme-class=' + id + ']'));
435                             }
436                         });
437                     }
438                 });
439             }
440         });
441     }
442     
443     // function removeTheme($origin) {
444     //     
445     // }
446     
447     function openForEdit($origin)
448     {       
449         var $box = null
450     
451         // annotations overlay their sub box - not their own box //
452         if($origin.is(".annotation-inline-box")) {
453             $box = $("*[x-annotation-box]", $origin);
454         } else {
455             $box = $origin;
456         }
457         
458         var x = $box[0].offsetLeft;
459         var y = $box[0].offsetTop;
460         var w = $box.outerWidth();
461         var h = $box.innerHeight();
462     
463         if ($origin.is(".annotation-inline-box")) {
464             w = Math.max(w, 400);
465             h = Math.max(h, 60);
466         }
467         
468         // start edition on this node
469         var $overlay = $('<div class="html-editarea"><button class="accept-button">Zapisz</button><button class="delete-button">Usuń</button><textarea></textarea></div>').css({
470             position: 'absolute',
471             height: h,
472             left: x,
473             top: y,
474             width: w
475         }).appendTo($box[0].offsetParent || $box.parent()).show();
476         
477         if ($origin.is('.motyw')) {
478             $('textarea', $overlay).autocomplete(['Ala ma kota', 'Kot ma Alę', 'HIV', 'motyw'], {
479                 autoFill: true,
480                 multiple: true,
481                 selectFirst: true
482             });
483         }
484         
485         $('.delete-button', $overlay).click(function() {
486             if ($origin.is('.motyw')) {
487                 $('[theme-class=' + $origin.attr('theme-class') + ']').remove();
488             } else {
489                 $origin.remove();
490             }
491             $overlay.remove();
492             $(document).unbind('click.blur-overlay');
493             return false;
494         })
495         
496         
497         var serializer = new XMLSerializer();
498         
499         html2xml({
500             xml: serializer.serializeToString($box[0]),
501             inner: true,
502             success: function(text) {
503                 $('textarea', $overlay).val($.trim(text));
504                 
505                 setTimeout(function() {
506                     $('textarea', $overlay).elastic().focus();
507                 }, 50);
508                 
509                 function save(argument) {
510                     var nodeName = $box.attr('x-node') || 'pe';
511                     xml2html({
512                         xml: '<' + nodeName + '>' + $('textarea', $overlay).val() + '</' + nodeName + '>',
513                         success: function(element) {
514                             $box.html($(element).html());
515                             $overlay.remove();
516                         },
517                         error: function(text) {
518                             $overlay.remove();
519                             alert('Błąd! ' + text);
520                         }
521                     })
522                 }
523                 
524                 $('.accept-button', $overlay).click(function() {
525                     save();
526                 });
527                 
528                 $(document).bind('click.blur-overlay', function(event) {
529                     if ($(event.target).parents('.html-editarea').length > 0) {
530                         return;
531                     }
532                     save();
533                     
534                     $(document).unbind('click.blur-overlay');
535                 });
536                 
537                 // $('textarea', $overlay).one('blur', function(event) {
538                 //     var nodeName = $box.attr('x-node') || 'pe';
539                 //     xml2html({
540                 //         xml: '<' + nodeName + '>' + $('textarea', $overlay).val() + '</' + nodeName + '>',
541                 //         success: function(element) {
542                 //             $box.html($(element).html());
543                 //             $overlay.remove();
544                 //         },
545                 //         error: function(text) {
546                 //             $overlay.remove();
547                 //             alert('Błąd! ' + text);
548                 //         }
549                 //     })
550                 // });
551             }, error: function(text) {
552                 alert('Błąd! ' + text);
553             }
554         });
555     }
556     
557     $('.edit-button').live('click', function(event) {
558         event.preventDefault();
559         openForEdit($(this).parent());
560     });
561     
562
563     
564     var button = $('<button class="edit-button">Edytuj</button>');
565     $(element).bind('mousemove', function(event) {
566         var editable = $(event.target).closest('*[x-editable]');
567         $('.active[x-editable]', element).not(editable).removeClass('active').children('.edit-button').remove();
568         if (!editable.hasClass('active')) {
569             editable.addClass('active').append(button);
570         }
571     });
572
573     $('.motyw').live('click', function() {
574         selectTheme($(this).attr('theme-class'));
575     });
576     
577     $('#insert-annotation-button').click(function() {
578         addAnnotation();
579         return false;
580     });
581     
582     $('#insert-theme-button').click(function() {
583         addTheme();
584         return false;
585     });
586 }
587
588
589 $(function() {
590     gallery('#sidebar', $('#document-meta .gallery').html());
591     html('#html-view');
592     
593     CodeMirror.fromTextArea('id_text', {
594         parserfile: 'parsexml.js',
595         path: STATIC_URL + "js/lib/codemirror/",
596         stylesheet: STATIC_URL + "css/xmlcolors.css",
597         parserConfig: {
598             useHTMLKludges: false
599         },
600         iframeClass: 'xml-iframe',
601         textWrapping: true,
602         tabMode: 'spaces',
603         indentUnit: 0,
604         initCallback: function(editor) {
605             $('#save-button').click(function(event) {
606                 event.preventDefault();
607                 $.blockUI({message: $('#save-dialog')});
608             });
609             
610             $('#save-ok').click(function() {
611                 $.blockUI({message: 'Zapisywanie...'});
612                 
613                 function doSave (argument) {
614                     var metaComment = '<!--';
615                     $('#document-meta div').each(function() {
616                         metaComment += '\n\t' + $(this).attr('class') + ': ' + $(this).html();
617                     });
618                     metaComment += '\n-->'
619
620                     var data = {
621                         name: $('#document-name').html(),
622                         text: metaComment + editor.getCode(),
623                         revision: $('#document-revision').html(),
624                         author: 'annonymous',
625                         comment: $('#komentarz').val()
626                     };
627
628                     $.ajax({
629                         url: document.location.href,
630                         type: "POST",
631                         dataType: "json",
632                         data: data,                
633                         success: function(data) {
634                             if (data.text) {
635                                 editor.setCode(data.text);
636                                 $('#document-revision').html(data.revision);
637                             } else {
638                                 alert(data.errors);
639                             }
640                             $.unblockUI();
641                         },
642                         error: function(xhr, textStatus, errorThrown) {
643                             alert('error: ' + textStatus + ' ' + errorThrown);
644                         },
645                     })
646                 }
647                 
648                 if ('#simple-view-tab.active') {
649                     reverseTransform(editor, doSave);
650                 } else {
651                     doSave();
652                 }
653             });
654             
655             $('#save-cancel').click(function() {
656                 $.unblockUI();
657             });
658
659             $('#simple-view-tab').click(function() {
660                 if ($(this).hasClass('active')) {
661                     return;
662                 }
663                 $(this).addClass('active');
664                 $('#source-view-tab').removeClass('active');
665                 $('#source-editor').hide();
666                 $('#simple-editor').show();
667                 transform(editor);
668             });
669
670             $('#source-view-tab').click(function() {
671                 if ($(this).hasClass('active')) {
672                     return;
673                 }
674                 $(this).addClass('active');
675                 $('#simple-view-tab').removeClass('active');
676                 $('#simple-editor').hide();
677                 $('#source-editor').show();
678                 reverseTransform(editor);
679             });
680
681             $('#source-editor .toolbar button').click(function(event) {
682                 event.preventDefault();
683                 var params = eval("(" + $(this).attr('ui:action-params') + ")");
684                 scriptletCenter.scriptlets[$(this).attr('ui:action')](editor, params);
685             });
686
687             $('.toolbar select').change(function() {
688                 var slug = $(this).val();
689
690                 $('.toolbar-buttons-container').hide().filter('[data-group=' + slug + ']').show();
691                 $(window).resize();
692             });
693
694             $('.toolbar-buttons-container').hide();
695             $('.toolbar select').change();
696
697             $('#simple-view-tab').click();
698         }
699     });
700     
701     $(window).resize(function() {
702         $('iframe').height($(window).height() - $('#tabs').outerHeight() - $('#source-editor .toolbar').outerHeight());
703     });
704     
705     $(window).resize();
706     
707     $('.vsplitbar').click(function() {
708         if ($('#sidebar').width() == 0) {
709             $('#sidebar').width(480).css({right: 0}).show();
710             $('#source-editor, #simple-editor').css({right: 495});
711             $('.vsplitbar').css({right: 480}).addClass('active');
712         } else {
713             $('#sidebar').width(0).hide();
714             $('#source-editor, #simple-editor').css({right: 15});
715             $('.vsplitbar').css({right: 0}).removeClass('active');
716         }
717         $(window).resize();
718     });
719                 
720
721 });