fixes #940
[redakcja.git] / redakcja / static / js / wiki / view_editor_wysiwyg.js
1 (function($){
2
3     /* Show theme to the user */
4     function selectTheme(themeId){
5         var selection = window.getSelection();
6         selection.removeAllRanges();
7
8         var range = document.createRange();
9         var s = $(".motyw[theme-class='" + themeId + "']")[0];
10         var e = $(".end[theme-class='" + themeId + "']")[0];
11
12         if (s && e) {
13             range.setStartAfter(s);
14             range.setEndBefore(e);
15             selection.addRange(range);
16         }
17     };
18
19     /* Verify insertion port for annotation or theme */
20     function verifyTagInsertPoint(node){
21         if (node.nodeType == 3) { // Text Node
22             node = node.parentNode;
23         }
24
25         if (node.nodeType != 1) {
26             return false;
27         }
28
29         node = $(node);
30         var xtype = node.attr('x-node');
31
32         if (!xtype || (xtype.search(':') >= 0) ||
33         xtype == 'motyw' ||
34         xtype == 'begin' ||
35         xtype == 'end') {
36             return false;
37         }
38
39         // don't allow themes inside annotations
40         if (node.is('*[x-annotation-box] *'))
41             return false;
42
43         return true;
44     }
45
46     /* Convert HTML fragment to plaintext */
47     var ANNOT_FORBIDDEN = ['pt', 'pa', 'pr', 'pe', 'begin', 'end', 'motyw'];
48
49     function html2plainText(fragment){
50         var text = "";
51
52         $(fragment.childNodes).each(function(){
53             if (this.nodeType == 3) // textNode
54                 text += this.nodeValue;
55             else {
56                 if (this.nodeType == 1 &&
57                         $.inArray($(this).attr('x-node'), ANNOT_FORBIDDEN) == -1) {
58                     text += html2plainText(this);
59                 }
60             };
61         });
62
63         return text;
64     }
65
66
67     /* Insert annotation using current selection */
68     function addAnnotation(){
69         var selection = window.getSelection();
70         var n = selection.rangeCount;
71
72         if (n == 0) {
73             window.alert("Nie zaznaczono żadnego obszaru");
74             return false;
75         }
76
77         // for now allow only 1 range
78         if (n > 1) {
79             window.alert("Zaznacz jeden obszar");
80             return false;
81         }
82
83         // remember the selected range
84         var range = selection.getRangeAt(0);
85
86         if (!verifyTagInsertPoint(range.endContainer)) {
87             window.alert("Nie można wstawić w to miejsce przypisu.");
88             return false;
89         }
90
91         // BUG #273 - selected text can contain themes, which should be omitted from
92         // defining term
93         var text = html2plainText(range.cloneContents());
94         var tag = $('<span></span>');
95         range.collapse(false);
96         range.insertNode(tag[0]);
97
98         xml2html({
99             xml: '<pe><slowo_obce>' + text + '</slowo_obce> --- </pe>',
100             success: function(text){
101                 var t = $(text);
102                 tag.replaceWith(t);
103                 openForEdit(t);
104             },
105             error: function(){
106                 tag.remove();
107                 alert('Błąd przy dodawaniu przypisu:' + errors);
108             }
109         })
110     }
111
112
113     /* Insert theme using current selection */
114
115     function addTheme(){
116         var selection = window.getSelection();
117         var n = selection.rangeCount;
118
119         if (n == 0) {
120             window.alert("Nie zaznaczono żadnego obszaru");
121             return false;
122         }
123
124         // for now allow only 1 range
125         if (n > 1) {
126             window.alert("Zaznacz jeden obszar.");
127             return false;
128         }
129
130
131         // remember the selected range
132         var range = selection.getRangeAt(0);
133
134
135         if ($(range.startContainer).is('.html-editarea') ||
136         $(range.endContainer).is('.html-editarea')) {
137             window.alert("Motywy można oznaczać tylko na tekście nie otwartym do edycji. \n Zamknij edytowany fragment i spróbuj ponownie.");
138             return false;
139         }
140
141         // verify if the start/end points make even sense -
142         // they must be inside a x-node (otherwise they will be discarded)
143         // and the x-node must be a main text
144         if (!verifyTagInsertPoint(range.startContainer)) {
145             window.alert("Motyw nie może się zaczynać w tym miejscu.");
146             return false;
147         }
148
149         if (!verifyTagInsertPoint(range.endContainer)) {
150             window.alert("Motyw nie może się kończyć w tym miejscu.");
151             return false;
152         }
153
154         var date = (new Date()).getTime();
155         var random = Math.floor(4000000000 * Math.random());
156         var id = ('' + date) + '-' + ('' + random);
157
158         var spoint = document.createRange();
159         var epoint = document.createRange();
160
161         spoint.setStart(range.startContainer, range.startOffset);
162         epoint.setStart(range.endContainer, range.endOffset);
163
164         var mtag, btag, etag, errors;
165
166         // insert theme-ref
167
168         xml2html({
169             xml: '<end id="e' + id + '" />',
170             success: function(text){
171                 etag = $('<span></span>');
172                 epoint.insertNode(etag[0]);
173                 etag.replaceWith(text);
174                 xml2html({
175                     xml: '<motyw id="m' + id + '"></motyw>',
176                     success: function(text){
177                         mtag = $('<span></span>');
178                         spoint.insertNode(mtag[0]);
179                         mtag.replaceWith(text);
180                         xml2html({
181                             xml: '<begin id="b' + id + '" />',
182                             success: function(text){
183                                 btag = $('<span></span>');
184                                 spoint.insertNode(btag[0])
185                                 btag.replaceWith(text);
186                                 selection.removeAllRanges();
187                                 openForEdit($('.motyw[theme-class=' + id + ']'));
188                             }
189                         });
190                     }
191                 });
192             }
193         });
194     }
195
196     function addSymbol() {
197         if($('div.html-editarea textarea')[0]) {
198             var specialCharsContainer = $("<div id='specialCharsContainer'><a href='#' id='specialCharsClose'>Zamknij</a><table id='tableSpecialChars' style='width: 600px;'></table></div>");
199             var specialChars = ['Ą','ą','Ć','ć','Ę','ę','Ł','ł','Ń','ń','Ó','ó','Ś','ś','Ż','ż','Ź','ź','Á','á','À','à',
200             'Â','â','Ä','ä','Å','å','Ā','ā','Ă','ă','Ã','ã',
201             'Æ','æ','Ç','ç','Č','č','Ċ','ċ','Ď','ď','É','é','È','è',
202             'Ê','ê','Ë','ë','Ē','ē','Ě','ě','Ġ','ġ','Ħ','ħ','Í','í','Î','î',
203             'Ī','ī','Ĭ','ĭ','Ľ','ľ','Ñ','ñ','Ň','ň','Ó','ó','Ö','ö',
204             'Ô','ô','Ō','ō','Ǒ','ǒ','Œ','œ','Ø','ø','Ř','ř','Š',
205             'š','Ş','ş','Ť','ť','Ţ','ţ','Ű','ű','Ú','ú',
206             'Ü','ü','Ů','ů','Ū','ū','Û','û','Ŭ','ŭ',
207             'Ý','ý','Ž','ž','ß','Ð','ð','Þ','þ','А','а','Б',
208             'б','В','в','Г','г','Д','д','Е','е','Ё','ё','Ж',
209             'ж','З','з','И','и','Й','й','К','к','Л','л','М',
210             'м','Н','н','О','о','П','п','Р','р','С','с',
211             'Т','т','У','у','Ф','ф','Х','х','Ц','ц','Ч',
212             'ч','Ш','ш','Щ','щ','Ъ','ъ','Ы','ы','Ь','ь','Э',
213             'э','Ю','ю','Я','я','ѓ','є','і','ї','ј','љ','њ',
214             'Ґ','ґ','Α','α','Β','β','Γ','γ','Δ','δ','Ε','ε',
215             'Ζ','ζ','Η','η','Θ','θ','Ι','ι','Κ','κ','Λ','λ','Μ',
216             'μ','Ν','ν','Ξ','ξ','Ο','ο','Π','π','Ρ','ρ','Σ','ς','σ',
217             'Τ','τ','Υ','υ','Φ','φ','Χ','χ','Ψ','ψ','Ω','ω','–',
218             '—','¡','¿','$','¢','£','€','©','®','°','¹','²','³',
219             '¼','½','¾','†','§','‰','•','←','↑','→','↓',
220             '„”','«»','’','[',']','[','~','|','−','·',
221             '×','÷','≈','≠','±','≤','≥','∈'];
222             var tableContent = "<tr>";
223             
224             for(var i in specialChars) {
225                 if(i % 14 == 0 && i > 0) {
226                     tableContent += "</tr><tr>";
227                 }              
228                 tableContent += "<td><input type='button' class='specialBtn' value='"+specialChars[i]+"'/></td>";              
229             }
230             
231             tableContent += "</tr>";                                   
232             $("#content").append(specialCharsContainer);
233             $("#tableSpecialChars").append(tableContent);
234             
235             /* events */
236             
237             $('.specialBtn').click(function(){
238                 insertAtCaret($('div.html-editarea textarea')[0], $(this).val());
239                 $(specialCharsContainer).remove();
240             });         
241             $('#specialCharsClose').click(function(){
242                 $(specialCharsContainer).remove();
243             });                   
244             
245         } else {
246             window.alert('Najedź na fragment tekstu, wybierz "Edytuj" i ustaw kursor na miejscu gdzie chcesz wstawić symbol.');
247         }
248     }
249
250     function insertAtCaret(txtarea,text) { 
251         /* http://www.scottklarr.com/topic/425/how-to-insert-text-into-a-textarea-where-the-cursor-is/ */
252         var scrollPos = txtarea.scrollTop; 
253         var strPos = 0; 
254         var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? "ff" : (document.selection ? "ie" : false ) );
255         if (br == "ie") { 
256             txtarea.focus();
257             var range = document.selection.createRange(); 
258             range.moveStart ('character', -txtarea.value.length); 
259             strPos = range.text.length; 
260         } else if (br == "ff") strPos = txtarea.selectionStart; 
261         var front = (txtarea.value).substring(0,strPos); 
262         var back = (txtarea.value).substring(strPos,txtarea.value.length); 
263         txtarea.value=front+text+back; 
264         strPos = strPos + text.length; 
265         if (br == "ie") { 
266             txtarea.focus(); 
267             var range = document.selection.createRange(); 
268             range.moveStart ('character', -txtarea.value.length); 
269             range.moveStart ('character', strPos); 
270             range.moveEnd ('character', 0); 
271             range.select(); 
272         } else if (br == "ff") { 
273             txtarea.selectionStart = strPos; 
274             txtarea.selectionEnd = strPos; 
275             txtarea.focus(); 
276         } 
277         txtarea.scrollTop = scrollPos; 
278     } 
279
280     /* open edition window for selected fragment */
281     function openForEdit($origin){
282         var $box = null
283
284         // annotations overlay their sub box - not their own box //
285         if ($origin.is(".annotation-inline-box")) {
286             $box = $("*[x-annotation-box]", $origin);
287         }
288         else {
289             $box = $origin;
290         }
291         var x = $box[0].offsetLeft;
292         var y = $box[0].offsetTop;        
293         
294         var w = $box.outerWidth();
295         var h = $box.innerHeight();
296
297         if ($origin.is(".annotation-inline-box")) {
298             w = Math.max(w, 400);
299             h = Math.max(h, 60);
300             if($('.htmlview div').offset().left + $('.htmlview div').width() > ($('.vsplitbar').offset().left - 480)){
301                 x = -(Math.max($origin.offset().left, $origin.width())); 
302             } else {
303                 x = 100;
304             }
305         }
306
307         // start edition on this node
308         var $overlay = $('<div class="html-editarea"><button class="accept-button">Zapisz</button><button class="delete-button">Usuń</button><button class="tytul-button akap-edit-button">tytuł dzieła</button><button class="wyroznienie-button akap-edit-button">wyróżnienie</button><button class="slowo-button akap-edit-button">słowo obce</button><textarea></textarea></div>').css({
309             position: 'absolute',
310             height: h,
311             left: x,
312             top: y,
313             width: w
314         }).appendTo($box[0].offsetParent || $box.parent()).show();
315         
316
317         if ($origin.is('.motyw')) {
318             $('.akap-edit-button').remove();
319             withThemes(function(canonThemes){
320                 $('textarea', $overlay).autocomplete(canonThemes, {
321                     autoFill: true,
322                     multiple: true,
323                     selectFirst: true,
324                     highlight: false
325                 });
326             })
327         }
328
329         if ($origin.is('.motyw')){
330             $('.delete-button', $overlay).click(function(){
331                 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten motyw ?")) {
332                     $('[theme-class=' + $origin.attr('theme-class') + ']').remove();
333                     $overlay.remove();
334                     $(document).unbind('click.blur-overlay');
335                     return false;
336                 };
337             });
338         }
339         else if($box.is('*[x-annotation-box]')) {
340             $('.delete-button', $overlay).click(function(){
341                 if (window.confirm("Czy jesteś pewien, że chcesz usunąć ten przypis?")) {
342                     $origin.remove();
343                     $overlay.remove();
344                     $(document).unbind('click.blur-overlay');
345                     return false;
346                 };
347             });
348         }
349         else {
350             $('.delete-button', $overlay).html("Anuluj");
351             $('.delete-button', $overlay).click(function(){
352                 if (window.confirm("Czy jesteś pewien, że chcesz anulować zmiany?")) {
353                     $overlay.remove();
354                     $(document).unbind('click.blur-overlay');
355                     return false;
356                 };
357             });
358         }
359
360
361         var serializer = new XMLSerializer();
362
363         html2text({
364             element: $box[0],
365             stripOuter: true,
366             success: function(text){
367                 $('textarea', $overlay).val($.trim(text));
368
369                 setTimeout(function(){
370                     $('textarea', $overlay).elastic().focus();
371                 }, 50);
372
373                 function save(argument){
374                     var nodeName = $box.attr('x-node') || 'pe';
375                     var insertedText = $('textarea', $overlay).val();
376
377                     if ($origin.is('.motyw')) {
378                         insertedText = insertedText.replace(/,\s*$/, '');
379                     }
380
381                     xml2html({
382                         xml: '<' + nodeName + '>' + insertedText + '</' + nodeName + '>',
383                         success: function(element){
384                             if (nodeName == 'out-of-flow-text') {
385                                 $(element).children().insertAfter($origin);
386                                 $origin.remove()
387                             }
388                             else {
389                                 $origin.html($(element).html());
390                             }
391                             $overlay.remove();
392                         },
393                         error: function(text){
394                             $overlay.remove();
395                             alert('Błąd! ' + text);
396                         }
397                     })
398                     
399                     var msg = $("<div class='saveNotify'><p>Twoje zmiany zostały naniesione na tekst źródłowy. Pamiętaj, że aby zmiany zostały utrwalone <span>należy je zapisać</span>!</p><p class='notifyTip'>Ta wiadomość zostanie automatycznie zamknięta za 6 sekund.</p></div>");
400                     $("#base").prepend(msg);
401                     $("#save-button").css({border: '2px solid #801000', backgroundColor: '#E1C1C1'});
402                     $('#base .saveNotify').fadeOut(7000, function(){
403                         $(this).remove(); 
404                         $("#save-button").css({border: '1px solid black'});
405                     });
406                 }
407
408                 $('.akap-edit-button', $overlay).click(function(){
409                         var textAreaOpened = $('textarea', $overlay)[0];
410                         var startTag = "";
411                         var endTag = "";
412                         var buttonName = this.innerHTML;
413
414                         if(buttonName == "słowo obce") {
415                                 startTag = "<slowo_obce>";
416                                 endTag = "</slowo_obce>";
417                         } else if (buttonName == "wyróżnienie") {
418                                 startTag = "<wyroznienie>";
419                                 endTag = "</wyroznienie>";
420                         } else if (buttonName == "tytuł dzieła") {
421                                 startTag = "<tytul_dziela>";
422                                 endTag = "</tytul_dziela>";
423                         }
424                         var myField = textAreaOpened;                   
425                         
426                         //IE support
427                         if (document.selection) {
428                             textAreaOpened.focus();
429                             sel = document.selection.createRange();
430                             sel.text = startTag + sel.text + endTag;
431                         }
432                         //MOZILLA/NETSCAPE support
433                         else if (textAreaOpened.selectionStart || textAreaOpened.selectionStart == '0') {
434                             var startPos = textAreaOpened.selectionStart;
435                             var endPos = textAreaOpened.selectionEnd;
436                             textAreaOpened.value = textAreaOpened.value.substring(0, startPos)
437                                   + startTag + textAreaOpened.value.substring(startPos, endPos) + endTag + textAreaOpened.value.substring(endPos, textAreaOpened.value.length);
438                         }
439                 });
440
441                 $('.accept-button', $overlay).click(function(){
442                     save();
443                 });
444
445                 $(document).bind('click.blur-overlay', function(event){
446                     if ($(event.target).parents('.html-editarea').length > 0) {
447                         return;
448                     }
449                     save();
450                     $(document).unbind('click.blur-overlay');
451                 });
452
453             },
454             error: function(text){
455                 alert('Błąd! ' + text);
456             }
457         });
458     }
459
460     function VisualPerspective(options){
461
462         var old_callback = options.callback;
463
464         options.callback = function(){
465             var element = $("#html-view");
466             var button = $('<button class="edit-button">Edytuj</button>');
467
468             if (!CurrentDocument.readonly) {
469                 $('#html-view').bind('mousemove', function(event){
470                     var editable = $(event.target).closest('*[x-editable]');
471                     $('.active', element).not(editable).removeClass('active').children('.edit-button').remove();
472
473                     if (!editable.hasClass('active')) {
474                         editable.addClass('active').append(button);
475                     }
476                     if (editable.is('.annotation-inline-box')) {
477                         $('*[x-annotation-box]', editable).css({
478                             position: 'absolute',
479                             left: event.clientX - editable.offset().left + 5,
480                             top: event.clientY - editable.offset().top + 5
481                         }).show();
482                     }
483                     else {
484                         $('*[x-annotation-box]').hide();
485                     }
486                 });
487
488                 $('#insert-annotation-button').click(function(){
489                     addAnnotation();
490                     return false;
491                 });
492
493                 $('#insert-theme-button').click(function(){
494                     addTheme();
495                     return false;
496                 });
497                 
498                 $('#insert-symbol-button').click(function(){
499                     addSymbol();
500                     return false;
501                 });                
502
503                 $('.edit-button').live('click', function(event){
504                     event.preventDefault();
505                     openForEdit($(this).parent());
506                 });
507
508             }
509
510             $('.motyw').live('click', function(){
511                 selectTheme($(this).attr('theme-class'));
512             });
513
514             old_callback.call(this);
515         };
516
517         $.wiki.Perspective.call(this, options);
518     };
519
520     VisualPerspective.prototype = new $.wiki.Perspective();
521
522     VisualPerspective.prototype.freezeState = function(){
523
524     };
525
526     VisualPerspective.prototype.onEnter = function(success, failure){
527         $.wiki.Perspective.prototype.onEnter.call(this);
528
529         $.blockUI({
530             message: 'Uaktualnianie widoku...'
531         });
532
533         function _finalize(callback){
534             $.unblockUI();
535             if (callback)
536                 callback();
537         }
538
539         xml2html({
540             xml: this.doc.text,
541             success: function(element){
542                 $('#html-view').html(element);
543                 _finalize(success);
544             },
545             error: function(text, source){
546                 err = '<p class="error">Wystąpił błąd:</p><p>'+text+'</p>';
547                 if (source)
548                     err += '<pre>'+source.replace(/&/g, '&amp;').replace(/</g, '&lt;')+'</pre>'
549                 $('#html-view').html(err);
550                 _finalize(failure);
551             }
552         });
553     };
554
555     VisualPerspective.prototype.onExit = function(success, failure){
556         var self = this;
557
558         $.blockUI({
559             message: 'Zapisywanie widoku...'
560         });
561
562         function _finalize(callback){
563             $.unblockUI();
564             if (callback)
565                 callback();
566         }
567
568         if ($('#html-view .error').length > 0)
569             return _finalize(failure);
570
571         html2text({
572             element: $('#html-view div').get(0),
573             success: function(text){
574                 self.doc.setText(text);
575                 _finalize(success);
576             },
577             error: function(text){
578                 $('#source-editor').html('<p>Wystąpił błąd:</p><pre>' + text + '</pre>');
579                 _finalize(failure);
580             }
581         });
582     };
583
584     $.wiki.VisualPerspective = VisualPerspective;
585
586 })(jQuery);