forked from mermaid-js/mermaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.js
47 lines (36 loc) · 1.17 KB
/
editor.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
function decodeHTMLEntities (str) {
if(str && typeof str === 'string') {
// strip script/html tags
element = document.querySelector('.editor');
str = str.replace(/<script[^>]*>([\S\s]*?)<\/script>/gmi, '');
str = str.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/gmi, '');
element.innerHTML = str;
str = element.textContent;
element.textContent = '';
}
return str;
}
var mermaidEditor = {
$ : document.querySelector,
textField : '',
submit : '',
graph : '',
init: function () {
document.querySelector('.button').addEventListener('click', function () {
mermaidEditor.update();
}.bind(this));
},
update: function () {
var txt = document.querySelector('.editor').value;
txt = txt.replace(/>/g,'>');
txt = txt.replace(/</g,'<');
txt = decodeHTMLEntities(txt).trim();
document.querySelector('.mermaid').innerHTML = txt;
mermaid.init();
document.querySelector('.editor').value = txt;
}
};
document.addEventListener('DOMContentLoaded', function () {
mermaidEditor.init();
}, false);
exports = mermaidEditor;