@findify/react-components
Version:
Findify react UI components
40 lines (34 loc) • 2.09 kB
JavaScript
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
/**
* @module components/RatingFacet
*/
import cx from 'classnames';
import Icon from "../Icon";
import { jsx as _jsx } from "react/jsx-runtime";
import { Fragment as _Fragment } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export default (function (_ref) {
var item = _ref.item,
theme = _ref.theme,
config = _ref.config;
return /*#__PURE__*/_jsxs(_Fragment, {
children: [_toConsumableArray(Array(parseInt(item.get('from'))).keys()).map(function (_, i) {
return /*#__PURE__*/_jsx(Icon, {
className: theme.star,
name: "Star",
title: "Star"
}, 'fill-' + i);
}), _toConsumableArray(Array(5 - parseInt(item.get('from'))).keys()).map(function (_, i) {
return /*#__PURE__*/_jsx(Icon, {
className: cx(theme.star, theme.unfilled),
name: "Star",
title: "Star"
}, 'unfill-' + i);
})]
});
});