-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy patheditor.js
91 lines (73 loc) · 1.98 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
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
import ClassicBlockTransformer from './transform/ClassicBlockTransformer';
import MigrationClient from './transform/MigrationClient';
let loaded = false;
/**
* ConvertToBlocksSupport connects the JS implementation of
* Convert to Blocks to Gutenberg JS.
*/
class ConvertToBlocksEditorSupport {
/**
* Returns the singleton instance of ConvertToBlocksEditorSupport.
*
* @returns {ConvertToBlocksEditorSupport}
*/
static getInstance() {
if (!this.instance) {
this.instance = new ConvertToBlocksEditorSupport();
}
return this.instance;
}
/**
* Activates the ConvertToBlocksEditorSupport
*/
enable() {
document.addEventListener('DOMContentLoaded', this.didBlockEditorLoad.bind(this));
}
/**
* Executes the classic to block transform.
*/
didBlockEditorLoad() {
const { registerPlugin } = window.wp.plugins;
const transformer = new ClassicBlockTransformer();
if (!registerPlugin) {
return;
}
registerPlugin('convert-to-blocks', {
render: () => {
// Don't render more than once, to avoid triggering multiple migrations
if (loaded) {
return null;
}
loaded = true;
// This delay allows Gutenberg to initialize legacy content into freeform blocks
setTimeout(() => {
const result = transformer.execute();
const config = window.convert_to_blocks_agent || false;
// if no migration config, then ignore this request
if (!config) {
return null;
}
const client = new MigrationClient(config);
// if no blocks transformed, then we can jump to the next post
if (!result) {
client.next();
return null;
}
const saveDelay = config?.agent?.save_delay || 0;
if (saveDelay > 0) {
setTimeout(() => {
client.save();
}, saveDelay);
} else {
client.save();
}
return null;
}, 500);
return null;
},
});
}
}
const support = ConvertToBlocksEditorSupport.getInstance();
support.enable();
export default ConvertToBlocksEditorSupport;