-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
visualEditorPage.js
82 lines (74 loc) · 1.73 KB
/
visualEditorPage.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
"use strict";
define(
[ 'src/VisualEditor',
'src/urlUtils',
'src/storage',
'src/dataInstance',
'src/debug',
'../src/styleUtils',
'../src/errorHandler',
'jquery.ui'
],
function (
CSLEDIT_VisualEditor,
CSLEDIT_urlUtils,
CSLEDIT_storage,
CSLEDIT_data,
debug,
styleUtils,
errorHandler
) {
var cslEditor;
// Use FileAPI to read files from local file system
var loadCSL = function () {
var dialog = $('<div title="Load CSL Style">' +
'<p>Choose a CSL file to load<\/p>' +
'<input type="file" \/>' +
'<\/div>');
dialog.find('input[type=file]').change(function (event) {
var file = event.target.files[0],
reader = new FileReader();
reader.onload = function (event) {
cslEditor.setCslCode(event.target.result);
dialog.dialog("destroy");
};
reader.readAsText(file);
});
dialog.dialog({modal : true});
};
var initVisualEditorDemo = function () {
$(document).ready(function () {
var styleMenuConfiguration = [];
styleMenuConfiguration[0] = {
'label' : 'New Style',
'name' : 'menuNewStyle',
'func' : undefined
};
styleMenuConfiguration[1] = {
'label' : 'Load Style',
'func' : loadCSL
};
styleMenuConfiguration[2] = {
'label' : 'Save Style',
'func' : function() {
if (!cslEditor.conformStyleToRepoConventions()) {
return;
}
styleUtils.saveCsl(
CSLEDIT_data,
cslEditor.getStyleId(),
"This style was edited with the Visual CSL Editor (" + window.location.href + ")"
);
}
}
cslEditor = new CSLEDIT_VisualEditor('#visualEditorContainer',
{
styleMenu : styleMenuConfiguration
});
});
};
initVisualEditorDemo();
return {
cslEditor : cslEditor
};
});