@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
65 lines (54 loc) • 3.72 kB
JavaScript
var _excluded = ["className", "value", "disabled", "clickable", "icon", "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 { Success } from "@vnmfify/icons";
import classnames from "classnames";
import * as React from "react";
import { useCallback, useContext } from "react";
import Cell from "../cell";
import { prefixClassname } from "../styles";
import DropdownMenuItemContext from "./dropdown-menu-item.context";
function DropdownMenuOption(props) {
var {
className,
value,
disabled,
clickable = true,
icon,
children,
onClick
} = props,
restProps = _objectWithoutProperties(props, _excluded);
var {
isOptionToggle,
toggleOption
} = useContext(DropdownMenuItemContext);
var active = isOptionToggle === null || isOptionToggle === void 0 ? void 0 : isOptionToggle(value);
var handleClick = useCallback(event => {
onClick === null || onClick === void 0 ? void 0 : onClick(event);
if (!disabled) {
toggleOption === null || toggleOption === void 0 ? void 0 : toggleOption({
active: !active,
value,
children
});
}
}, [active, children, disabled, onClick, toggleOption, value]);
return /*#__PURE__*/React.createElement(Cell, _objectSpread({
className: classnames(prefixClassname("dropdown-menu-option"), {
[prefixClassname("dropdown-menu-option--active")]: active,
[prefixClassname("dropdown-menu-option--disabled")]: disabled
}, className),
clickable: clickable,
icon: icon,
title: children,
onClick: handleClick
}, restProps), active && /*#__PURE__*/React.createElement(Success, {
className: prefixClassname("dropdown-menu-option__icon")
}));
}
export default DropdownMenuOption;
//# sourceMappingURL=dropdown-menu-option.js.map