OSDN Git Service

ADD: プラグイン「NP_Medium」
[nucleus-jp/nucleus-next.git] / skins / admin / bookmarklet / javascripts / edit.js
1 /**
2   * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
3   * Copyright (C) 2002-2012 The Nucleus Group
4   *
5   * This program is free software; you can redistribute it and/or
6   * modify it under the terms of the GNU General Public License
7   * as published by the Free Software Foundation; either version 2
8   * of the License, or (at your option) any later version.
9   * (see nucleus/documentation/index.html#license for more info)
10   *
11   * This file contains functions to allow adding items from inside the weblog.
12   * Also contains code to avoid submitting form data twice.
13   *
14   * $Id: edit.js 1388 2009-07-18 06:31:28Z shizuki $
15   */
16
17 var nucleusConvertBreaks = true;
18 var nucleusMediaPopupURL = '';
19 var nucleusMediaURL = 'media/';
20 var nucleusAuthorId = 0;
21 var scrollTop = -1;
22
23 function setConvertBreaks(newval) {     nucleusConvertBreaks = newval; }
24 function setMediaUrl(url) { nucleusMediaURL = url; }
25 function setAuthorId(id) { nucleusAuthorId = id; }
26
27 function preview(id, value) {
28         elem = document.getElementById(id);
29         if (!elem) return;
30
31         var preview = nucleusConvertBreaks ? str_replace("\n","<br />",value)+"&#160;" : value+"&#160;";
32
33         // expand the media commands (without explicit collection)
34         preview = preview.replace(/\<\%image\(([^\/\|]*)\|([^\|]*)\|([^\|]*)\|([^)]*)\)\%\>/g,"<img src='"+nucleusMediaURL+nucleusAuthorId+"/$1' width='$2' height='$3' alt=\"$4\" />");
35
36         // expand the media commands (with collection)
37         preview = preview.replace(/\<\%image\(([^\|]*)\|([^\|]*)\|([^\|]*)\|([^)]*)\)\%\>/g,"<img src='"+nucleusMediaURL+"$1' width='$2' height='$3' alt=\"$4\" />");
38         preview = preview.replace(/\<\%popup\(([^\|]*)\|([^\|]*)\|([^\|]*)\|([^)]*)\)\%\>/g,"<a href='' onclick='if (event &amp;&amp; event.preventDefault) event.preventDefault(); alert(\"popup image\"); return false;' title='popup'>$4</a>");
39         preview = preview.replace(/\<\%media\(([^\|]*)\|([^)]*)\)\%\>/g,"<a href='' title='media link'>$2</a>");
40
41         elem.innerHTML = preview;
42 }
43
44 function showedit() {
45         prevval = document.getElementById('edit').style.display;
46         if (prevval == "block")
47                 newval = "none";
48         else
49                 newval = "block";
50         document.getElementById('edit').style.display = newval;
51
52         if (newval == "block")
53                 updAllPreviews();
54 }
55
56 function updAllPreviews() {
57         updPreview('title');
58         updPreview('body');
59         updPreview('more');
60 }
61
62 function isEditVisible() {
63         var editform = document.getElementById('edit');
64         if (!editform) return true;
65         var prevval = editform.style.display;
66         return (prevval == "none") ? false : true;
67 }
68
69 function updPreview(id) {
70         // don't update when preview is hidden
71         if (!isEditVisible()) return;
72
73         var inputField = document.getElementById('input' + id);
74         if (!inputField) return;
75         preview('prev' + id, inputField.value);
76 }
77
78 // replace a in s by b (taken from milov.nl)
79 function str_replace(a, b, s)
80 {
81         if (a == b || !s.length || !a.length) return s;
82         if ((p=s.indexOf(a)) == -1) { return s; }
83         else { ns = s.substring(0,p) + b + s.substring(p+a.length,s.length); }
84         return (s.indexOf(a) != -1) ? str_replace(a, b, ns) : ns;
85 }
86
87 function shortCuts() {
88         if (!event || (event.ctrlKey != true)) return;
89
90         switch (event.keyCode) {
91                 case 1:
92                         ahrefThis(); break; // ctrl-shift-a
93                 case 2:
94                         boldThis(); break; // ctrl-shift-b
95                 case 9:
96                         italicThis(); break; // ctrl-shift-i
97                 case 13:
98                         addMedia(); break; // ctrl-shift-m
99                 default:
100                         return;
101         }
102         return;
103 }
104
105 function cutThis() { execAndUpdate('cut'); }
106 function copyThis() { execAndUpdate('copy'); }
107 function pasteThis() { execAndUpdate('paste'); }
108 function boldThis() { insertAroundCaret('<b>','</b>'); }
109 function italicThis() { insertAroundCaret('<i>','</i>'); }
110 function leftThis() { insertAroundCaret('<div class="leftbox">','</div>'); }
111 function rightThis() { insertAroundCaret('<div class="rightbox">','</div>'); }
112 function alignleftThis() { insertAroundCaret('<div style="text-align: left">','</div>'); }
113 function alignrightThis() { insertAroundCaret('<div style="text-align: right">','</div>'); }
114 function aligncenterThis() { insertAroundCaret('<div style="text-align: center">','</div>'); }
115
116
117 function ahrefThis() {
118         if (document.selection)
119                 strSelection = document.selection.createRange().text;
120         else
121                 strSelection = '';
122
123         strHref = prompt("Create a link to:","http://");
124         if (strHref == null) return;
125
126         var textpre = "<a href=\"" + strHref.replace(/&/g,'&amp;') + "\">";
127         insertAroundCaret(textpre, "</a>");
128 }
129
130 function execAndUpdate(action) {
131         lastSelected.caretPos.execCommand(action);
132         updAllPreviews();
133 }
134
135
136 var nonie_FormType = 'body';
137
138 // Add media to new item
139 function addMedia() {
140         if ( typeof(medium) != 'undefined' )
141         {
142                 medium.addMedia();
143         }
144         else
145         {
146                 var mediapopup = window.open(nucleusMediaPopupURL + 'media.php','name',
147                         'status=yes,toolbar=no,scrollbars=yes,resizable=yes,width=500,height=450,top=0,left=0');
148         }
149 }
150
151 function setMediaPopupURL(url) {
152         nucleusMediaPopupURL = url;
153 }
154
155 function includeImage(collection, filename, type, width, height) {
156         if (isCaretEmpty()) {
157                 text = prompt("Text to display ?",filename);
158         } else {
159                 text = getCaretText();
160         }
161
162         // add collection name when not private collection (or editing a message that's not your)
163         var fullName;
164         if (isNaN(collection) || (nucleusAuthorId != collection)) {
165                 fullName = collection + '/' + filename;
166         } else {
167                 fullName = filename;
168         }
169
170
171         var replaceBy;
172         switch(type) {
173                 case 'popup':
174                         replaceBy = '<%popup(' +  fullName + '|'+width+'|'+height+'|' + text +')%>';
175                         break;
176                 case 'inline':
177                 default:
178                         replaceBy = '<%image(' +  fullName + '|'+width+'|'+height+'|' + text +')%>';
179         }
180
181         insertAtCaret(replaceBy);
182         updAllPreviews();
183
184 }
185
186
187 function includeOtherMedia(collection, filename) {
188         if (isCaretEmpty()) {
189                 text = prompt("Text to display ?",filename);
190         } else {
191                 text = getCaretText();
192         }
193
194         // add collection name when not private collection (or editing a message that's not your)
195         var fullName;
196         if (isNaN(collection) || (nucleusAuthorId != collection)) {
197                 fullName = collection + '/' + filename;
198         } else {
199                 fullName = filename;
200         }
201
202         var replaceBy = '<%media(' +  fullName + '|' + text +')%>';
203
204         insertAtCaret(replaceBy);
205         updAllPreviews();
206 }
207
208
209
210 // function to prevent submitting form data twice
211 var submitcount=0;
212 function checkSubmit() {
213         if (submitcount == 0) {
214                 submitcount++;
215                 return true;
216         } else {
217                 return false;
218         }
219 }
220
221
222 // code to store the caret (cursor) position of a text field/text area
223 // taken from javascript.faqts and modified
224 // http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130
225
226 // stores the caret
227 function storeCaret (textEl) {
228
229         // store caret
230         if (textEl.createTextRange)
231                 textEl.caretPos = document.selection.createRange().duplicate();
232
233         // also store lastselectedelement
234         lastSelected = textEl;
235
236         nonie_FormType = textEl.name;
237
238         scrollTop = textEl.scrollTop;
239 }
240
241 var lastSelected;
242
243  // inserts text at caret (overwriting selection)
244 function insertAtCaret (text) {
245         var textEl = lastSelected;
246         if (textEl && textEl.createTextRange && textEl.caretPos) {
247                 var caretPos = textEl.caretPos;
248                 caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
249         } else if (!document.all && document.getElementById) {
250                 mozReplace(document.getElementById('input' + nonie_FormType), text);
251                 if(scrollTop>-1) {
252                         document.getElementById('input' + nonie_FormType).scrollTop = scrollTop;
253                 }
254         } else if (textEl) {
255                 textEl.value  += text;
256         } else {
257                 document.getElementById('input' + nonie_FormType).value += text;
258                 if(scrollTop>-1) {
259                         document.getElementById('input' + nonie_FormType).scrollTop = scrollTop;
260                 }
261         }
262         updAllPreviews();
263 }
264
265  // inserts a tag around the selected text
266 function insertAroundCaret (textpre, textpost) {
267         var textEl = lastSelected;
268
269         if (textEl && textEl.createTextRange && textEl.caretPos) {
270                 var caretPos = textEl.caretPos;
271                 caretPos.text = textpre + caretPos.text + textpost;
272         } else if (!document.all && document.getElementById) {
273                 mozWrap(document.getElementById('input' + nonie_FormType), textpre, textpost);
274                 if(scrollTop>-1) {
275                         document.getElementById('input' + nonie_FormType).scrollTop = scrollTop;
276                 }
277         } else {
278                 document.getElementById('input' + nonie_FormType).value += textpre + textpost;
279                 if(scrollTop>-1) {
280                         document.getElementById('input' + nonie_FormType).scrollTop = scrollTop;
281                 }
282         }
283
284         updAllPreviews();
285 }
286
287 /* some methods to get things working in Mozilla as well */
288 function mozWrap(txtarea, lft, rgt) {
289         var selLength = txtarea.textLength;
290         var selStart = txtarea.selectionStart;
291         var selEnd = txtarea.selectionEnd;
292         if (selEnd==1 || selEnd==2) selEnd=selLength;
293         var s1 = (txtarea.value).substring(0,selStart);
294         var s2 = (txtarea.value).substring(selStart, selEnd)
295         var s3 = (txtarea.value).substring(selEnd, selLength);
296         txtarea.value = s1 + lft + s2 + rgt + s3;
297 }
298 function mozReplace(txtarea, newText) {
299         var selLength = txtarea.textLength;
300         var selStart = txtarea.selectionStart;
301         var selEnd = txtarea.selectionEnd;
302         if (selEnd==1 || selEnd==2) selEnd=selLength;
303         var s1 = (txtarea.value).substring(0,selStart);
304         var s2 = (txtarea.value).substring(selStart, selEnd)
305         var s3 = (txtarea.value).substring(selEnd, selLength);
306         txtarea.value = s1 + newText + s3;
307 }
308 function mozSelectedText() {
309         var txtarea = document.getElementById('input' + nonie_FormType);
310         var selLength = txtarea.textLength;
311         var selStart = txtarea.selectionStart;
312         var selEnd = txtarea.selectionEnd;
313         if (selEnd==1 || selEnd==2) selEnd=selLength;
314         return (txtarea.value).substring(selStart, selEnd);
315 }
316
317 function getCaretText() {
318         if (!document.all && document.getElementById)
319                 return mozSelectedText();
320         else
321                 return lastSelected.caretPos.text;
322 }
323
324 function isCaretEmpty() {
325         if (lastSelected && lastSelected.createTextRange && lastSelected.caretPos)
326                 return (lastSelected.caretPos.text == '');
327         else if (!document.all && document.getElementById)
328                 return (mozSelectedText() == '');
329         else
330                 return true;
331 }
332
333 function BtnHighlight(el) {
334         with(el.style){
335                 borderLeft="1px solid #e9e9e9";
336                 borderRight="1px solid gray";
337                 borderTop="1px solid #e9e9e9";
338                 borderBottom="1px solid gray";
339         }
340 }
341
342 function BtnNormal(el) {
343         with(el.style){
344                 padding="3px";
345                 border="1px solid #dddddd";
346         }
347 }
348