UNPKG

antd-omi-icons

Version:
106 lines (105 loc) 5.05 kB
var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; 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 { Component as OmiComponent, h, classNames, extractClass, tag } from 'omi'; import { rmIEFP } from 'omi-tools'; import { svgBaseProps, warning, iconStyles } from '../utils'; var Icon = /** @class */ (function (_super) { __extends(Icon, _super); function Icon() { return _super !== null && _super.apply(this, arguments) || this; } Icon.prototype.render = function (props) { var // affect inner <svg>...</svg> Component = props.component, viewBox = props.viewBox, spin = props.spin, rotate = props.rotate, tabindex = props.tabindex, onClick = props.onClick, children = props.children, restProps = __rest(props, ["component", "viewBox", "spin", "rotate", "tabindex", "onClick", "children"]); var hasChildren = !!(children && Array.isArray(children) && children.length); warning(Boolean(Component || hasChildren), 'Should have `component` prop/slot or `children`.'); var cls = extractClass(props, { anticon: true }); var svgStyle = rotate && !isNaN(parseFloat(String(rotate))) ? "-ms-transform: rotate(".concat(rotate, "deg);transform: rotate(").concat(rotate, "deg);") : undefined; var svgClassString = classNames({ 'anticon-spin': spin === '' || !!spin }); var innerSvgProps = __assign(__assign(__assign(__assign({}, svgBaseProps), (svgClassString ? { class: svgClassString } : undefined)), (svgStyle ? { style: svgStyle } : undefined)), { viewBox: viewBox }); if (!viewBox) { delete innerSvgProps.viewBox; } var renderInnerNode = function () { if (Component) { return h(Component, __assign({}, innerSvgProps), children); } if (hasChildren) { warning( // @ts-ignore Boolean(viewBox) || (children.length === 1 && children[0] && children[0].type === 'use'), 'Make sure that you provide correct `viewBox`' + ' prop (default `0 0 1024 1024`) to the icon.'); return (h("svg", __assign({}, innerSvgProps, { viewBox: viewBox }), children)); } return null; }; var iconTabIndex = tabindex; if (iconTabIndex === undefined && onClick) { iconTabIndex = -1; restProps.tabindex = iconTabIndex; } return (h("span", __assign({ role: "img" }, cls, rmIEFP(restProps)), renderInnerNode())); }; Icon.propTypes = { spin: Boolean, rotate: Number, viewBox: String, ariaLabel: String, }; Icon.inheritAttrs = false; Icon.displayName = 'Icon'; Icon.css = iconStyles; Icon = __decorate([ tag('o-icon') ], Icon); return Icon; }(OmiComponent)); export default Icon;