You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
import Icon, { IconProps } from './index';
|
|
import * as React from 'react';
|
|
|
|
const customCache = new Set<string>();
|
|
|
|
export interface CustomIconOptions {
|
|
scriptUrl?: string;
|
|
extraCommonProps?: { [key: string]: any };
|
|
}
|
|
|
|
export default function create(options: CustomIconOptions = {}): React.SFC<IconProps> {
|
|
const { scriptUrl, extraCommonProps = {} } = options;
|
|
|
|
/**
|
|
* DOM API required.
|
|
* Make sure in browser environment.
|
|
* The Custom Icon will create a <script/>
|
|
* that loads SVG symbols and insert the SVG Element into the document body.
|
|
*/
|
|
if (
|
|
typeof document !== 'undefined' &&
|
|
typeof window !== 'undefined' &&
|
|
typeof document.createElement === 'function' &&
|
|
typeof scriptUrl === 'string' &&
|
|
scriptUrl.length &&
|
|
!customCache.has(scriptUrl)
|
|
) {
|
|
const script = document.createElement('script');
|
|
script.setAttribute('src', scriptUrl);
|
|
script.setAttribute('data-namespace', scriptUrl);
|
|
customCache.add(scriptUrl);
|
|
document.body.appendChild(script);
|
|
}
|
|
|
|
const Iconfont: React.SFC<IconProps> = props => {
|
|
const { type, children, ...restProps } = props;
|
|
|
|
// component > children > type
|
|
let content = null;
|
|
if (props.type) {
|
|
content = <use xlinkHref={`#${type}`} />;
|
|
}
|
|
if (children) {
|
|
content = children;
|
|
}
|
|
return (
|
|
<Icon {...restProps} {...extraCommonProps}>
|
|
{content}
|
|
</Icon>
|
|
);
|
|
};
|
|
|
|
Iconfont.displayName = 'Iconfont';
|
|
|
|
return Iconfont;
|
|
}
|
|
|