Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120538591
ToggleButtonGroup.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jul 5, 02:24
Size
8 KB
Mime Type
text/x-java
Expires
Mon, Jul 7, 02:24 (2 d)
Engine
blob
Format
Raw Data
Handle
27203933
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ToggleButtonGroup.js
View Options
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _extends from "@babel/runtime/helpers/esm/extends";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import * as React from 'react';
import { isFragment } from 'react-is';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { unstable_composeClasses as composeClasses } from '@mui/base';
import styled from '../styles/styled';
import useThemeProps from '../styles/useThemeProps';
import capitalize from '../utils/capitalize';
import isValueSelected from './isValueSelected';
import toggleButtonGroupClasses, { getToggleButtonGroupUtilityClass } from './toggleButtonGroupClasses';
import { jsx as _jsx } from "react/jsx-runtime";
var useUtilityClasses = function useUtilityClasses(ownerState) {
var classes = ownerState.classes,
orientation = ownerState.orientation,
fullWidth = ownerState.fullWidth,
disabled = ownerState.disabled;
var slots = {
root: ['root', orientation === 'vertical' && 'vertical', fullWidth && 'fullWidth'],
grouped: ['grouped', "grouped".concat(capitalize(orientation)), disabled && 'disabled']
};
return composeClasses(slots, getToggleButtonGroupUtilityClass, classes);
};
var ToggleButtonGroupRoot = styled('div', {
name: 'MuiToggleButtonGroup',
slot: 'Root',
overridesResolver: function overridesResolver(props, styles) {
var ownerState = props.ownerState;
return [_defineProperty({}, "& .".concat(toggleButtonGroupClasses.grouped), styles.grouped), _defineProperty({}, "& .".concat(toggleButtonGroupClasses.grouped), styles["grouped".concat(capitalize(ownerState.orientation))]), styles.root, ownerState.orientation === 'vertical' && styles.vertical, ownerState.fullWidth && styles.fullWidth];
}
})(function (_ref3) {
var ownerState = _ref3.ownerState,
theme = _ref3.theme;
return _extends({
display: 'inline-flex',
borderRadius: (theme.vars || theme).shape.borderRadius
}, ownerState.orientation === 'vertical' && {
flexDirection: 'column'
}, ownerState.fullWidth && {
width: '100%'
}, _defineProperty({}, "& .".concat(toggleButtonGroupClasses.grouped), _extends({}, ownerState.orientation === 'horizontal' ? _defineProperty({
'&:not(:first-of-type)': {
marginLeft: -1,
borderLeft: '1px solid transparent',
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0
},
'&:not(:last-of-type)': {
borderTopRightRadius: 0,
borderBottomRightRadius: 0
}
}, "&.".concat(toggleButtonGroupClasses.selected, " + .").concat(toggleButtonGroupClasses.grouped, ".").concat(toggleButtonGroupClasses.selected), {
borderLeft: 0,
marginLeft: 0
}) : _defineProperty({
'&:not(:first-of-type)': {
marginTop: -1,
borderTop: '1px solid transparent',
borderTopLeftRadius: 0,
borderTopRightRadius: 0
},
'&:not(:last-of-type)': {
borderBottomLeftRadius: 0,
borderBottomRightRadius: 0
}
}, "&.".concat(toggleButtonGroupClasses.selected, " + .").concat(toggleButtonGroupClasses.grouped, ".").concat(toggleButtonGroupClasses.selected), {
borderTop: 0,
marginTop: 0
}))));
});
var ToggleButtonGroup = /*#__PURE__*/React.forwardRef(function ToggleButtonGroup(inProps, ref) {
var props = useThemeProps({
props: inProps,
name: 'MuiToggleButtonGroup'
});
var children = props.children,
className = props.className,
_props$color = props.color,
color = _props$color === void 0 ? 'standard' : _props$color,
_props$disabled = props.disabled,
disabled = _props$disabled === void 0 ? false : _props$disabled,
_props$exclusive = props.exclusive,
exclusive = _props$exclusive === void 0 ? false : _props$exclusive,
_props$fullWidth = props.fullWidth,
fullWidth = _props$fullWidth === void 0 ? false : _props$fullWidth,
onChange = props.onChange,
_props$orientation = props.orientation,
orientation = _props$orientation === void 0 ? 'horizontal' : _props$orientation,
_props$size = props.size,
size = _props$size === void 0 ? 'medium' : _props$size,
value = props.value,
other = _objectWithoutProperties(props, ["children", "className", "color", "disabled", "exclusive", "fullWidth", "onChange", "orientation", "size", "value"]);
var ownerState = _extends({}, props, {
disabled: disabled,
fullWidth: fullWidth,
orientation: orientation,
size: size
});
var classes = useUtilityClasses(ownerState);
var handleChange = function handleChange(event, buttonValue) {
if (!onChange) {
return;
}
var index = value && value.indexOf(buttonValue);
var newValue;
if (value && index >= 0) {
newValue = value.slice();
newValue.splice(index, 1);
} else {
newValue = value ? value.concat(buttonValue) : [buttonValue];
}
onChange(event, newValue);
};
var handleExclusiveChange = function handleExclusiveChange(event, buttonValue) {
if (!onChange) {
return;
}
onChange(event, value === buttonValue ? null : buttonValue);
};
return /*#__PURE__*/_jsx(ToggleButtonGroupRoot, _extends({
role: "group",
className: clsx(classes.root, className),
ref: ref,
ownerState: ownerState
}, other, {
children: React.Children.map(children, function (child) {
if (! /*#__PURE__*/React.isValidElement(child)) {
return null;
}
if (process.env.NODE_ENV !== 'production') {
if (isFragment(child)) {
console.error(["MUI: The ToggleButtonGroup component doesn't accept a Fragment as a child.", 'Consider providing an array instead.'].join('\n'));
}
}
return /*#__PURE__*/React.cloneElement(child, {
className: clsx(classes.grouped, child.props.className),
onChange: exclusive ? handleExclusiveChange : handleChange,
selected: child.props.selected === undefined ? isValueSelected(child.props.value, value) : child.props.selected,
size: child.props.size || size,
fullWidth: fullWidth,
color: child.props.color || color,
disabled: child.props.disabled || disabled
});
})
}));
});
process.env.NODE_ENV !== "production" ? ToggleButtonGroup.propTypes /* remove-proptypes */ = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The color of the button when it is selected.
* It supports both default and custom theme colors, which can be added as shown in the
* [palette customization guide](https://mui.com/material-ui/customization/palette/#adding-new-colors).
* @default 'standard'
*/
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['standard', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]),
/**
* If `true`, the component is disabled. This implies that all ToggleButton children will be disabled.
* @default false
*/
disabled: PropTypes.bool,
/**
* If `true`, only allow one of the child ToggleButton values to be selected.
* @default false
*/
exclusive: PropTypes.bool,
/**
* If `true`, the button group will take up the full width of its container.
* @default false
*/
fullWidth: PropTypes.bool,
/**
* Callback fired when the value changes.
*
* @param {React.MouseEvent<HTMLElement>} event The event source of the callback.
* @param {any} value of the selected buttons. When `exclusive` is true
* this is a single value; when false an array of selected values. If no value
* is selected and `exclusive` is true the value is null; when false an empty array.
*/
onChange: PropTypes.func,
/**
* The component orientation (layout flow direction).
* @default 'horizontal'
*/
orientation: PropTypes.oneOf(['horizontal', 'vertical']),
/**
* The size of the component.
* @default 'medium'
*/
size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['small', 'medium', 'large']), PropTypes.string]),
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
/**
* The currently selected value within the group or an array of selected
* values when `exclusive` is false.
*
* The value must have reference equality with the option in order to be selected.
*/
value: PropTypes.any
} : void 0;
export default ToggleButtonGroup;
Event Timeline
Log In to Comment