This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathfontsizeediting.js
272 lines (219 loc) · 8.04 KB
/
fontsizeediting.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
* @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md.
*/
import FontSizeEditing from './../../src/fontsize/fontsizeediting';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtesteditor';
import { getData as getModelData, setData as setModelData } from '../../../ckeditor5-engine/src/dev-utils/model';
describe( 'FontSizeEditing', () => {
let editor, doc;
beforeEach( () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing, Paragraph ]
} )
.then( newEditor => {
editor = newEditor;
doc = editor.document;
} );
} );
afterEach( () => {
editor.destroy();
} );
it( 'should set proper schema rules', () => {
expect( doc.schema.check( { name: '$inline', attributes: 'fontSize', inside: '$block' } ) ).to.be.true;
expect( doc.schema.check( { name: '$inline', attributes: 'fontSize', inside: '$clipboardHolder' } ) ).to.be.true;
} );
describe( 'config', () => {
describe( 'default value', () => {
it( 'should be set', () => {
expect( editor.config.get( 'fontSize.items' ) ).to.deep.equal( [ 'tiny', 'small', 'normal', 'big', 'huge' ] );
} );
} );
} );
describe( 'configuredItems', () => {
it( 'should discard falsy values', () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing ],
fontSize: {
items: [ () => {}, 'normal', 'unknown' ]
}
} )
.then( newEditor => {
editor = newEditor;
const plugin = editor.plugins.get( FontSizeEditing );
expect( plugin.configuredItems ).to.deep.equal( [] );
} );
} );
it( 'should pass through object definition', () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing ],
fontSize: {
items: [ { label: 'My Size', model: 'my-size', view: { name: 'span', styles: 'font-size: 12em;' } } ]
}
} )
.then( newEditor => {
editor = newEditor;
const plugin = editor.plugins.get( FontSizeEditing );
expect( plugin.configuredItems ).to.deep.equal( [
{
label: 'My Size',
model: 'my-size',
view: { name: 'span', styles: 'font-size: 12em;' }
}
] );
} );
} );
describe( 'named presets', () => {
it( 'should return defined presets', () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing ],
fontSize: {
items: [ 'tiny', 'small', 'normal', 'big', 'huge' ]
}
} )
.then( newEditor => {
editor = newEditor;
const plugin = editor.plugins.get( FontSizeEditing );
expect( plugin.configuredItems ).to.deep.equal( [
{ label: 'Tiny', model: 'text-tiny', view: { name: 'span', classes: 'text-tiny' } },
{ label: 'Small', model: 'text-small', view: { name: 'span', classes: 'text-small' } },
{ label: 'Big', model: 'text-big', view: { name: 'span', classes: 'text-big' } },
{ label: 'Huge', model: 'text-huge', view: { name: 'span', classes: 'text-huge' } }
] );
} );
} );
} );
describe( 'numeric presets', () => {
it( 'should return generated presets', () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing ],
fontSize: {
items: [ '10', 12, 'normal', '14.1', 18.3 ]
}
} )
.then( newEditor => {
editor = newEditor;
const plugin = editor.plugins.get( FontSizeEditing );
expect( plugin.configuredItems ).to.deep.equal( [
{ label: '10', model: '10', stopValue: 10, view: { name: 'span', styles: { 'font-size': '10px' } } },
{ label: '12', model: '12', stopValue: 12, view: { name: 'span', styles: { 'font-size': '12px' } } },
{ label: '14', model: '14', stopValue: 14, view: { name: 'span', styles: { 'font-size': '14px' } } },
{ label: '18', model: '18', stopValue: 18, view: { name: 'span', styles: { 'font-size': '18px' } } }
] );
} );
} );
} );
} );
describe( 'editing pipeline conversion', () => {
beforeEach( () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing, Paragraph ],
fontSize: {
items: [ 'tiny', 'normal', 18, {
label: 'My setting',
model: 'my',
view: {
name: 'mark',
styles: 'font-size: 30px',
classes: 'my-style'
}
} ]
}
} )
.then( newEditor => {
editor = newEditor;
doc = editor.document;
} );
} );
it( 'should discard unknown fontSize attribute values', () => {
setModelData( doc, '<paragraph>f<$text fontSize="foo-bar">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>foo</p>' );
} );
it( 'should convert fontSize attribute to predefined named preset', () => {
setModelData( doc, '<paragraph>f<$text fontSize="text-tiny">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<span class="text-tiny">o</span>o</p>' );
} );
it( 'should convert fontSize attribute to predefined pixel size preset', () => {
setModelData( doc, '<paragraph>f<$text fontSize="18">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<span style="font-size:18px;">o</span>o</p>' );
} );
it( 'should convert fontSize attribute from user defined settings', () => {
setModelData( doc, '<paragraph>f<$text fontSize="my">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<mark class="my-style" style="font-size:30px;">o</mark>o</p>' );
} );
} );
describe( 'data pipeline conversions', () => {
beforeEach( () => {
return VirtualTestEditor
.create( {
plugins: [ FontSizeEditing, Paragraph ],
fontSize: {
items: [
'tiny',
'normal',
18,
{
label: 'My setting',
model: 'my',
view: {
name: 'mark',
styles: { 'font-size': '30px' },
classes: 'my-style'
}
},
{
label: 'Big multiple classes',
model: 'big-multiple',
// TODO: define ViewElementConfigDefinition interface (wheter strings or arrays to use)?
view: {
name: 'span',
classes: [ 'foo', 'foo-big' ]
}
}
]
}
} )
.then( newEditor => {
editor = newEditor;
doc = editor.document;
} );
} );
it( 'should convert from element with defined class', () => {
const data = '<p>f<span class="text-tiny foo bar">o</span>o</p>';
editor.setData( data );
expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="text-tiny">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<span class="text-tiny">o</span>o</p>' );
} );
it( 'should convert from element with defined multiple classes', () => {
const data = '<p>f<span class="foo foo-big bar">o</span>o</p>';
editor.setData( data );
expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="big-multiple">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<span class="foo foo-big">o</span>o</p>' );
} );
it( 'should convert from element with defined style', () => {
const data = '<p>f<span style="font-size:18px;">o</span>o</p>';
editor.setData( data );
expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="18">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( data );
} );
it( 'should convert from element with defined style when with other styles', () => {
const data = '<p>f<span style="font-family: serif;font-size: 18px">o</span>o</p>';
editor.setData( data );
expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="18">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( '<p>f<span style="font-size:18px;">o</span>o</p>' );
} );
it( 'should convert from user defined element', () => {
const data = '<p>f<mark class="my-style" style="font-size:30px;">o</mark>o</p>';
editor.setData( data );
expect( getModelData( doc ) ).to.equal( '<paragraph>[]f<$text fontSize="my">o</$text>o</paragraph>' );
expect( editor.getData() ).to.equal( data );
} );
} );
} );