-
Notifications
You must be signed in to change notification settings - Fork 2
/
umbraco-ace-editor.user.js
149 lines (136 loc) · 4.16 KB
/
umbraco-ace-editor.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// ==UserScript==
// @name Parks Canada Umbraco Ace Editor
// @namespace https://greasyfork.org/users/649
// @version 1.0.1
// @description Use the Ace Editor when editing things on Umbraco on Parks Canada intranet
// @author Adrien Pyke
// @match *://*.apca2.gc.ca/umbraco_client/tinymce3/themes/umbraco/source_editor.htm
// @match *://intranet2/umbraco_client/tinymce3/themes/umbraco/source_editor.htm
// @grant unsafeWindow
// @grant GM_addStyle
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// @require https://cdn.jsdelivr.net/gh/kufii/My-UserScripts@22210afba13acf7303fc91590b8265faf3c7eda7/libs/gm_config.js
// @require https://cdn.jsdelivr.net/gh/fuzetsu/userscripts@ec863aa92cea78a20431f92e80ac0e93262136df/wait-for-elements/wait-for-elements.js
// @require https://unpkg.com/[email protected]/standalone.js
// @require https://unpkg.com/[email protected]/parser-html.js
// ==/UserScript==
/* global prettier, prettierPlugins */
(() => {
'use strict';
const SCRIPT_NAME = 'Parks Canada Umbraco Ace Editor';
const Util = {
log(...args) {
args.unshift(`%c${SCRIPT_NAME}:`, 'font-weight: bold;color: #233c7b;');
console.log(...args);
},
q(query, context = document) {
return context.querySelector(query);
},
qq(query, context = document) {
return Array.from(context.querySelectorAll(query));
},
addScript(src, onload) {
const s = document.createElement('script');
s.onload = onload;
s.src = src;
document.body.appendChild(s);
},
addScriptText(code, onload) {
const s = document.createElement('script');
s.onload = onload;
s.textContent = code;
document.body.appendChild(s);
},
appendAfter(elem, elemToAppend) {
elem.parentNode.insertBefore(elemToAppend, elem.nextElementSibling);
}
};
const Config = GM_config([
{
key: 'theme',
label: 'Theme',
default: 'monokai',
type: 'dropdown',
values: [
'ambiance',
'chaos',
'chrome',
'clouds',
'clouds_midnight',
'cobalt',
'crimson_editor',
'dawn',
'dreamweaver',
'eclipse',
'github',
'gob',
'idle_fingers',
'iplastic',
'katzenmilch',
'kr_theme',
'kuroir',
'merbivore',
'merbivore_soft',
'mono_industrial',
'monokai',
'solarized_dark',
'solarized_light',
'sqlserver',
'terminal',
'textmate',
'tomorrow',
'tomorrow_night',
'tomorrow_night_blue',
'tomorrow_night_bright',
'tomorrow_night_eighties',
'twilight',
'vibrant_ink',
'xcode'
]
}
]);
waitForElems({
sel: '#htmlSource',
stop: true,
onmatch(textArea) {
textArea.value = prettier.format(textArea.value, {
parser: 'html',
plugins: prettierPlugins
});
const wrapper = document.createElement('div');
wrapper.id = 'ace';
wrapper.textContent = textArea.value;
Util.appendAfter(textArea, wrapper);
GM_addStyle(`
.ace_editor {
height: 515px;
}
#htmlSource {
display: none;
}
`);
Util.addScript(
'https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.14/ace.min.js',
() => {
const editor = unsafeWindow.ace.edit('ace');
editor.setTheme(`ace/theme/${Config.load().theme}`);
editor.getSession().setMode('ace/mode/html');
editor.resize();
unsafeWindow.aceEditor = editor;
unsafeWindow.originalTextArea = textArea;
Util.addScriptText(
'aceEditor.getSession().on("change", () => originalTextArea.value = aceEditor.getValue())'
);
GM_registerMenuCommand(SCRIPT_NAME + ' Settings', () =>
Config.setup(editor)
);
Config.onchange = (key, value) =>
editor.setTheme(`ace/theme/${value}`);
Config.oncancel = cfg => editor.setTheme(`ace/theme/${cfg.theme}`);
}
);
}
});
})();