forked from pkp/texture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.js
113 lines (101 loc) · 2.96 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('substance'), require('substance-texture')) :
typeof define === 'function' && define.amd ? define(['substance', 'substance-texture'], factory) :
(factory(global.window.substance,global.window.texture));
}(this, (function (substance,substanceTexture) {
window.addEventListener('load', () => {
substance.substanceGlobals.DEBUG_RENDERING = substance.platform.devtools;
let app = OJSTextureEditor.mount({}, window.document.body);
// put the archive and some more things into global scope, for debugging
setTimeout(() => {
window.app = app;
}, 500);
});
// This uses a monkey-patched VfsStorageClient that checks immediately
// if the stored data could be loaded again, or if there is a bug in
// Textures exporter
class OJSTextureEditor extends substanceTexture.TextureWebApp {
didMount() {
this._init();
substance.DefaultDOMElement.getBrowserWindow().on('keydown', this._keyDown, this);
}
dispose() {
substance.DefaultDOMElement.getBrowserWindow().off(this);
}
getInitialState() {
return {
archive: undefined,
error: undefined
}
}
_init() {
let storageUrl = document.querySelector('meta[name=jobId').getAttribute('content');
let storage = new substance.HttpStorageClient(storageUrl);
let buffer = new substance.InMemoryDarBuffer();
let archive = new substanceTexture.TextureArchive(storage, buffer);
window.archive = archive
window.buffer = buffer
let promise = archive.load('')
.then(() => {
setTimeout(() => {
this.setState({archive});
}, 0);
});
if (!substance.platform.devtools) {
promise.catch(error => {
console.error(error);
this.setState({error});
});
}
}
_keyDown(event) {
if ( event.key === 'Dead' ) return
// Handle custom keyboard shortcuts globally
let archive = this.state.archive;
if (archive) {
let manuscriptSession = archive.getEditorSession('manuscript');
let handled = manuscriptSession.keyboardManager.onKeydown(event);
if (!handled) {
let key = substance.parseKeyEvent(event);
// CommandOrControl+S
if (key === 'META+83' || key === 'CTRL+83') {
this._save();
event.preventDefault();
}
}
}
}
_save() {
this.state.archive.save().then(() => {
console.info('successfully saved');
}).catch(err => {
console.error(err);
});
}
render($$) {
let el = $$('div').addClass('sc-app');
let archive = this.state.archive;
let err = this.state.error;
if (archive) {
el.append(
$$(substanceTexture.Texture, {archive})
);
} else if (err) {
if (err.type === 'jats-import-error') {
el.append(
$$(substanceTexture.JATSImportDialog, { errors: err.detail })
);
} else {
el.append(
'ERROR:',
err.message
);
}
} else {
// LOADING...
}
return el
}
}
})));
//# sourceMappingURL=./editor.js.map