forked from yabwe/medium-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fontname.js
184 lines (147 loc) · 5.83 KB
/
fontname.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
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
(function () {
'use strict';
var FontNameForm = MediumEditor.extensions.form.extend({
name: 'fontname',
action: 'fontName',
aria: 'change font name',
contentDefault: '±', // ±
contentFA: '<i class="fa fa-font"></i>',
fonts: ['', 'Arial', 'Verdana', 'Times New Roman'],
init: function () {
MediumEditor.extensions.form.prototype.init.apply(this, arguments);
},
// Called when the button the toolbar is clicked
// Overrides ButtonExtension.handleClick
handleClick: function (event) {
event.preventDefault();
event.stopPropagation();
if (!this.isDisplayed()) {
// Get FontName of current selection (convert to string since IE returns this as number)
var fontName = this.document.queryCommandValue('fontName') + '';
this.showForm(fontName);
}
return false;
},
// Called by medium-editor to append form to the toolbar
getForm: function () {
if (!this.form) {
this.form = this.createForm();
}
return this.form;
},
// Used by medium-editor when the default toolbar is to be displayed
isDisplayed: function () {
return this.getForm().style.display === 'block';
},
hideForm: function () {
this.getForm().style.display = 'none';
this.getSelect().value = '';
},
showForm: function (fontName) {
var select = this.getSelect();
this.base.saveSelection();
this.hideToolbarDefaultActions();
this.getForm().style.display = 'block';
this.setToolbarPosition();
select.value = fontName || '';
select.focus();
},
// Called by core when tearing down medium-editor (destroy)
destroy: function () {
if (!this.form) {
return false;
}
if (this.form.parentNode) {
this.form.parentNode.removeChild(this.form);
}
delete this.form;
},
// core methods
doFormSave: function () {
this.base.restoreSelection();
this.base.checkSelection();
},
doFormCancel: function () {
this.base.restoreSelection();
this.clearFontName();
this.base.checkSelection();
},
// form creation and event handling
createForm: function () {
var doc = this.document,
form = doc.createElement('div'),
select = doc.createElement('select'),
close = doc.createElement('a'),
save = doc.createElement('a'),
option;
// Font Name Form (div)
form.className = 'medium-editor-toolbar-form';
form.id = 'medium-editor-toolbar-form-fontname-' + this.getEditorId();
// Handle clicks on the form itself
this.on(form, 'click', this.handleFormClick.bind(this));
// Add font names
for (var i = 0; i<this.fonts.length; i++) {
option = doc.createElement('option');
option.innerHTML = this.fonts[i];
option.value = this.fonts[i];
select.appendChild(option);
}
select.className = 'medium-editor-toolbar-select';
form.appendChild(select);
// Handle typing in the textbox
this.on(select, 'change', this.handleFontChange.bind(this));
// Add save buton
save.setAttribute('href', '#');
save.className = 'medium-editor-toobar-save';
save.innerHTML = this.getEditorOption('buttonLabels') === 'fontawesome' ?
'<i class="fa fa-check"></i>' :
'✓';
form.appendChild(save);
// Handle save button clicks (capture)
this.on(save, 'click', this.handleSaveClick.bind(this), true);
// Add close button
close.setAttribute('href', '#');
close.className = 'medium-editor-toobar-close';
close.innerHTML = this.getEditorOption('buttonLabels') === 'fontawesome' ?
'<i class="fa fa-times"></i>' :
'×';
form.appendChild(close);
// Handle close button clicks
this.on(close, 'click', this.handleCloseClick.bind(this));
return form;
},
getSelect: function () {
return this.getForm().querySelector('select.medium-editor-toolbar-select');
},
clearFontName: function () {
MediumEditor.selection.getSelectedElements(this.document).forEach(function (el) {
if (el.nodeName.toLowerCase() === 'font' && el.hasAttribute('face')) {
el.removeAttribute('face');
}
});
},
handleFontChange: function () {
var font = this.getSelect().value;
if (font === '') {
this.clearFontName();
} else {
this.execAction('fontName', { value: font });
}
},
handleFormClick: function (event) {
// make sure not to hide form when clicking inside the form
event.stopPropagation();
},
handleSaveClick: function (event) {
// Clicking Save -> create the font size
event.preventDefault();
this.doFormSave();
},
handleCloseClick: function (event) {
// Click Close -> close the form
event.preventDefault();
this.doFormCancel();
}
});
MediumEditor.extensions.fontName = FontNameForm;
}());