2022-03-03 23:36:30 +00:00
|
|
|
import { loadNodeIcon } from '../lib/loader/node-loader';
|
2022-03-02 17:55:03 +00:00
|
|
|
|
|
|
|
describe('Testing loadIcon with @iconify-json/flat-color-icons>', () => {
|
|
|
|
test('loadIcon works', async () => {
|
2022-03-03 23:36:30 +00:00
|
|
|
const result = await loadNodeIcon('flat-color-icons', 'up-right');
|
2022-03-02 17:55:03 +00:00
|
|
|
expect(result).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('loadIcon adds xmlns:xlink', async () => {
|
2022-03-14 14:39:40 +00:00
|
|
|
const result = await loadNodeIcon('flat-color-icons', 'up-right', {
|
|
|
|
addXmlNs: true,
|
|
|
|
});
|
2022-03-02 17:55:03 +00:00
|
|
|
expect(result).toBeTruthy();
|
2022-03-04 16:37:21 +00:00
|
|
|
expect(result && result.indexOf('xmlns:xlink=') > -1).toBeTruthy();
|
2022-03-02 17:55:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('loadIcon with customize with default style and class', async () => {
|
2022-03-03 23:36:30 +00:00
|
|
|
const result = await loadNodeIcon('flat-color-icons', 'up-right', {
|
2022-03-02 17:55:03 +00:00
|
|
|
defaultStyle: 'margin-top: 1rem;',
|
|
|
|
defaultClass: 'clazz',
|
|
|
|
customizations: {
|
|
|
|
customize(props) {
|
|
|
|
props.width = '2em';
|
|
|
|
props.height = '2em';
|
|
|
|
return props;
|
|
|
|
},
|
2022-03-04 16:37:21 +00:00
|
|
|
},
|
2022-03-02 17:55:03 +00:00
|
|
|
});
|
|
|
|
expect(result).toBeTruthy();
|
2022-03-04 16:37:21 +00:00
|
|
|
expect(result && result.indexOf('margin-top: 1rem;') > -1).toBeTruthy();
|
|
|
|
expect(result && result.indexOf('class="clazz"') > -1).toBeTruthy();
|
|
|
|
expect(result && result.indexOf('width="2em"') > -1).toBeTruthy();
|
|
|
|
expect(result && result.indexOf('height="2em"') > -1).toBeTruthy();
|
2022-03-02 17:55:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('loadIcon preserves customizations order', async () => {
|
2022-03-03 23:36:30 +00:00
|
|
|
const result = await loadNodeIcon('flat-color-icons', 'up-right', {
|
2022-03-02 17:55:03 +00:00
|
|
|
scale: 1,
|
|
|
|
defaultStyle: 'color: red;',
|
|
|
|
defaultClass: 'clazz1',
|
|
|
|
customizations: {
|
|
|
|
additionalProps: {
|
2022-03-04 16:37:21 +00:00
|
|
|
width: '2em',
|
|
|
|
height: '2em',
|
|
|
|
style: 'color: blue;',
|
|
|
|
class: 'clazz2',
|
2022-03-02 17:55:03 +00:00
|
|
|
},
|
|
|
|
// it will never be called, it is not a custom icon
|
2022-03-24 20:16:13 +00:00
|
|
|
transform(svg) {
|
|
|
|
return svg.replace(
|
2022-03-04 16:37:21 +00:00
|
|
|
'<svg ',
|
|
|
|
'<svg width="4em" height="4em" '
|
|
|
|
);
|
2022-03-02 17:55:03 +00:00
|
|
|
},
|
2022-03-04 16:37:21 +00:00
|
|
|
},
|
2022-03-02 17:55:03 +00:00
|
|
|
});
|
|
|
|
expect(result).toBeTruthy();
|
|
|
|
expect(result && result.includes('style="color: blue;"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('class="clazz2"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('width="2em"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('height="2em"')).toBeTruthy();
|
|
|
|
});
|
2022-03-22 18:08:38 +00:00
|
|
|
|
|
|
|
test('loadIcon apply scale', async () => {
|
|
|
|
const result = await loadNodeIcon('flat-color-icons', 'up-right', {
|
|
|
|
scale: 1.2,
|
|
|
|
defaultStyle: 'color: red;',
|
|
|
|
defaultClass: 'clazz1',
|
|
|
|
customizations: {
|
|
|
|
additionalProps: {
|
|
|
|
style: 'color: blue;',
|
|
|
|
class: 'clazz2',
|
|
|
|
},
|
|
|
|
// it will never be called, it is not a custom icon
|
2022-03-24 20:16:13 +00:00
|
|
|
transform(svg) {
|
|
|
|
return svg.replace(
|
2022-03-22 18:08:38 +00:00
|
|
|
'<svg ',
|
|
|
|
'<svg width="4em" height="4em" '
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
expect(result).toBeTruthy();
|
|
|
|
expect(result && result.includes('style="color: blue;"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('class="clazz2"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('width="1.2em"')).toBeTruthy();
|
|
|
|
expect(result && result.includes('height="1.2em"')).toBeTruthy();
|
|
|
|
});
|
2022-03-02 17:55:03 +00:00
|
|
|
});
|