forked from eclipsesource/jsonforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.registry.test.ts
62 lines (56 loc) · 2.32 KB
/
styling.registry.test.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
import './helpers/setup';
import { test } from 'ava';
import { StylingRegistryImpl } from '../src/core/styling.registry';
test('Styling registry allows to register a style', t => {
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.register({name: 'button', classNames: ['btn', 'btn-primary']});
t.deepEqual(stylingRegistry.get('button'), ['btn', 'btn-primary']);
});
test('Styling registry allows to register a style by specifying name and classNames', t => {
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.register('button', ['btn', 'btn-primary']);
t.deepEqual(stylingRegistry.get('button'), ['btn', 'btn-primary']);
});
test('Styling registry allows multiple classNames to be registered at once', t => {
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.registerMany([
{
name: 'button',
classNames: ['btn', 'btn-primary']
},
{
name: 'select',
classNames: ['custom-select']
}
]);
t.deepEqual(stylingRegistry.get('button'), ['btn', 'btn-primary']);
t.deepEqual(stylingRegistry.get('select'), ['custom-select']);
});
test('Styling registry allows a style to be de-registered', t => {
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.register('button', ['btn', 'btn-primary']);
stylingRegistry.deregister('button');
t.deepEqual(stylingRegistry.get('button'), []);
});
test('Styling registry should apply classNames to a given element', t => {
const button = document.createElement('button');
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.register('button', ['btn', 'btn-primary']);
stylingRegistry.addStyle(button, 'button');
t.is(button.classList.length, 2);
t.true(button.classList.contains('btn'));
t.true(button.classList.contains('btn-primary'));
});
test('Styling registry should overwrite any existing style', t => {
const button = document.createElement('button');
const stylingRegistry = new StylingRegistryImpl();
stylingRegistry.register('button', ['btn', 'btn-primary']);
stylingRegistry.addStyle(button, 'button');
// reset style
button.classList.remove('btn');
button.classList.remove('btn-primary');
stylingRegistry.register('button', ['something-else']);
stylingRegistry.addStyle(button, 'button');
// t.true(false);
t.is(button.classList.length, 1);
});