-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-editor.html
199 lines (181 loc) · 8.51 KB
/
content-editor.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<script>
ContentEditorBehavior = {
properties: {
inContentMode: {
type: Boolean,
value: false,
notify: true
},
parentId: {
type: String,
notify: true
},
path: {
type: String,
value: '',
notify: true
},
usercontent: {
type: Object,
notify: true,
reflectToAttribute: false
}
},
observers: [
'_usercontentChanged(usercontent)'
],
ready: function() {
this._updateContent();
},
/*
* This add the already available content to the html of the divs
*/
_addContentToHTML: function(contentId) {
if(!!this.usercontent && !!this.usercontent[contentId]) {
this.$$('[content-id='+ contentId +']').innerHTML = this.usercontent[contentId];
}
},
_handleEmptyUserContent: function(contentId, contentAttributes) {
this.usercontent = this.usercontent || {};
this.usercontent[contentId] = this.usercontent[contentId] || {};
var attributes = contentAttributes.split(','),
obj = {};
for(var i=0; i< attributes.length; i++) {
attributes[i] = attributes[i].trim();
obj[attributes[i]] = this.usercontent[contentId][attributes[i]] || attributes[i];
}
this.set('usercontent.' + contentId, obj);
},
// Updates attributes to use values from usercontent
_addContentToAttr: function(contentId, contentAttributes) {
if(!this.usercontent || !this.usercontent[contentId]) {
return;
}
var attributes = contentAttributes.split(',');
for(var i=0; i< attributes.length; i++) {
attributes[i] = attributes[i].trim();
if(!!this.usercontent[contentId][attributes[i]]) {
this.set(attributes[i], this.usercontent[contentId][attributes[i]]);
}
}
},
_usercontentChanged: function() {
if(this.inContentMode) {
return;
}
this._updateContent();
},
// Add click event to attributes that can be changed via usercontent
_addAttributeEditorToElement: function(selector, contentId, contentAttributes) {
let attributeEditor = this.create('attribute-editor',{
usercontent: this.usercontent[contentId],
path: this.path,
contentId: contentId
});
Polymer.dom(this.root).appendChild(attributeEditor);
attributeEditor.addEventListener('value-changed', (e, detail) => {
this.set('usercontent.' + e.detail.contentId, e.detail.usercontent);
this._addContentToAttr(contentId, contentAttributes);
});
},
_updateContent: function() {
var contentDivs = Polymer.dom(this.root).querySelectorAll('[is-content]');
for(var i = 0; i < contentDivs.length; i++) {
var selector = '[parent-id=' + this.parentId + '] [content-id=' + contentDivs[i].getAttribute('content-id') + ']',
mode = contentDivs[i].getAttribute('is-content'),
contentId = contentDivs[i].getAttribute('content-id'),
contentAttributes = contentDivs[i].getAttribute('content-attr');
if(mode === 'attr') {
this._handleEmptyUserContent(contentId, contentAttributes);
this._addContentToAttr(contentId, contentAttributes);
} else {
this._addContentToHTML(contentId);
}
if(this.inContentMode) {
if(mode === 'attr') {
this._addAttributeEditorToElement(selector, contentId, contentAttributes);
} else if(mode == 'inline') {
tinymce.init({
selector: selector,
inline: true,
toolbar: 'undo redo',
menubar: false,
init_instance_callback: (editor) => {
editor.on('save', (e) => {
this.fire('iron-signal', {
name: 'page-operation',
data: {
operation: 'save',
path: this.path,
contentnode: editor.getBody().getAttribute('content-id'),
value: editor.getContent()
}
});
});
}
});
} else if(mode == 'wsywig') {
tinymce.init({
selector: selector,
height: 200,
menubar: false,
plugins: [
'advlist autolink lists link image charmap print preview anchor',
'searchreplace visualblocks code fullscreen',
'insertdatetime media table contextmenu paste code codesample'
],
codesample_languages: [
{text: 'HTML/XML', value: 'markup'},
{text: 'JavaScript', value: 'javascript'},
{text: 'CSS', value: 'css'},
{text: 'PHP', value: 'php'},
{text: 'Ruby', value: 'ruby'},
{text: 'Python', value: 'python'},
{text: 'Java', value: 'java'},
{text: 'C', value: 'c'},
{text: 'C#', value: 'csharp'},
{text: 'C++', value: 'cpp'}
],
init_instance_callback: (editor) => {
editor.on('save', (e) => {
this.fire('iron-signal', {
name: 'page-operation',
data: {
operation: 'save',
path: this.path,
contentnode: contentId,
value: editor.getContent()
}
});
});
},
toolbar: 'undo redo | insert | styleselect | bold italic | fontsizeselect alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image codesample'
});
} else if(mode == 'inline-more') {
tinymce.init({
selector: selector,
theme: 'inlite',
plugins: 'image table link paste contextmenu textpattern autolink',
insert_toolbar: 'quickimage quicktable',
selection_toolbar: 'bold italic | quicklink h2 h3 blockquote',
inline: true,
init_instance_callback: (editor) => {
editor.on('save', (e) => {
this.fire('iron-signal', {
name: 'page-operation',
data: {
operation: 'save',
path: this.path,
contentnode: contentId,
value: editor.getContent()
}
});
});
}
});
}
}
}
}
}
</script>