Skip to content

Commit c6db13e

Browse files
authoredApr 22, 2020
Merge pull request jdorn#724 from tohosaku/fix_removal
Fix removed static property
2 parents 258fa22 + 7ae2a34 commit c6db13e

File tree

2 files changed

+91
-27
lines changed

2 files changed

+91
-27
lines changed
 

‎src/core.js

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import { templates } from './templates/index.js'
66
import { iconlibs } from './iconlibs/index.js'
77
import { themes } from './themes/index.js'
88
import { extend, getShadowParent, hasOwnProperty } from './utilities.js'
9+
import { AbstractEditor } from './editor'
10+
import { AbstractTheme } from './theme'
11+
import { AbstractIconLib } from './iconlib'
912

1013
export class JSONEditor {
1114
constructor (element, options = {}) {
@@ -391,6 +394,9 @@ export class JSONEditor {
391394
}
392395

393396
JSONEditor.defaults = defaults
397+
JSONEditor.AbstractEditor = AbstractEditor
398+
JSONEditor.AbstractTheme = AbstractTheme
399+
JSONEditor.AbstractIconLib = AbstractIconLib
394400

395401
Object.assign(JSONEditor.defaults.themes, themes)
396402
Object.assign(JSONEditor.defaults.editors, editors)

‎tests/unit/core.spec.js

+85-27
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,96 @@
22
Stub test file
33
TODO: Write unit tests for all interfaces
44
*/
5-
import { JSONEditor } from '../../src/core';
6-
7-
const schema =
8-
{
9-
type:'object',
10-
properties:
11-
{
12-
name:{type:"string"}
5+
import { JSONEditor } from '../../src/core'
6+
7+
const schema = {
8+
type: 'object',
9+
properties: {
10+
name: { type: 'string' }
1311
}
1412
}
1513

16-
17-
describe("JSONEditor", function() {
14+
describe('JSONEditor', function () {
15+
let element
16+
let editor
1817

1918
// inject the HTML fixture for the tests
20-
beforeEach(function() {
21-
var fixture = '<div id="fixture"></div>';
19+
beforeEach(() => {
20+
const fixture = '<div id="fixture"></div>'
2221

23-
document.body.insertAdjacentHTML(
24-
'afterbegin',
25-
fixture);
26-
});
22+
document.body.insertAdjacentHTML('afterbegin', fixture)
23+
element = document.getElementById('fixture')
24+
})
2725

2826
// remove the html fixture from the DOM
29-
afterEach(function() {
30-
document.body.removeChild(document.getElementById('fixture'));
31-
});
32-
33-
it("should create an editor", function(){
34-
var element = document.getElementById('fixture');
35-
console.log("Attempting to create new JSONEditor");
36-
var editor = new JSONEditor(element, {schema:schema });
37-
expect(editor).toBeTruthy();
38-
});
39-
})
27+
afterEach(() => {
28+
document.body.removeChild(document.getElementById('fixture'))
29+
})
30+
31+
it('should create an editor', () => {
32+
console.log('Attempting to create new JSONEditor')
33+
editor = new JSONEditor(element, { schema: schema })
34+
expect(editor).toBeTruthy()
35+
})
36+
37+
it('can add custom iconlib', () => {
38+
const customMapping = {
39+
collapse: 'key-down',
40+
expand: 'key-right',
41+
delete: 'trash',
42+
edit: 'edit',
43+
add: 'add',
44+
subtract: 'minus',
45+
cancel: 'check-circled',
46+
save: 'create-file',
47+
moveup: 'arrow-up',
48+
moveright: 'arrow-right',
49+
movedown: 'arrow-down',
50+
moveleft: 'arrow-left',
51+
copy: 'copy',
52+
clear: 'close',
53+
time: 'time',
54+
calendar: 'calendar',
55+
edit_properties: 'settings'
56+
}
57+
const customIconPrefix = 'mr-1 text-xl ki-'
58+
59+
class CustomIconLib extends JSONEditor.AbstractIconLib {
60+
constructor () {
61+
super()
62+
this.mapping = customMapping
63+
this.icon_prefix = customIconPrefix
64+
}
65+
}
66+
JSONEditor.defaults.iconlibs.myCustom = CustomIconLib
67+
editor = new JSONEditor(element, { schema: schema, iconlib: 'myCustom' })
68+
expect(editor.iconlib.icon_prefix).toBe(customIconPrefix)
69+
})
70+
71+
it('can add custom theme', () => {
72+
class CustomTheme extends JSONEditor.AbstractTheme {}
73+
CustomTheme.rules = { '.slider:focus': 'box-shadow:none' }
74+
JSONEditor.defaults.themes.myCustom = CustomTheme
75+
editor = new JSONEditor(element, { schema: schema, theme: 'myCustom' })
76+
expect(editor.theme).toBeTruthy()
77+
})
78+
79+
it('can add custom editor', () => {
80+
class CustomEditor extends JSONEditor.AbstractEditor {}
81+
JSONEditor.defaults.editors.custom = CustomEditor
82+
JSONEditor.defaults.resolvers.unshift((schema) => {
83+
if (schema.type === 'object' && schema.format === 'custom') {
84+
return 'custom'
85+
}
86+
})
87+
const schema = {
88+
type: 'object',
89+
format: 'custom',
90+
properties: {
91+
name: { type: 'string' }
92+
}
93+
}
94+
editor = new JSONEditor(element, { schema: schema })
95+
expect(editor).toBeTruthy()
96+
})
97+
})

0 commit comments

Comments
 (0)
Please sign in to comment.