62 lines
2.3 KiB
JavaScript
62 lines
2.3 KiB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
|
|
var __rest = this && this.__rest || function (s, e) {
|
|
var t = {};
|
|
|
|
for (var p in s) {
|
|
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
}
|
|
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
|
|
import * as React from 'react';
|
|
import Icon from './index';
|
|
var customCache = new Set();
|
|
export default function create() {
|
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
var scriptUrl = options.scriptUrl,
|
|
_options$extraCommonP = options.extraCommonProps,
|
|
extraCommonProps = _options$extraCommonP === void 0 ? {} : _options$extraCommonP;
|
|
/**
|
|
* 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)) {
|
|
var script = document.createElement('script');
|
|
script.setAttribute('src', scriptUrl);
|
|
script.setAttribute('data-namespace', scriptUrl);
|
|
customCache.add(scriptUrl);
|
|
document.body.appendChild(script);
|
|
}
|
|
|
|
var Iconfont = function Iconfont(props) {
|
|
var type = props.type,
|
|
children = props.children,
|
|
restProps = __rest(props, ["type", "children"]); // component > children > type
|
|
|
|
|
|
var content = null;
|
|
|
|
if (props.type) {
|
|
content = /*#__PURE__*/React.createElement("use", {
|
|
xlinkHref: "#".concat(type)
|
|
});
|
|
}
|
|
|
|
if (children) {
|
|
content = children;
|
|
}
|
|
|
|
return /*#__PURE__*/React.createElement(Icon, _extends({}, extraCommonProps, restProps), content);
|
|
};
|
|
|
|
Iconfont.displayName = 'Iconfont';
|
|
return Iconfont;
|
|
} |