UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

63 lines (53 loc) 3.78 kB
import _includes from "lodash/includes"; import _isArray from "lodash/isArray"; var _excluded = ["className", "style", "disabled", "value", "children", "onClick"]; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import { cloneIconElement } from "@vnmfify/icons/utils"; import { View } from "@vnxjs/components"; import classNames from "classnames"; import * as React from "react"; import { useCallback, useContext, useMemo } from "react"; import { prefixClassname } from "../styles"; import TreeSelectContext from "./tree-select.context"; function TreeSelectOption(props) { var { className, style, disabled = false, value, children, onClick } = props, restProps = _objectWithoutProperties(props, _excluded); var { activeIcon, value: ctxValue, onOptionClick } = useContext(TreeSelectContext); var active = useMemo(() => _isArray(ctxValue) ? _includes(ctxValue, value) : value === ctxValue, [ctxValue, value]); var handleClick = useCallback(event => { onClick === null || onClick === void 0 ? void 0 : onClick(event); onOptionClick === null || onOptionClick === void 0 ? void 0 : onOptionClick({ active: !active, disabled, value, children }); }, [active, children, disabled, onClick, onOptionClick, value]); return /*#__PURE__*/React.createElement(View, _objectSpread({ className: classNames(prefixClassname("ellipsis"), prefixClassname("tree-select-option"), { [prefixClassname("tree-select-option--disabled")]: disabled, [prefixClassname("tree-select-option--active")]: active }, className), style: style, onClick: handleClick }, restProps), children, active && cloneIconElement(activeIcon, { className: prefixClassname("tree-select-option__icon") })); } export default TreeSelectOption; //# sourceMappingURL=tree-select-option.js.map