-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathnormalizetoolbarconfig.ts
64 lines (59 loc) · 1.26 KB
/
normalizetoolbarconfig.ts
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
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
import type { ToolbarConfig, ToolbarConfigItem } from '@ckeditor/ckeditor5-core';
/**
* @module ui/toolbar/normalizetoolbarconfig
*/
/**
* Normalizes the toolbar configuration (`config.toolbar`), which:
*
* * may be defined as an `Array`:
*
* ```
* toolbar: [ 'heading', 'bold', 'italic', 'link', ... ]
* ```
*
* * or an `Object`:
*
* ```
* toolbar: {
* items: [ 'heading', 'bold', 'italic', 'link', ... ],
* removeItems: [ 'bold' ],
* ...
* }
* ```
*
* * or may not be defined at all (`undefined`)
*
* and returns it in the object form.
*
* @param config The value of `config.toolbar`.
* @returns A normalized toolbar config object.
*/
export default function normalizeToolbarConfig(
config: ToolbarConfig | undefined
): {
items: Array<ToolbarConfigItem>;
removeItems: Array<string>;
shouldNotGroupWhenFull?: boolean;
icon?: string;
} {
if ( Array.isArray( config ) ) {
return {
items: config,
removeItems: []
};
}
if ( !config ) {
return {
items: [],
removeItems: []
};
}
return Object.assign( {
items: [],
removeItems: []
}, config );
}