]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/textedit.js
9b36d1569dc94dd969b984ad41449de800f7c96c
[friendica.git] / view / theme / frio / js / textedit.js
1 /* 
2  * @brief The file contains functions for text editing and commenting
3  */
4
5
6 function insertFormatting(comment,BBcode,id) {
7
8                 var tmpStr = $("#comment-edit-text-" + id).val();
9                 if(tmpStr == comment) {
10                         tmpStr = "";
11                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
12                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
13                         openMenu("comment-edit-submit-wrapper-" + id);
14                         $("#comment-edit-text-" + id).val(tmpStr);
15                 }
16
17         textarea = document.getElementById("comment-edit-text-" +id);
18         if (document.selection) {
19                 textarea.focus();
20                 selected = document.selection.createRange();
21                 if (BBcode == "url"){
22                         selected.text = "["+BBcode+"]" + "http://" +  selected.text + "[/"+BBcode+"]";
23                         } else
24                 selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
25         } else if (textarea.selectionStart || textarea.selectionStart == "0") {
26                 var start = textarea.selectionStart;
27                 var end = textarea.selectionEnd;
28                 if (BBcode == "url"){
29                         textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
30                         } else
31                 textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
32         }
33         return true;
34 }
35
36
37 function showThread(id) {
38         $("#collapsed-comments-" + id).show()
39         $("#collapsed-comments-" + id + " .collapsed-comments").show()
40 }
41 function hideThread(id) {
42         $("#collapsed-comments-" + id).hide()
43         $("#collapsed-comments-" + id + " .collapsed-comments").hide()
44 }
45
46 function cmtBbOpen(id) {
47         $("#comment-edit-bb-" + id).show();
48 }
49 function cmtBbClose(id) {
50         $("#comment-edit-bb-" + id).hide();
51 }
52
53 function commentExpand(id) {
54         $("#comment-edit-text-" + id).value = '';
55         $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
56         $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
57         $("#comment-edit-text-" + id).focus();
58         $("#mod-cmnt-wrap-" + id).show();
59         openMenu("comment-edit-submit-wrapper-" + id);
60         return true;
61 }
62
63 function commentClose(obj,id) {
64         if(obj.value == '') {
65                 obj.value = aStr.comment;
66                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
67                 $("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
68                 $("#mod-cmnt-wrap-" + id).hide();
69                 closeMenu("comment-edit-submit-wrapper-" + id);
70                 return true;
71         }
72         return false;
73 }
74
75 function showHideCommentBox(id) {
76         if( $('#comment-edit-form-' + id).is(':visible')) {
77                 $('#comment-edit-form-' + id).hide();
78         }
79         else {
80                 $('#comment-edit-form-' + id).show();
81         }
82 }
83
84 function commentOpenUI(obj, id) {
85         $(document).unbind( "click.commentOpen", handler );
86
87         var handler = function() {
88                 if(obj.value == aStr.comment) {
89                         obj.value = '';
90                         $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty");
91                         // Choose an arbitrary tab index that's greater than what we're using in jot (3 of them)
92                         // The submit button gets tabindex + 1
93                         $("#comment-edit-text-" + id).attr('tabindex','9');
94                         $("#comment-edit-submit-" + id).attr('tabindex','10');
95                         $("#comment-edit-submit-wrapper-" + id).show();
96                         // initiale autosize for this comment
97                         autosize($("#comment-edit-text-" + id + ".text-autosize"));
98                 }
99         };
100
101         $(document).bind( "click.commentOpen", handler );
102 }
103
104 function commentCloseUI(obj, id) {
105         $(document).unbind( "click.commentClose", handler );
106
107         var handler = function() {
108                 if(obj.value === '') {
109                 obj.value = aStr.comment;
110                         $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty");
111                         $("#comment-edit-text-" + id).removeAttr('tabindex');
112                         $("#comment-edit-submit-" + id).removeAttr('tabindex');
113                         $("#comment-edit-submit-wrapper-" + id).hide();
114                         // destroy the automatic textarea resizing
115                         autosize.destroy($("#comment-edit-text-" + id + ".text-autosize"));
116                 }
117         };
118
119         $(document).bind( "click.commentClose", handler );
120 }
121
122 // test if there is default content in the jot text box and remove it
123 function jotTextOpenUI(obj) {
124         if(obj.value == aStr.share) {
125                 obj.value = '';
126                 $(".modal-body #profile-jot-text").addClass("profile-jot-text-full").removeClass("profile-jot-text-empty");
127                 // initiale autosize for the jot
128                 autosize($(".modal-body #profile-jot-text"));
129         }
130 }
131
132 // insert default content into the jot text box
133 // if it's empty
134 function jotTextCloseUI(obj) {
135         if(obj.value === '') {
136         obj.value = aStr.share;
137                 $(".modal-body #profile-jot-text").removeClass("profile-jot-text-full").addClass("profile-jot-text-empty");
138                 // destroy the automatic textarea resizing
139                 autosize.destroy($(".modal-body #profile-jot-text"));
140         }
141 }
142
143 function commentOpen(obj,id) {
144         if(obj.value == aStr.comment) {
145                 obj.value = '';
146                 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
147                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
148                 $("#mod-cmnt-wrap-" + id).show();
149                 openMenu("comment-edit-submit-wrapper-" + id);
150                 return true;
151         }
152         return false;
153 }
154
155 function commentInsert(obj,id) {
156         var tmpStr = $("#comment-edit-text-" + id).val();
157         if(tmpStr == aStr.comment) {
158                 tmpStr = '';
159                 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
160                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
161                 openMenu("comment-edit-submit-wrapper-" + id);
162         }
163         var ins = $(obj).html();
164         ins = ins.replace('&lt;','<');
165         ins = ins.replace('&gt;','>');
166         ins = ins.replace('&amp;','&');
167         ins = ins.replace('&quot;','"');
168         $("#comment-edit-text-" + id).val(tmpStr + ins);
169 }
170
171 function qCommentInsert(obj,id) {
172         var tmpStr = $("#comment-edit-text-" + id).val();
173         if(tmpStr == aStr.comment) {
174                 tmpStr = '';
175                 $("#comment-edit-text-" + id).addClass("comment-edit-text-full");
176                 $("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
177                 openMenu("comment-edit-submit-wrapper-" + id);
178         }
179         var ins = $(obj).val();
180         ins = ins.replace('&lt;','<');
181         ins = ins.replace('&gt;','>');
182         ins = ins.replace('&amp;','&');
183         ins = ins.replace('&quot;','"');
184         $("#comment-edit-text-" + id).val(tmpStr + ins);
185         $(obj).val('');
186 }
187
188 function confirmDelete() { return confirm(aStr.delitem); }
189
190 function dropItem(url, object) {
191         var confirm = confirmDelete();
192         if(confirm) {
193                 $('body').css('cursor', 'wait');
194                 $(object).fadeTo('fast', 0.33, function () {
195                         $.get(url).done(function() {
196                                 $(object).remove();
197                                 $('body').css('cursor', 'auto');
198                         });
199                 });
200         }
201 }