]> git.mxchange.org Git - friendica.git/blob - view/jot-header.tpl
Merge pull request #64 from tomtom84/master
[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                 var uploader = new window.AjaxUpload(
133                         'wall-image-upload',
134                         { action: 'wall_upload/$nickname',
135                                 name: 'userfile',
136                                 onSubmit: function(file,ext) { $('#profile-rotator').show(); },
137                                 onComplete: function(file,response) {
138                                         addeditortext(response);
139                                         $('#profile-rotator').hide();
140                                 }                                
141                         }
142                 );
143                 var file_uploader = new window.AjaxUpload(
144                         'wall-file-upload',
145                         { action: 'wall_attach/$nickname',
146                                 name: 'userfile',
147                                 onSubmit: function(file,ext) { $('#profile-rotator').show(); },
148                                 onComplete: function(file,response) {
149                                         addeditortext(response);
150                                         $('#profile-rotator').hide();
151                                 }                                
152                         }
153                 );
154
155
156         });
157
158         function deleteCheckedItems() {
159                 var checkedstr = '';
160
161                 $('.item-select').each( function() {
162                         if($(this).is(':checked')) {
163                                 if(checkedstr.length != 0) {
164                                         checkedstr = checkedstr + ',' + $(this).val();
165                                 }
166                                 else {
167                                         checkedstr = $(this).val();
168                                 }
169                         }       
170                 });
171                 $.post('item', { dropitems: checkedstr }, function(data) {
172                         window.location.reload();
173                 });
174         }
175
176         function jotGetLink() {
177                 reply = prompt("$linkurl");
178                 if(reply && reply.length) {
179                         reply = bin2hex(reply);
180                         $('#profile-rotator').show();
181                         $.get('parse_url?binurl=' + reply, function(data) {
182                                 addeditortext(data);
183                                 $('#profile-rotator').hide();
184                         });
185                 }
186         }
187
188         function jotVideoURL() {
189                 reply = prompt("$vidurl");
190                 if(reply && reply.length) {
191                         addeditortext('[video]' + reply + '[/video]');
192                 }
193         }
194
195         function jotAudioURL() {
196                 reply = prompt("$audurl");
197                 if(reply && reply.length) {
198                         addeditortext('[audio]' + reply + '[/audio]');
199                 }
200         }
201
202
203         function jotGetLocation() {
204                 reply = prompt("$whereareu", $('#jot-location').val());
205                 if(reply && reply.length) {
206                         $('#jot-location').val(reply);
207                 }
208         }
209
210         function jotShare(id) {
211                 if ($('#jot-popup').length != 0) $('#jot-popup').show();
212
213                 $('#like-rotator-' + id).show();
214                 $.get('share/' + id, function(data) {
215                         if (!editor) $("#profile-jot-text").val("");
216                         initEditor(function(){
217                                 addeditortext(data);
218                                 $('#like-rotator-' + id).hide();
219                                 $(window).scrollTop(0);
220                         });
221
222                 });
223         }
224
225         function linkdropper(event) {
226                 var linkFound = event.dataTransfer.types.contains("text/uri-list");
227                 if(linkFound)
228                         event.preventDefault();
229         }
230
231         function linkdrop(event) {
232                 var reply = event.dataTransfer.getData("text/uri-list");
233                 event.target.textContent = reply;
234                 event.preventDefault();
235                 if(reply && reply.length) {
236                         reply = bin2hex(reply);
237                         $('#profile-rotator').show();
238                         $.get('parse_url?binurl=' + reply, function(data) {
239                                 if (!editor) $("#profile-jot-text").val("");
240                                 initEditor(function(){
241                                         addeditortext(data);
242                                         $('#profile-rotator').hide();
243                                 });
244                         });
245                 }
246         }
247
248         function itemTag(id) {
249                 reply = prompt("$term");
250                 if(reply && reply.length) {
251                         reply = reply.replace('#','');
252                         if(reply.length) {
253
254                                 commentBusy = true;
255                                 $('body').css('cursor', 'wait');
256
257                                 $.get('tagger/' + id + '?term=' + reply);
258                                 if(timer) clearTimeout(timer);
259                                 timer = setTimeout(NavUpdate,3000);
260                                 liking = 1;
261                         }
262                 }
263         }
264
265         function jotClearLocation() {
266                 $('#jot-coord').val('');
267                 $('#profile-nolocation-wrapper').hide();
268         }
269
270         function addeditortext(data) {
271                 if(plaintext == 'none') {
272                         var currentText = $("#profile-jot-text").val();
273                         $("#profile-jot-text").val(currentText + data);
274                 }
275                 else
276                         tinyMCE.execCommand('mceInsertRawHTML',false,data);
277         }       
278
279         $geotag
280
281 </script>
282