UNPKG

antd-omi-icons

Version:
108 lines (107 loc) 5.18 kB
"use strict"; 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; }; Object.defineProperty(exports, "__esModule", { value: true }); var omi_1 = require("omi"); var omi_tools_1 = require("omi-tools"); var utils_1 = require("../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); (0, utils_1.warning)(Boolean(Component || hasChildren), 'Should have `component` prop/slot or `children`.'); var cls = (0, omi_1.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 = (0, omi_1.classNames)({ 'anticon-spin': spin === '' || !!spin }); var innerSvgProps = __assign(__assign(__assign(__assign({}, utils_1.svgBaseProps), (svgClassString ? { class: svgClassString } : undefined)), (svgStyle ? { style: svgStyle } : undefined)), { viewBox: viewBox }); if (!viewBox) { delete innerSvgProps.viewBox; } var renderInnerNode = function () { if (Component) { return (0, omi_1.h)(Component, __assign({}, innerSvgProps), children); } if (hasChildren) { (0, utils_1.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 ((0, omi_1.h)("svg", __assign({}, innerSvgProps, { viewBox: viewBox }), children)); } return null; }; var iconTabIndex = tabindex; if (iconTabIndex === undefined && onClick) { iconTabIndex = -1; restProps.tabindex = iconTabIndex; } return ((0, omi_1.h)("span", __assign({ role: "img" }, cls, (0, omi_tools_1.rmIEFP)(restProps)), renderInnerNode())); }; Icon.propTypes = { spin: Boolean, rotate: Number, viewBox: String, ariaLabel: String, }; Icon.inheritAttrs = false; Icon.displayName = 'Icon'; Icon.css = utils_1.iconStyles; Icon = __decorate([ (0, omi_1.tag)('o-icon') ], Icon); return Icon; }(omi_1.Component)); exports.default = Icon;