You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							64 lines
						
					
					
						
							3.3 KiB
						
					
					
				
			
		
		
	
	
							64 lines
						
					
					
						
							3.3 KiB
						
					
					
				| "use strict";
 | |
| var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
 | |
|     if (k2 === undefined) k2 = k;
 | |
|     Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
 | |
| }) : (function(o, m, k, k2) {
 | |
|     if (k2 === undefined) k2 = k;
 | |
|     o[k2] = m[k];
 | |
| }));
 | |
| var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
 | |
|     Object.defineProperty(o, "default", { enumerable: true, value: v });
 | |
| }) : function(o, v) {
 | |
|     o["default"] = v;
 | |
| });
 | |
| var __importStar = (this && this.__importStar) || function (mod) {
 | |
|     if (mod && mod.__esModule) return mod;
 | |
|     var result = {};
 | |
|     if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
 | |
|     __setModuleDefault(result, mod);
 | |
|     return result;
 | |
| };
 | |
| 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;
 | |
| };
 | |
| var __importDefault = (this && this.__importDefault) || function (mod) {
 | |
|     return (mod && mod.__esModule) ? mod : { "default": mod };
 | |
| };
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| exports.default = exports.DropDownItemWithButtons = void 0;
 | |
| const react_1 = __importStar(require("react"));
 | |
| const icon_1 = __importDefault(require("../../atoms/icon"));
 | |
| const drop_down_1 = require("../../molecules/drop-down");
 | |
| const button_group_styled_1 = require("./button-group.styled");
 | |
| exports.DropDownItemWithButtons = (props) => {
 | |
|     const { variant, onClick, href, icon, label, buttons, source } = props, rest = __rest(props, ["variant", "onClick", "href", "icon", "label", "buttons", "source"]);
 | |
|     const [loading, setLoading] = react_1.useState(false);
 | |
|     const onClickHandler = onClick
 | |
|         ? async (event) => {
 | |
|             setLoading(true);
 | |
|             await onClick(event, source);
 | |
|             setLoading(false);
 | |
|         }
 | |
|         : undefined;
 | |
|     const iconName = react_1.useMemo(() => {
 | |
|         if (loading)
 | |
|             return 'Fade';
 | |
|         return icon !== null && icon !== void 0 ? icon : '';
 | |
|     }, [loading]);
 | |
|     return (react_1.default.createElement(drop_down_1.DropDownItem, { colorVariant: variant, p: 0 },
 | |
|         react_1.default.createElement(button_group_styled_1.StyledDropDownItemAction, Object.assign({ onClick: onClickHandler, href: href, as: "a", hasLabel: !!label }, rest),
 | |
|             buttons && buttons.length ? (react_1.default.createElement(icon_1.default, { icon: "CaretLeft", ml: "-24px", mr: "0" })) : '',
 | |
|             !loading && !icon ? '' : react_1.default.createElement(icon_1.default, { key: iconName.toString(), icon: iconName, spin: loading }),
 | |
|             label),
 | |
|         buttons && buttons.length ? (react_1.default.createElement(drop_down_1.DropDownMenu, null, buttons.map((button) => (react_1.default.createElement(exports.DropDownItemWithButtons, Object.assign({}, button, { key: button.label })))))) : ''));
 | |
| };
 | |
| exports.default = exports.DropDownItemWithButtons;
 |