edit: generic save icon
[minimedit.git] / edit.js
1 CKEDITOR.plugins.add('inlinesave', {
2         init: function(editor) {
3                 editor.addCommand( 'inlinesave', {
4                         exec: function (editor) {
5                                 var pagename = window.location.pathname.replace(/\.html$/, '').replace(/\/$/, '/index');
6                                 var data = 'body='+encodeURIComponent(editor.getData());
7                                 ajaxpost = new XMLHttpRequest();
8                                 ajaxpost.open('POST', '/edit.php'+pagename, true);
9                                 ajaxpost.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
10                                 ajaxpost.onreadystatechange = function () {
11                                         if (ajaxpost.readyState != 4)
12                                                 return; // not done yet
13                                         if (ajaxpost.status != 200)
14                                                 alert('Foutcode '+ajaxpost.status+' bij opslaan: '+ajaxpost.responseText);
15                                         else
16                                                 alert('Pagina is goed opgeslagen');
17                                 };
18                                 ajaxpost.send(data);
19                         },
20                 });
21                 editor.ui.addButton( 'Inlinesave', {
22                         command: 'inlinesave',
23                         label: editor.lang.save.toolbar,
24                         icon: 'save',
25                 });
26         }
27 });
28
29 CKEDITOR.on('dialogDefinition', function (event) {
30         if (event.data.name === 'table') {
31                 // override initial attribute values
32                 var infoTab = event.data.definition.getContents('info');
33                 infoTab.get('txtWidth').default = '';
34                 infoTab.get('txtBorder').default = '0';
35                 infoTab.get('txtCellSpace').default = '';
36                 infoTab.get('txtCellPad').default = '';
37         }
38 });
39
40 CKEDITOR.on('instanceCreated', function (event) {
41         var editor = event.editor;
42         editor.on('configLoaded', function () {
43                 var config = editor.config;
44                 config.language = 'nl';
45                 config.extraPlugins = 'sourcedialog,inlinesave';
46                 config.format_tags = 'h2;h3;h4;p';
47                 config.allowedContent = true;
48                 config.entities = false; // keep unicode
49                 config.filebrowserImageUploadUrl = '/edit.php?type=img';
50                 config.forcePasteAsPlainText = true;
51                 config.toolbar = [
52                         ['Inlinesave', '-', 'ShowBlocks', 'Sourcedialog', '-', 'Undo', 'Redo'],
53                         ['Format'],
54                         ['BulletedList', 'NumberedList', '-', 'Blockquote'],
55                         ['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', '-', 'Link'],
56                         ['HorizontalRule', 'Table', 'Image'],
57                 ];
58
59                 config.disableObjectResizing = true;
60                 document.execCommand('enableObjectResizing', false, false); // workaround in inline mode; ff bug?
61         });
62 });
63
64         CKEDITOR.on('instanceReady', function (event) {
65                 var editor = event.editor;
66                 var writer = editor.dataProcessor.writer;
67                 writer.selfClosingEnd = '>';
68                 writer.setRules( 'p', {
69                         breakAfterOpen: true,
70                         breakBeforeClose: true,
71                 });
72         });
73
74 var pagebody = document.getElementsByClassName('article')[0];
75 pagebody.setAttribute('contenteditable', 'true');
76
77 document.body.className = 'edit';
78