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