]> git.mxchange.org Git - friendica.git/blob - view/jot-header.tpl
changes to support a mobile theme
[friendica.git] / view / jot-header.tpl
1
2 <script language="javascript" type="text/javascript">
3
4 var editor=false;
5 var textlen = 0;
6 var plaintext = '$editselect';
7
8 function initEditor(cb){
9         if (editor==false){
10                 $("#profile-jot-text-loading").show();
11                 if(plaintext == 'none') {
12                         $("#profile-jot-text-loading").hide();
13                         $("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
14                         $("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
15                         editor = true;
16                         $("a#jot-perms-icon").fancybox({
17                                 'transitionIn' : 'elastic',
18                                 'transitionOut' : 'elastic'
19                         });
20                         $(".jothidden").show();
21                         if (typeof cb!="undefined") cb();
22                         return;
23                 }       
24                 tinyMCE.init({
25                         theme : "advanced",
26                         mode : "specific_textareas",
27                         editor_selector: $editselect,
28                         auto_focus: "profile-jot-text",
29                         plugins : "bbcode,paste,autoresize, inlinepopups",
30                         theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
31                         theme_advanced_buttons2 : "",
32                         theme_advanced_buttons3 : "",
33                         theme_advanced_toolbar_location : "top",
34                         theme_advanced_toolbar_align : "center",
35                         theme_advanced_blockformats : "blockquote,code",
36                         gecko_spellcheck : true,
37                         paste_text_sticky : true,
38                         entity_encoding : "raw",
39                         add_unload_trigger : false,
40                         remove_linebreaks : false,
41                         force_p_newlines : false,
42                         force_br_newlines : true,
43                         forced_root_block : '',
44                         convert_urls: false,
45                         content_css: "$baseurl/view/custom_tinymce.css",
46                         theme_advanced_path : false,
47                         file_browser_callback : "fcFileBrowser",
48                         setup : function(ed) {
49                                 cPopup = null;
50                                 ed.onKeyDown.add(function(ed,e) {
51                                         if(cPopup !== null)
52                                                 cPopup.onkey(e);
53                                 });
54
55                                 ed.onKeyUp.add(function(ed, e) {
56                                         var txt = tinyMCE.activeEditor.getContent();
57                                         match = txt.match(/@([^ \n]+)$/);
58                                         if(match!==null) {
59                                                 if(cPopup === null) {
60                                                         cPopup = new ACPopup(this,baseurl+"/acl");
61                                                 }
62                                                 if(cPopup.ready && match[1]!==cPopup.searchText) cPopup.search(match[1]);
63                                                 if(! cPopup.ready) cPopup = null;
64                                         }
65                                         else {
66                                                 if(cPopup !== null) { cPopup.close(); cPopup = null; }
67                                         }
68
69                                         textlen = txt.length;
70                                         if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
71                                                 $('#profile-jot-desc').html(ispublic);
72                                         }
73                                         else {
74                                                 $('#profile-jot-desc').html('&nbsp;');
75                                         }        
76
77                                  //Character count
78
79                                         if(textlen <= 140) {
80                                                 $('#character-counter').removeClass('red');
81                                                 $('#character-counter').removeClass('orange');
82                                                 $('#character-counter').addClass('grey');
83                                         }
84                                         if((textlen > 140) && (textlen <= 420)) {
85                                                 $('#character-counter').removeClass('grey');
86                                                 $('#character-counter').removeClass('red');
87                                                 $('#character-counter').addClass('orange');
88                                         }
89                                         if(textlen > 420) {
90                                                 $('#character-counter').removeClass('grey');
91                                                 $('#character-counter').removeClass('orange');
92                                                 $('#character-counter').addClass('red');
93                                         }
94                                         $('#character-counter').text(textlen);
95                                 });
96
97                                 ed.onInit.add(function(ed) {
98                                         ed.pasteAsPlainText = true;
99                                         $("#profile-jot-text-loading").hide();
100                                         $(".jothidden").show();
101                                         if (typeof cb!="undefined") cb();
102                                 });
103
104                         }
105                 });
106                 editor = true;
107                 // setup acl popup
108                 $("a#jot-perms-icon").fancybox({
109                         'transitionIn' : 'elastic',
110                         'transitionOut' : 'elastic'
111                 }); 
112         } else {
113                 if (typeof cb!="undefined") cb();
114         }
115 }
116
117 function enableOnUser(){
118         if (editor) return;
119         $(this).val("");
120         initEditor();
121 }
122
123 </script>
124 <script type="text/javascript" src="$baseurl/js/ajaxupload.js" ></script>
125 <script>
126         var ispublic = '$ispublic';
127
128         $(document).ready(function() {
129                 
130                 /* enable tinymce on focus and click */
131                 $("#profile-jot-text").focus(enableOnUser);
132                 $("#profile-jot-text").click(enableOnUser);
133
134                 var uploader = new window.AjaxUpload(
135                         'wall-image-upload',
136                         { action: 'wall_upload/$nickname',
137                                 name: 'userfile',
138                                 onSubmit: function(file,ext) { $('#profile-rotator').show(); },
139                                 onComplete: function(file,response) {
140                                         addeditortext(response);
141                                         $('#profile-rotator').hide();
142                                 }                                
143                         }
144                 );
145                 var file_uploader = new window.AjaxUpload(
146                         'wall-file-upload',
147                         { action: 'wall_attach/$nickname',
148                                 name: 'userfile',
149                                 onSubmit: function(file,ext) { $('#profile-rotator').show(); },
150                                 onComplete: function(file,response) {
151                                         addeditortext(response);
152                                         $('#profile-rotator').hide();
153                                 }                                
154                         }
155                 );
156
157
158         });
159
160         function deleteCheckedItems() {
161                 var checkedstr = '';
162
163                 $('.item-select').each( function() {
164                         if($(this).is(':checked')) {
165                                 if(checkedstr.length != 0) {
166                                         checkedstr = checkedstr + ',' + $(this).val();
167                                 }
168                                 else {
169                                         checkedstr = $(this).val();
170                                 }
171                         }       
172                 });
173                 $.post('item', { dropitems: checkedstr }, function(data) {
174                         window.location.reload();
175                 });
176         }
177
178         function jotGetLink() {
179                 reply = prompt("$linkurl");
180                 if(reply && reply.length) {
181                         reply = bin2hex(reply);
182                         $('#profile-rotator').show();
183                         $.get('parse_url?binurl=' + reply, function(data) {
184                                 addeditortext(data);
185                                 $('#profile-rotator').hide();
186                         });
187                 }
188         }
189
190         function jotVideoURL() {
191                 reply = prompt("$vidurl");
192                 if(reply && reply.length) {
193                         addeditortext('[video]' + reply + '[/video]');
194                 }
195         }
196
197         function jotAudioURL() {
198                 reply = prompt("$audurl");
199                 if(reply && reply.length) {
200                         addeditortext('[audio]' + reply + '[/audio]');
201                 }
202         }
203
204
205         function jotGetLocation() {
206                 reply = prompt("$whereareu", $('#jot-location').val());
207                 if(reply && reply.length) {
208                         $('#jot-location').val(reply);
209                 }
210         }
211
212         function jotShare(id) {
213                 if ($('#jot-popup').length != 0) $('#jot-popup').show();
214
215                 $('#like-rotator-' + id).show();
216                 $.get('share/' + id, function(data) {
217                         if (!editor) $("#profile-jot-text").val("");
218                         initEditor(function(){
219                                 addeditortext(data);
220                                 $('#like-rotator-' + id).hide();
221                                 $(window).scrollTop(0);
222                         });
223
224                 });
225         }
226
227         function linkdropper(event) {
228                 var linkFound = event.dataTransfer.types.contains("text/uri-list");
229                 if(linkFound)
230                         event.preventDefault();
231         }
232
233         function linkdrop(event) {
234                 var reply = event.dataTransfer.getData("text/uri-list");
235                 event.target.textContent = reply;
236                 event.preventDefault();
237                 if(reply && reply.length) {
238                         reply = bin2hex(reply);
239                         $('#profile-rotator').show();
240                         $.get('parse_url?binurl=' + reply, function(data) {
241                                 if (!editor) $("#profile-jot-text").val("");
242                                 initEditor(function(){
243                                         addeditortext(data);
244                                         $('#profile-rotator').hide();
245                                 });
246                         });
247                 }
248         }
249
250         function itemTag(id) {
251                 reply = prompt("$term");
252                 if(reply && reply.length) {
253                         reply = reply.replace('#','');
254                         if(reply.length) {
255
256                                 commentBusy = true;
257                                 $('body').css('cursor', 'wait');
258
259                                 $.get('tagger/' + id + '?term=' + reply);
260                                 if(timer) clearTimeout(timer);
261                                 timer = setTimeout(NavUpdate,3000);
262                                 liking = 1;
263                         }
264                 }
265         }
266
267         function itemFiler(id) {
268                 
269                 var bordercolor = $("input").css("border-color");
270                 
271                 $.get('filer/', function(data){
272                         $.fancybox(data);
273                         $("#id_term").keypress(function(){
274                                 $(this).css("border-color",bordercolor);
275                         })
276                         $("#select_term").change(function(){
277                                 $("#id_term").css("border-color",bordercolor);
278                         })
279                         
280                         $("#filer_save").click(function(e){
281                                 e.preventDefault();
282                                 reply = $("#id_term").val();
283                                 if(reply && reply.length) {
284                                         commentBusy = true;
285                                         $('body').css('cursor', 'wait');
286                                         $.get('filer/' + id + '?term=' + reply, NavUpdate);
287 //                                      if(timer) clearTimeout(timer);
288 //                                      timer = setTimeout(NavUpdate,3000);
289                                         liking = 1;
290                                         $.fancybox.close();
291                                 } else {
292                                         $("#id_term").css("border-color","#FF0000");
293                                 }
294                                 return false;
295                         });
296                 });
297                 
298         }
299
300         function jotClearLocation() {
301                 $('#jot-coord').val('');
302                 $('#profile-nolocation-wrapper').hide();
303         }
304
305         function addeditortext(data) {
306                 if(plaintext == 'none') {
307                         var currentText = $("#profile-jot-text").val();
308                         $("#profile-jot-text").val(currentText + data);
309                 }
310                 else
311                         tinyMCE.execCommand('mceInsertRawHTML',false,data);
312         }       
313
314         $geotag
315
316 </script>
317