mirror of
https://github.com/iconify/iconify.git
synced 2024-11-09 23:00:56 +00:00
chore: auto fixed prettier rules in src and tests
npx eslint --fix src/**/*.ts npx eslint --fix tests/**/*.ts
This commit is contained in:
parent
30826c33e0
commit
8f739807d5
@ -1,5 +1,9 @@
|
||||
import createDebugger from 'debug';
|
||||
import type { CustomIconLoader, IconifyLoaderOptions, InlineCollection } from './types';
|
||||
import type {
|
||||
CustomIconLoader,
|
||||
IconifyLoaderOptions,
|
||||
InlineCollection,
|
||||
} from './types';
|
||||
import { mergeIconProps } from './utils';
|
||||
|
||||
const debug = createDebugger('@iconify-loader:custom');
|
||||
@ -11,7 +15,7 @@ export async function getCustomIcon(
|
||||
custom: CustomIconLoader | InlineCollection,
|
||||
collection: string,
|
||||
icon: string,
|
||||
options?: IconifyLoaderOptions,
|
||||
options?: IconifyLoaderOptions
|
||||
): Promise<string | undefined> {
|
||||
let result: string | undefined | null;
|
||||
|
||||
@ -37,7 +41,7 @@ export async function getCustomIcon(
|
||||
collection,
|
||||
icon,
|
||||
options,
|
||||
undefined,
|
||||
undefined
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -1,12 +1,15 @@
|
||||
import { promises as fs, Stats } from 'fs';
|
||||
import { isPackageExists, resolveModule } from 'local-pkg'
|
||||
import type { IconifyJSON } from '@iconify/types'
|
||||
import { isPackageExists, resolveModule } from 'local-pkg';
|
||||
import type { IconifyJSON } from '@iconify/types';
|
||||
import { tryInstallPkg } from './install-pkg';
|
||||
|
||||
const _collections: Record<string, Promise<IconifyJSON | undefined>> = {};
|
||||
const isLegacyExists = isPackageExists('@iconify/json');
|
||||
|
||||
export async function loadCollectionFromFS(name: string, autoInstall = false): Promise<IconifyJSON | undefined> {
|
||||
export async function loadCollectionFromFS(
|
||||
name: string,
|
||||
autoInstall = false
|
||||
): Promise<IconifyJSON | undefined> {
|
||||
if (!_collections[name]) {
|
||||
_collections[name] = task();
|
||||
}
|
||||
@ -30,9 +33,10 @@ export async function loadCollectionFromFS(name: string, autoInstall = false): P
|
||||
return undefined;
|
||||
}
|
||||
if (stat && stat.isFile()) {
|
||||
return JSON.parse(await fs.readFile(jsonPath as string, 'utf8')) as IconifyJSON;
|
||||
}
|
||||
else {
|
||||
return JSON.parse(
|
||||
await fs.readFile(jsonPath as string, 'utf8')
|
||||
) as IconifyJSON;
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ import { searchForIcon } from './modern';
|
||||
import { warnOnce } from './install-pkg';
|
||||
import type { IconifyLoaderOptions } from './types';
|
||||
|
||||
export const isNode = typeof process < 'u' && typeof process.stdout < 'u'
|
||||
export const isNode = typeof process < 'u' && typeof process.stdout < 'u';
|
||||
|
||||
export async function loadIcon(
|
||||
collection: string,
|
||||
@ -33,8 +33,7 @@ async function importFsModule(): Promise<typeof import('./fs') | undefined> {
|
||||
try {
|
||||
// cjs environments
|
||||
return require('./fs.js');
|
||||
}
|
||||
catch {
|
||||
} catch {
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
@ -44,12 +43,15 @@ async function loadNodeBuiltinIcon(
|
||||
collection: string,
|
||||
icon: string,
|
||||
options?: IconifyLoaderOptions,
|
||||
warn = true,
|
||||
warn = true
|
||||
): Promise<string | undefined> {
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
const { loadCollectionFromFS } = await importFsModule();
|
||||
const iconSet = await loadCollectionFromFS(collection, options?.autoInstall);
|
||||
const iconSet = await loadCollectionFromFS(
|
||||
collection,
|
||||
options?.autoInstall
|
||||
);
|
||||
if (iconSet) {
|
||||
// possible icon names
|
||||
const ids = [
|
||||
@ -61,7 +63,8 @@ async function loadNodeBuiltinIcon(
|
||||
}
|
||||
|
||||
if (warn) {
|
||||
warnOnce(`failed to load \`@iconify-json/${collection}\`, have you installed it?`);
|
||||
warnOnce(
|
||||
`failed to load \`@iconify-json/${collection}\`, have you installed it?`
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -13,7 +13,7 @@ export async function searchForIcon(
|
||||
iconSet: IconifyJSON,
|
||||
collection: string,
|
||||
ids: string[],
|
||||
options?: IconifyLoaderOptions,
|
||||
options?: IconifyLoaderOptions
|
||||
): Promise<string | undefined> {
|
||||
let iconData: FullIconifyIcon | null;
|
||||
const { customize } = options?.customizations ?? {};
|
||||
@ -34,7 +34,7 @@ export async function searchForIcon(
|
||||
collection,
|
||||
id,
|
||||
options,
|
||||
() => attributes,
|
||||
() => attributes
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -80,36 +80,36 @@ export type IconifyLoaderOptions = {
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
addXmlNs?: boolean
|
||||
addXmlNs?: boolean;
|
||||
|
||||
/**
|
||||
* Scale of icons against 1em
|
||||
*/
|
||||
scale?: number
|
||||
scale?: number;
|
||||
|
||||
/**
|
||||
* Style to apply to icons by default
|
||||
*
|
||||
* @default ''
|
||||
*/
|
||||
defaultStyle?: string
|
||||
defaultStyle?: string;
|
||||
|
||||
/**
|
||||
* Class names to apply to icons by default
|
||||
*
|
||||
* @default ''
|
||||
*/
|
||||
defaultClass?: string
|
||||
defaultClass?: string;
|
||||
|
||||
/**
|
||||
* Loader for custom loaders
|
||||
*/
|
||||
customCollections?: Record<string, CustomIconLoader | InlineCollection>
|
||||
customCollections?: Record<string, CustomIconLoader | InlineCollection>;
|
||||
|
||||
/**
|
||||
* Icon customizer
|
||||
*/
|
||||
customizations?: IconCustomizations
|
||||
customizations?: IconCustomizations;
|
||||
|
||||
/**
|
||||
* Auto install icon sources package when the usages is detected
|
||||
@ -118,5 +118,5 @@ export type IconifyLoaderOptions = {
|
||||
*
|
||||
* @default false
|
||||
*/
|
||||
autoInstall?: boolean
|
||||
}
|
||||
autoInstall?: boolean;
|
||||
};
|
||||
|
@ -6,16 +6,21 @@ export async function mergeIconProps(
|
||||
collection: string,
|
||||
icon: string,
|
||||
options?: IconifyLoaderOptions,
|
||||
propsProvider?: () => Awaitable<Record<string, string>>,
|
||||
propsProvider?: () => Awaitable<Record<string, string>>
|
||||
): Promise<string> {
|
||||
const { scale, addXmlNs = false } = options ?? {}
|
||||
const {
|
||||
additionalProps = {},
|
||||
iconCustomizer,
|
||||
} = options?.customizations ?? {};
|
||||
const { scale, addXmlNs = false } = options ?? {};
|
||||
const { additionalProps = {}, iconCustomizer } =
|
||||
options?.customizations ?? {};
|
||||
const props: Record<string, string> = (await propsProvider?.()) ?? {};
|
||||
if (!svg.includes(" width=") && !svg.includes(" height=") && typeof scale === 'number') {
|
||||
if ((typeof props.width === 'undefined' || props.width === null) && (typeof props.height === 'undefined' || props.height === null)) {
|
||||
if (
|
||||
!svg.includes(' width=') &&
|
||||
!svg.includes(' height=') &&
|
||||
typeof scale === 'number'
|
||||
) {
|
||||
if (
|
||||
(typeof props.width === 'undefined' || props.width === null) &&
|
||||
(typeof props.height === 'undefined' || props.height === null)
|
||||
) {
|
||||
props.width = `${scale}em`;
|
||||
props.height = `${scale}em`;
|
||||
}
|
||||
@ -33,18 +38,24 @@ export async function mergeIconProps(
|
||||
props['xmlns'] = 'http://www.w3.org/2000/svg';
|
||||
}
|
||||
// add xmlns:xlink if xlink present and the xmlns missing
|
||||
if (!svg.includes(' xmlns:xlink=') && svg.includes('xlink:') && !props['xmlns:xlink']) {
|
||||
if (
|
||||
!svg.includes(' xmlns:xlink=') &&
|
||||
svg.includes('xlink:') &&
|
||||
!props['xmlns:xlink']
|
||||
) {
|
||||
props['xmlns:xlink'] = 'http://www.w3.org/1999/xlink';
|
||||
}
|
||||
}
|
||||
|
||||
svg = svg.replace(
|
||||
'<svg ',
|
||||
`<svg ${Object.keys(props).map((p) => `${p}="${props[p]}"`).join(' ')}`
|
||||
`<svg ${Object.keys(props)
|
||||
.map((p) => `${p}="${props[p]}"`)
|
||||
.join(' ')}`
|
||||
);
|
||||
|
||||
if (svg && options) {
|
||||
const { defaultStyle, defaultClass } = options
|
||||
const { defaultStyle, defaultClass } = options;
|
||||
// additional props and iconCustomizer takes precedence
|
||||
if (defaultClass && !svg.includes(' class=')) {
|
||||
svg = svg.replace('<svg ', `<svg class="${defaultClass}" `);
|
||||
|
@ -2,12 +2,19 @@
|
||||
export function encodeSvgForCss(svg: string): string {
|
||||
let useSvg = svg.startsWith('<svg>') ? svg.replace('<svg>', '<svg >') : svg;
|
||||
if (!useSvg.includes(' xmlns:xlink=') && useSvg.includes(' xlink:')) {
|
||||
useSvg = useSvg.replace('<svg ', '<svg xmlns:xlink="http://www.w3.org/1999/xlink" ');
|
||||
useSvg = useSvg.replace(
|
||||
'<svg ',
|
||||
'<svg xmlns:xlink="http://www.w3.org/1999/xlink" '
|
||||
);
|
||||
}
|
||||
if (!useSvg.includes(' xmlns=')) {
|
||||
useSvg = useSvg.replace('<svg ', '<svg xmlns="http://www.w3.org/2000/svg" ');
|
||||
useSvg = useSvg.replace(
|
||||
'<svg ',
|
||||
'<svg xmlns="http://www.w3.org/2000/svg" '
|
||||
);
|
||||
}
|
||||
return useSvg.replace(/"/g, '\'')
|
||||
return useSvg
|
||||
.replace(/"/g, "'")
|
||||
.replace(/%/g, '%25')
|
||||
.replace(/#/g, '%23')
|
||||
.replace(/{/g, '%7B')
|
||||
|
@ -15,9 +15,12 @@ describe('Testing getCustomIcon', () => {
|
||||
const result = await getCustomIcon(() => svg, 'a', 'b', {
|
||||
customizations: {
|
||||
transform(icon) {
|
||||
return icon.replace('<svg ', '<svg width="1em" height="1em" ');
|
||||
return icon.replace(
|
||||
'<svg ',
|
||||
'<svg width="1em" height="1em" '
|
||||
);
|
||||
},
|
||||
},
|
||||
}
|
||||
});
|
||||
expect(result && result.indexOf('width="1em"') > -1).toBeTruthy();
|
||||
expect(result && result.indexOf('height="1em"') > -1).toBeTruthy();
|
||||
|
@ -1,14 +1,15 @@
|
||||
import { loadIcon } from '../lib';
|
||||
|
||||
describe('Testing loadIcon with @iconify-json/flat-color-icons>', () => {
|
||||
|
||||
test('loadIcon works', async () => {
|
||||
const result = await loadIcon('flat-color-icons', 'up-right');
|
||||
expect(result).toBeTruthy();
|
||||
});
|
||||
|
||||
test('loadIcon adds xmlns:xlink', async () => {
|
||||
const result = await loadIcon('flat-color-icons', 'up-right', { addXmlNs: true });
|
||||
const result = await loadIcon('flat-color-icons', 'up-right', {
|
||||
addXmlNs: true,
|
||||
});
|
||||
expect(result).toBeTruthy();
|
||||
expect(result && result.indexOf('xmlns:xlink=') > -1).toBeTruthy();
|
||||
});
|
||||
@ -23,7 +24,7 @@ describe('Testing loadIcon with @iconify-json/flat-color-icons>', () => {
|
||||
props.height = '2em';
|
||||
return props;
|
||||
},
|
||||
}
|
||||
},
|
||||
});
|
||||
expect(result).toBeTruthy();
|
||||
expect(result && result.indexOf('margin-top: 1rem;') > -1).toBeTruthy();
|
||||
@ -39,16 +40,19 @@ describe('Testing loadIcon with @iconify-json/flat-color-icons>', () => {
|
||||
defaultClass: 'clazz1',
|
||||
customizations: {
|
||||
additionalProps: {
|
||||
'width': '2em',
|
||||
'height': '2em',
|
||||
'style': 'color: blue;',
|
||||
'class': 'clazz2',
|
||||
width: '2em',
|
||||
height: '2em',
|
||||
style: 'color: blue;',
|
||||
class: 'clazz2',
|
||||
},
|
||||
// it will never be called, it is not a custom icon
|
||||
transform(icon) {
|
||||
return icon.replace('<svg ', '<svg width="4em" height="4em" ');
|
||||
return icon.replace(
|
||||
'<svg ',
|
||||
'<svg width="4em" height="4em" '
|
||||
);
|
||||
},
|
||||
},
|
||||
}
|
||||
});
|
||||
expect(result).toBeTruthy();
|
||||
expect(result && result.includes('style="color: blue;"')).toBeTruthy();
|
||||
|
@ -5,7 +5,7 @@ const fixturesDir = __dirname + '/fixtures';
|
||||
|
||||
const loader: CustomIconLoader = async (name) => {
|
||||
return await fs.readFile(`${fixturesDir}/${name}.svg`, 'utf8');
|
||||
}
|
||||
};
|
||||
|
||||
describe('Testing loadIcon', () => {
|
||||
test('CustomCollection', async () => {
|
||||
@ -13,8 +13,8 @@ describe('Testing loadIcon', () => {
|
||||
expect(svg).toBeTruthy();
|
||||
const result = await loadIcon('a', 'circle', {
|
||||
customCollections: {
|
||||
'a': {
|
||||
'circle': svg as string,
|
||||
a: {
|
||||
circle: svg as string,
|
||||
},
|
||||
},
|
||||
});
|
||||
@ -27,13 +27,16 @@ describe('Testing loadIcon', () => {
|
||||
expect(svg).toBeTruthy();
|
||||
const result = await loadIcon('a', 'circle', {
|
||||
customCollections: {
|
||||
'a': {
|
||||
'circle': svg as string,
|
||||
a: {
|
||||
circle: svg as string,
|
||||
},
|
||||
},
|
||||
customizations: {
|
||||
transform(icon) {
|
||||
return icon.replace('<svg ', '<svg width="1em" height="1em" ');
|
||||
return icon.replace(
|
||||
'<svg ',
|
||||
'<svg width="1em" height="1em" '
|
||||
);
|
||||
},
|
||||
},
|
||||
});
|
||||
@ -55,7 +58,7 @@ describe('Testing loadIcon', () => {
|
||||
|
||||
const result = await loadIcon('a', '1f3eb', {
|
||||
customCollections: {
|
||||
'a': {
|
||||
a: {
|
||||
'1f3eb': svg as string,
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user