This repository was archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
111 lines (84 loc) · 3.37 KB
/
index.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
/**
* Timer plugin.
*
* Defined various plugin defautl values and loads the timer block and timer component provided by the plugin
*/
import grapesjs from 'grapesjs';
import loadComponents from './components';
import loadBlocks from './blocks';
import loadCommands from './commands';
import loadPanels from './panels';
import parserHtmlCaseSensitive from './ParserHtmlCaseSensitive';
import parserHtmlOrig from './ParserHtmlOrig';
import {
timerRef,
timerPluginRef
} from './consts';
export default function addTimerPlugin(setHtmlString, setCssString) {
console.log(addTimerPlugin, [timerPluginRef, setHtmlString, setCssString]);
debugger;
grapesjs.plugins.add(timerPluginRef, (editor, opts = {}) => {
let c = opts;
let defaults = {
blocks: [timerRef],
// Label in block
blockLabel: 'Timer',
// Category in block
blockCategory: 'Extra',
// Date input type, eg, 'date', 'datetime-local'
dateInputType: 'date',
// Default style
defaultStyle: true,
// Default start time, eg. '2018-01-25 00:00'. Can be configured at runtime.
startTime: '',
// Label of a timer. Can be configured at runtime.
timerLabel: 'Timer',
// Display labels for day, hours, minutes, seconds? Can be configured at runtime.
displayLabels: false,
// Days label text used in component
labelDays: 'days',
// Hours label text used in component
labelHours: 'hours',
// Minutes label text used in component
labelMinutes: 'minutes',
// Seconds label text used in component
labelSeconds: 'seconds',
setHtmlString: setHtmlString,
setCssString: setCssString
};
// Load defaults
for (let name in defaults) {
if (!(name in c))
c[name] = defaults[name];
}
// Add components
loadComponents(editor, c);
// Add components
loadBlocks(editor, c);
// Load commands
loadCommands(editor, c);
// Load panels
loadPanels(editor, c);
// HACK: we need to replace the default HTML parser with our own, so that things won't be lowercased
// grapesjs doesn't have a public API to provide a custom html parser
const em = editor.getModel();
const emConf = em.get('Config');
// This needs to be handset (in GrapesJS it comes from parser/config/config.js)
emConf.textTags = ['br', 'b', 'i', 'u', 'a', 'ul', 'ol'];
em.get('Parser').parserHtml = parserHtmlCaseSensitive(emConf);
//em.get('Parser').parserHtml = parserHtmlOrig(emConf);
em.get('Parser').parseHtml = (str) => {
const pHtml = em.get('Parser').parserHtml;
//pHtml.compTypes = em ? em.get('DomComponents').getTypes() : compTypes;
pHtml.compTypes = em.get('DomComponents').getTypes();
let res = pHtml.parse(str, em.get('Parser').parserCss);
return res;
};
// Show the blocks panel by default
editor.on("load", () => {
const openBl = editor.Panels.getButton('views', 'open-blocks');
openBl && openBl.set('active', 1);
//editor.runCommand('open-blocks');
});
});
}