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