worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
183
node_modules/@mui/material/esm/Rating/Rating.d.ts
generated
vendored
Normal file
183
node_modules/@mui/material/esm/Rating/Rating.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,183 @@
|
|||
import * as React from 'react';
|
||||
import { SxProps } from '@mui/system';
|
||||
import { OverridableStringUnion } from '@mui/types';
|
||||
import { Theme } from "../styles/index.js";
|
||||
import { RatingClasses } from "./ratingClasses.js";
|
||||
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
|
||||
import { CreateSlotsAndSlotProps, SlotProps } from "../utils/types.js";
|
||||
export interface IconContainerProps extends React.HTMLAttributes<HTMLSpanElement> {
|
||||
value: number;
|
||||
}
|
||||
export interface RatingPropsSizeOverrides {}
|
||||
export interface RatingRootSlotPropsOverrides {}
|
||||
export interface RatingLabelSlotPropsOverrides {}
|
||||
export interface RatingIconSlotPropsOverrides {}
|
||||
export interface RatingDecimalSlotPropsOverrides {}
|
||||
export interface RatingSlots {
|
||||
/**
|
||||
* The component used for the root slot.
|
||||
* @default 'span'
|
||||
*/
|
||||
root: React.ElementType;
|
||||
/**
|
||||
* The component used for the label slot.
|
||||
* @default 'label'
|
||||
*/
|
||||
label: React.ElementType;
|
||||
/**
|
||||
* The component used for the icon slot.
|
||||
* @default 'span'
|
||||
*/
|
||||
icon: React.ElementType;
|
||||
/**
|
||||
* The component used fo r the decimal slot.
|
||||
* @default 'span'
|
||||
*/
|
||||
decimal: React.ElementType;
|
||||
}
|
||||
export type RatingSlotsAndSlotProps = CreateSlotsAndSlotProps<RatingSlots, {
|
||||
/**
|
||||
* Props forwarded to the root slot.
|
||||
* By default, the avaible props are based on the span element.
|
||||
*/
|
||||
root: SlotProps<'span', RatingRootSlotPropsOverrides, RatingOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the label slot.
|
||||
* By default, the avaible props are based on the label element.
|
||||
*/
|
||||
label: SlotProps<'label', RatingLabelSlotPropsOverrides, RatingOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the icon slot.
|
||||
* By default, the avaible props are based on the span element.
|
||||
*/
|
||||
icon: SlotProps<'span', RatingIconSlotPropsOverrides, RatingOwnerState>;
|
||||
/**
|
||||
* Props forwarded to the decimal slot.
|
||||
* By default, the avaible props are based on the span element.
|
||||
*/
|
||||
decimal: SlotProps<'span', RatingDecimalSlotPropsOverrides, RatingOwnerState>;
|
||||
}>;
|
||||
export interface RatingOwnProps extends RatingSlotsAndSlotProps {
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes?: Partial<RatingClasses>;
|
||||
/**
|
||||
* The default value. Use when the component is not controlled.
|
||||
* @default null
|
||||
*/
|
||||
defaultValue?: number;
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled?: boolean;
|
||||
/**
|
||||
* The icon to display when empty.
|
||||
* @default <StarBorder fontSize="inherit" />
|
||||
*/
|
||||
emptyIcon?: React.ReactNode;
|
||||
/**
|
||||
* The label read when the rating input is empty.
|
||||
* @default 'Empty'
|
||||
*/
|
||||
emptyLabelText?: React.ReactNode;
|
||||
/**
|
||||
* Accepts a function which returns a string value that provides a user-friendly name for the current value of the rating.
|
||||
* This is important for screen reader users.
|
||||
*
|
||||
* For localization purposes, you can use the provided [translations](https://mui.com/material-ui/guides/localization/).
|
||||
* @param {number} value The rating label's value to format.
|
||||
* @returns {string}
|
||||
* @default function defaultLabelText(value) {
|
||||
* return `${value || '0'} Star${value !== 1 ? 's' : ''}`;
|
||||
* }
|
||||
*/
|
||||
getLabelText?: (value: number) => string;
|
||||
/**
|
||||
* If `true`, only the selected icon will be highlighted.
|
||||
* @default false
|
||||
*/
|
||||
highlightSelectedOnly?: boolean;
|
||||
/**
|
||||
* The icon to display.
|
||||
* @default <Star fontSize="inherit" />
|
||||
*/
|
||||
icon?: React.ReactNode;
|
||||
/**
|
||||
* The component containing the icon.
|
||||
* @deprecated Use `slotProps.icon.component` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
* @default function IconContainer(props) {
|
||||
* const { value, ...other } = props;
|
||||
* return <span {...other} />;
|
||||
* }
|
||||
*/
|
||||
IconContainerComponent?: React.ElementType<IconContainerProps>;
|
||||
/**
|
||||
* Maximum rating.
|
||||
* @default 5
|
||||
*/
|
||||
max?: number;
|
||||
/**
|
||||
* The name attribute of the radio `input` elements.
|
||||
* This input `name` should be unique within the page.
|
||||
* Being unique within a form is insufficient since the `name` is used to generate IDs.
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* Callback fired when the value changes.
|
||||
* @param {React.SyntheticEvent} event The event source of the callback.
|
||||
* @param {number|null} value The new value.
|
||||
*/
|
||||
onChange?: (event: React.SyntheticEvent, value: number | null) => void;
|
||||
/**
|
||||
* Callback function that is fired when the hover state changes.
|
||||
* @param {React.SyntheticEvent} event The event source of the callback.
|
||||
* @param {number} value The new value.
|
||||
*/
|
||||
onChangeActive?: (event: React.SyntheticEvent, value: number) => void;
|
||||
/**
|
||||
* The minimum increment value change allowed.
|
||||
* @default 1
|
||||
*/
|
||||
precision?: number;
|
||||
/**
|
||||
* Removes all hover effects and pointer events.
|
||||
* @default false
|
||||
*/
|
||||
readOnly?: boolean;
|
||||
/**
|
||||
* The size of the component.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size?: OverridableStringUnion<'small' | 'medium' | 'large', RatingPropsSizeOverrides>;
|
||||
/**
|
||||
* The system prop that allows defining system overrides as well as additional CSS styles.
|
||||
*/
|
||||
sx?: SxProps<Theme>;
|
||||
/**
|
||||
* The rating value.
|
||||
*/
|
||||
value?: number | null;
|
||||
}
|
||||
export interface RatingOwnerState extends Omit<RatingProps, 'slots' | 'slotProps'> {}
|
||||
export type RatingTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'span'> = {
|
||||
props: AdditionalProps & RatingOwnProps;
|
||||
defaultComponent: RootComponent;
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* Demos:
|
||||
*
|
||||
* - [Rating](https://mui.com/material-ui/react-rating/)
|
||||
*
|
||||
* API:
|
||||
*
|
||||
* - [Rating API](https://mui.com/material-ui/api/rating/)
|
||||
*/
|
||||
declare const Rating: OverridableComponent<RatingTypeMap>;
|
||||
export type RatingProps<RootComponent extends React.ElementType = RatingTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<RatingTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
|
||||
component?: React.ElementType;
|
||||
};
|
||||
export default Rating;
|
||||
777
node_modules/@mui/material/esm/Rating/Rating.js
generated
vendored
Normal file
777
node_modules/@mui/material/esm/Rating/Rating.js
generated
vendored
Normal file
|
|
@ -0,0 +1,777 @@
|
|||
'use client';
|
||||
|
||||
import * as React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import clsx from 'clsx';
|
||||
import clamp from '@mui/utils/clamp';
|
||||
import visuallyHidden from '@mui/utils/visuallyHidden';
|
||||
import chainPropTypes from '@mui/utils/chainPropTypes';
|
||||
import composeClasses from '@mui/utils/composeClasses';
|
||||
import { useRtl } from '@mui/system/RtlProvider';
|
||||
import isFocusVisible from '@mui/utils/isFocusVisible';
|
||||
import { capitalize, useForkRef, useControlled, unstable_useId as useId } from "../utils/index.js";
|
||||
import Star from "../internal/svg-icons/Star.js";
|
||||
import StarBorder from "../internal/svg-icons/StarBorder.js";
|
||||
import { styled } from "../zero-styled/index.js";
|
||||
import memoTheme from "../utils/memoTheme.js";
|
||||
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
|
||||
import slotShouldForwardProp from "../styles/slotShouldForwardProp.js";
|
||||
import ratingClasses, { getRatingUtilityClass } from "./ratingClasses.js";
|
||||
import useSlot from "../utils/useSlot.js";
|
||||
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
||||
import { createElement as _createElement } from "react";
|
||||
function getDecimalPrecision(num) {
|
||||
const decimalPart = num.toString().split('.')[1];
|
||||
return decimalPart ? decimalPart.length : 0;
|
||||
}
|
||||
function roundValueToPrecision(value, precision) {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
const nearest = Math.round(value / precision) * precision;
|
||||
return Number(nearest.toFixed(getDecimalPrecision(precision)));
|
||||
}
|
||||
const useUtilityClasses = ownerState => {
|
||||
const {
|
||||
classes,
|
||||
size,
|
||||
readOnly,
|
||||
disabled,
|
||||
emptyValueFocused,
|
||||
focusVisible
|
||||
} = ownerState;
|
||||
const slots = {
|
||||
root: ['root', `size${capitalize(size)}`, disabled && 'disabled', focusVisible && 'focusVisible', readOnly && 'readOnly'],
|
||||
label: ['label', 'pristine'],
|
||||
labelEmptyValue: [emptyValueFocused && 'labelEmptyValueActive'],
|
||||
icon: ['icon'],
|
||||
iconEmpty: ['iconEmpty'],
|
||||
iconFilled: ['iconFilled'],
|
||||
iconHover: ['iconHover'],
|
||||
iconFocus: ['iconFocus'],
|
||||
iconActive: ['iconActive'],
|
||||
decimal: ['decimal'],
|
||||
visuallyHidden: ['visuallyHidden']
|
||||
};
|
||||
return composeClasses(slots, getRatingUtilityClass, classes);
|
||||
};
|
||||
const RatingRoot = styled('span', {
|
||||
name: 'MuiRating',
|
||||
slot: 'Root',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [{
|
||||
[`& .${ratingClasses.visuallyHidden}`]: styles.visuallyHidden
|
||||
}, styles.root, styles[`size${capitalize(ownerState.size)}`], ownerState.readOnly && styles.readOnly];
|
||||
}
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
display: 'inline-flex',
|
||||
// Required to position the pristine input absolutely
|
||||
position: 'relative',
|
||||
fontSize: theme.typography.pxToRem(24),
|
||||
color: '#faaf00',
|
||||
cursor: 'pointer',
|
||||
textAlign: 'left',
|
||||
width: 'min-content',
|
||||
WebkitTapHighlightColor: 'transparent',
|
||||
[`&.${ratingClasses.disabled}`]: {
|
||||
opacity: (theme.vars || theme).palette.action.disabledOpacity,
|
||||
pointerEvents: 'none'
|
||||
},
|
||||
[`&.${ratingClasses.focusVisible} .${ratingClasses.iconActive}`]: {
|
||||
outline: '1px solid #999'
|
||||
},
|
||||
[`& .${ratingClasses.visuallyHidden}`]: visuallyHidden,
|
||||
variants: [{
|
||||
props: {
|
||||
size: 'small'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(18)
|
||||
}
|
||||
}, {
|
||||
props: {
|
||||
size: 'large'
|
||||
},
|
||||
style: {
|
||||
fontSize: theme.typography.pxToRem(30)
|
||||
}
|
||||
}, {
|
||||
// TODO v6: use the .Mui-readOnly global state class
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.readOnly,
|
||||
style: {
|
||||
pointerEvents: 'none'
|
||||
}
|
||||
}]
|
||||
})));
|
||||
const RatingLabel = styled('label', {
|
||||
name: 'MuiRating',
|
||||
slot: 'Label',
|
||||
overridesResolver: ({
|
||||
ownerState
|
||||
}, styles) => [styles.label, ownerState.emptyValueFocused && styles.labelEmptyValueActive]
|
||||
})({
|
||||
cursor: 'inherit',
|
||||
variants: [{
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.emptyValueFocused,
|
||||
style: {
|
||||
top: 0,
|
||||
bottom: 0,
|
||||
position: 'absolute',
|
||||
outline: '1px solid #999',
|
||||
width: '100%'
|
||||
}
|
||||
}]
|
||||
});
|
||||
const RatingIcon = styled('span', {
|
||||
name: 'MuiRating',
|
||||
slot: 'Icon',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
ownerState
|
||||
} = props;
|
||||
return [styles.icon, ownerState.iconEmpty && styles.iconEmpty, ownerState.iconFilled && styles.iconFilled, ownerState.iconHover && styles.iconHover, ownerState.iconFocus && styles.iconFocus, ownerState.iconActive && styles.iconActive];
|
||||
}
|
||||
})(memoTheme(({
|
||||
theme
|
||||
}) => ({
|
||||
// Fit wrapper to actual icon size.
|
||||
display: 'flex',
|
||||
transition: theme.transitions.create('transform', {
|
||||
duration: theme.transitions.duration.shortest
|
||||
}),
|
||||
// Fix mouseLeave issue.
|
||||
// https://github.com/facebook/react/issues/4492
|
||||
pointerEvents: 'none',
|
||||
variants: [{
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.iconActive,
|
||||
style: {
|
||||
transform: 'scale(1.2)'
|
||||
}
|
||||
}, {
|
||||
props: ({
|
||||
ownerState
|
||||
}) => ownerState.iconEmpty,
|
||||
style: {
|
||||
color: (theme.vars || theme).palette.action.disabled
|
||||
}
|
||||
}]
|
||||
})));
|
||||
const RatingDecimal = styled('span', {
|
||||
name: 'MuiRating',
|
||||
slot: 'Decimal',
|
||||
shouldForwardProp: prop => slotShouldForwardProp(prop) && prop !== 'iconActive',
|
||||
overridesResolver: (props, styles) => {
|
||||
const {
|
||||
iconActive
|
||||
} = props;
|
||||
return [styles.decimal, iconActive && styles.iconActive];
|
||||
}
|
||||
})({
|
||||
position: 'relative',
|
||||
variants: [{
|
||||
props: ({
|
||||
iconActive
|
||||
}) => iconActive,
|
||||
style: {
|
||||
transform: 'scale(1.2)'
|
||||
}
|
||||
}]
|
||||
});
|
||||
function IconContainer(props) {
|
||||
const {
|
||||
value,
|
||||
...other
|
||||
} = props;
|
||||
return /*#__PURE__*/_jsx("span", {
|
||||
...other
|
||||
});
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? IconContainer.propTypes = {
|
||||
value: PropTypes.number.isRequired
|
||||
} : void 0;
|
||||
function RatingItem(props) {
|
||||
const {
|
||||
classes,
|
||||
disabled,
|
||||
emptyIcon,
|
||||
focus,
|
||||
getLabelText,
|
||||
highlightSelectedOnly,
|
||||
hover,
|
||||
icon,
|
||||
IconContainerComponent,
|
||||
isActive,
|
||||
itemValue,
|
||||
labelProps,
|
||||
name,
|
||||
onBlur,
|
||||
onChange,
|
||||
onClick,
|
||||
onFocus,
|
||||
readOnly,
|
||||
ownerState,
|
||||
ratingValue,
|
||||
ratingValueRounded,
|
||||
slots = {},
|
||||
slotProps = {}
|
||||
} = props;
|
||||
const isFilled = highlightSelectedOnly ? itemValue === ratingValue : itemValue <= ratingValue;
|
||||
const isHovered = itemValue <= hover;
|
||||
const isFocused = itemValue <= focus;
|
||||
const isChecked = itemValue === ratingValueRounded;
|
||||
|
||||
// "name" ensures unique IDs across different Rating components in React 17,
|
||||
// preventing one component from affecting another. React 18's useId already handles this.
|
||||
// Update to const id = useId(); when React 17 support is dropped.
|
||||
// More details: https://github.com/mui/material-ui/issues/40997
|
||||
const id = `${name}-${useId()}`;
|
||||
const externalForwardedProps = {
|
||||
slots,
|
||||
slotProps
|
||||
};
|
||||
const [IconSlot, iconSlotProps] = useSlot('icon', {
|
||||
elementType: RatingIcon,
|
||||
className: clsx(classes.icon, isFilled ? classes.iconFilled : classes.iconEmpty, isHovered && classes.iconHover, isFocused && classes.iconFocus, isActive && classes.iconActive),
|
||||
externalForwardedProps,
|
||||
ownerState: {
|
||||
...ownerState,
|
||||
iconEmpty: !isFilled,
|
||||
iconFilled: isFilled,
|
||||
iconHover: isHovered,
|
||||
iconFocus: isFocused,
|
||||
iconActive: isActive
|
||||
},
|
||||
additionalProps: {
|
||||
value: itemValue
|
||||
},
|
||||
internalForwardedProps: {
|
||||
// TODO: remove this in v7 because `IconContainerComponent` is deprecated
|
||||
// only forward if `slots.icon` is NOT provided
|
||||
as: IconContainerComponent
|
||||
}
|
||||
});
|
||||
const [LabelSlot, labelSlotProps] = useSlot('label', {
|
||||
elementType: RatingLabel,
|
||||
externalForwardedProps,
|
||||
ownerState: {
|
||||
...ownerState,
|
||||
emptyValueFocused: undefined
|
||||
},
|
||||
additionalProps: {
|
||||
style: labelProps?.style,
|
||||
htmlFor: id
|
||||
}
|
||||
});
|
||||
const container = /*#__PURE__*/_jsx(IconSlot, {
|
||||
...iconSlotProps,
|
||||
children: emptyIcon && !isFilled ? emptyIcon : icon
|
||||
});
|
||||
if (readOnly) {
|
||||
return /*#__PURE__*/_jsx("span", {
|
||||
...labelProps,
|
||||
children: container
|
||||
});
|
||||
}
|
||||
return /*#__PURE__*/_jsxs(React.Fragment, {
|
||||
children: [/*#__PURE__*/_jsxs(LabelSlot, {
|
||||
...labelSlotProps,
|
||||
children: [container, /*#__PURE__*/_jsx("span", {
|
||||
className: classes.visuallyHidden,
|
||||
children: getLabelText(itemValue)
|
||||
})]
|
||||
}), /*#__PURE__*/_jsx("input", {
|
||||
className: classes.visuallyHidden,
|
||||
onFocus: onFocus,
|
||||
onBlur: onBlur,
|
||||
onChange: onChange,
|
||||
onClick: onClick,
|
||||
disabled: disabled,
|
||||
value: itemValue,
|
||||
id: id,
|
||||
type: "radio",
|
||||
name: name,
|
||||
checked: isChecked
|
||||
})]
|
||||
});
|
||||
}
|
||||
process.env.NODE_ENV !== "production" ? RatingItem.propTypes = {
|
||||
classes: PropTypes.object.isRequired,
|
||||
disabled: PropTypes.bool.isRequired,
|
||||
emptyIcon: PropTypes.node,
|
||||
focus: PropTypes.number.isRequired,
|
||||
getLabelText: PropTypes.func.isRequired,
|
||||
highlightSelectedOnly: PropTypes.bool.isRequired,
|
||||
hover: PropTypes.number.isRequired,
|
||||
icon: PropTypes.node,
|
||||
IconContainerComponent: PropTypes.elementType.isRequired,
|
||||
isActive: PropTypes.bool.isRequired,
|
||||
itemValue: PropTypes.number.isRequired,
|
||||
labelProps: PropTypes.object,
|
||||
name: PropTypes.string,
|
||||
onBlur: PropTypes.func.isRequired,
|
||||
onChange: PropTypes.func.isRequired,
|
||||
onClick: PropTypes.func.isRequired,
|
||||
onFocus: PropTypes.func.isRequired,
|
||||
ownerState: PropTypes.object.isRequired,
|
||||
ratingValue: PropTypes.number,
|
||||
ratingValueRounded: PropTypes.number,
|
||||
readOnly: PropTypes.bool.isRequired,
|
||||
slotProps: PropTypes.object,
|
||||
slots: PropTypes.object
|
||||
} : void 0;
|
||||
const defaultIcon = /*#__PURE__*/_jsx(Star, {
|
||||
fontSize: "inherit"
|
||||
});
|
||||
const defaultEmptyIcon = /*#__PURE__*/_jsx(StarBorder, {
|
||||
fontSize: "inherit"
|
||||
});
|
||||
function defaultLabelText(value) {
|
||||
return `${value || '0'} Star${value !== 1 ? 's' : ''}`;
|
||||
}
|
||||
const Rating = /*#__PURE__*/React.forwardRef(function Rating(inProps, ref) {
|
||||
const props = useDefaultProps({
|
||||
name: 'MuiRating',
|
||||
props: inProps
|
||||
});
|
||||
const {
|
||||
component = 'span',
|
||||
className,
|
||||
defaultValue = null,
|
||||
disabled = false,
|
||||
emptyIcon = defaultEmptyIcon,
|
||||
emptyLabelText = 'Empty',
|
||||
getLabelText = defaultLabelText,
|
||||
highlightSelectedOnly = false,
|
||||
icon = defaultIcon,
|
||||
IconContainerComponent = IconContainer,
|
||||
max = 5,
|
||||
name: nameProp,
|
||||
onChange,
|
||||
onChangeActive,
|
||||
onMouseLeave,
|
||||
onMouseMove,
|
||||
precision = 1,
|
||||
readOnly = false,
|
||||
size = 'medium',
|
||||
value: valueProp,
|
||||
slots = {},
|
||||
slotProps = {},
|
||||
...other
|
||||
} = props;
|
||||
const name = useId(nameProp);
|
||||
const [valueDerived, setValueState] = useControlled({
|
||||
controlled: valueProp,
|
||||
default: defaultValue,
|
||||
name: 'Rating'
|
||||
});
|
||||
const valueRounded = roundValueToPrecision(valueDerived, precision);
|
||||
const isRtl = useRtl();
|
||||
const [{
|
||||
hover,
|
||||
focus
|
||||
}, setState] = React.useState({
|
||||
hover: -1,
|
||||
focus: -1
|
||||
});
|
||||
let value = valueRounded;
|
||||
if (hover !== -1) {
|
||||
value = hover;
|
||||
}
|
||||
if (focus !== -1) {
|
||||
value = focus;
|
||||
}
|
||||
const [focusVisible, setFocusVisible] = React.useState(false);
|
||||
const rootRef = React.useRef();
|
||||
const handleRef = useForkRef(rootRef, ref);
|
||||
const handleMouseMove = event => {
|
||||
if (onMouseMove) {
|
||||
onMouseMove(event);
|
||||
}
|
||||
const rootNode = rootRef.current;
|
||||
const {
|
||||
right,
|
||||
left,
|
||||
width: containerWidth
|
||||
} = rootNode.getBoundingClientRect();
|
||||
let percent;
|
||||
if (isRtl) {
|
||||
percent = (right - event.clientX) / containerWidth;
|
||||
} else {
|
||||
percent = (event.clientX - left) / containerWidth;
|
||||
}
|
||||
let newHover = roundValueToPrecision(max * percent + precision / 2, precision);
|
||||
newHover = clamp(newHover, precision, max);
|
||||
setState(prev => prev.hover === newHover && prev.focus === newHover ? prev : {
|
||||
hover: newHover,
|
||||
focus: newHover
|
||||
});
|
||||
setFocusVisible(false);
|
||||
if (onChangeActive && hover !== newHover) {
|
||||
onChangeActive(event, newHover);
|
||||
}
|
||||
};
|
||||
const handleMouseLeave = event => {
|
||||
if (onMouseLeave) {
|
||||
onMouseLeave(event);
|
||||
}
|
||||
const newHover = -1;
|
||||
setState({
|
||||
hover: newHover,
|
||||
focus: newHover
|
||||
});
|
||||
if (onChangeActive && hover !== newHover) {
|
||||
onChangeActive(event, newHover);
|
||||
}
|
||||
};
|
||||
const handleChange = event => {
|
||||
let newValue = event.target.value === '' ? null : parseFloat(event.target.value);
|
||||
|
||||
// Give mouse priority over keyboard
|
||||
// Fix https://github.com/mui/material-ui/issues/22827
|
||||
if (hover !== -1) {
|
||||
newValue = hover;
|
||||
}
|
||||
setValueState(newValue);
|
||||
if (onChange) {
|
||||
onChange(event, newValue);
|
||||
}
|
||||
};
|
||||
const handleClear = event => {
|
||||
// Ignore keyboard events
|
||||
// https://github.com/facebook/react/issues/7407
|
||||
if (event.clientX === 0 && event.clientY === 0) {
|
||||
return;
|
||||
}
|
||||
setState({
|
||||
hover: -1,
|
||||
focus: -1
|
||||
});
|
||||
setValueState(null);
|
||||
if (onChange && parseFloat(event.target.value) === valueRounded) {
|
||||
onChange(event, null);
|
||||
}
|
||||
};
|
||||
const handleFocus = event => {
|
||||
if (isFocusVisible(event.target)) {
|
||||
setFocusVisible(true);
|
||||
}
|
||||
const newFocus = parseFloat(event.target.value);
|
||||
setState(prev => ({
|
||||
hover: prev.hover,
|
||||
focus: newFocus
|
||||
}));
|
||||
};
|
||||
const handleBlur = event => {
|
||||
if (hover !== -1) {
|
||||
return;
|
||||
}
|
||||
if (!isFocusVisible(event.target)) {
|
||||
setFocusVisible(false);
|
||||
}
|
||||
const newFocus = -1;
|
||||
setState(prev => ({
|
||||
hover: prev.hover,
|
||||
focus: newFocus
|
||||
}));
|
||||
};
|
||||
const [emptyValueFocused, setEmptyValueFocused] = React.useState(false);
|
||||
const ownerState = {
|
||||
...props,
|
||||
component,
|
||||
defaultValue,
|
||||
disabled,
|
||||
emptyIcon,
|
||||
emptyLabelText,
|
||||
emptyValueFocused,
|
||||
focusVisible,
|
||||
getLabelText,
|
||||
icon,
|
||||
IconContainerComponent,
|
||||
max,
|
||||
precision,
|
||||
readOnly,
|
||||
size
|
||||
};
|
||||
const classes = useUtilityClasses(ownerState);
|
||||
const externalForwardedProps = {
|
||||
slots,
|
||||
slotProps
|
||||
};
|
||||
const [RootSlot, rootSlotProps] = useSlot('root', {
|
||||
ref: handleRef,
|
||||
className: clsx(classes.root, className),
|
||||
elementType: RatingRoot,
|
||||
externalForwardedProps: {
|
||||
...externalForwardedProps,
|
||||
...other,
|
||||
component
|
||||
},
|
||||
getSlotProps: handlers => ({
|
||||
...handlers,
|
||||
onMouseMove: event => {
|
||||
handleMouseMove(event);
|
||||
handlers.onMouseMove?.(event);
|
||||
},
|
||||
onMouseLeave: event => {
|
||||
handleMouseLeave(event);
|
||||
handlers.onMouseLeave?.(event);
|
||||
}
|
||||
}),
|
||||
ownerState,
|
||||
additionalProps: {
|
||||
role: readOnly ? 'img' : null,
|
||||
'aria-label': readOnly ? getLabelText(value) : null
|
||||
}
|
||||
});
|
||||
const [LabelSlot, labelSlotProps] = useSlot('label', {
|
||||
className: clsx(classes.label, classes.labelEmptyValue),
|
||||
elementType: RatingLabel,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
const [DecimalSlot, decimalSlotProps] = useSlot('decimal', {
|
||||
className: classes.decimal,
|
||||
elementType: RatingDecimal,
|
||||
externalForwardedProps,
|
||||
ownerState
|
||||
});
|
||||
return /*#__PURE__*/_jsxs(RootSlot, {
|
||||
...rootSlotProps,
|
||||
children: [Array.from(new Array(max)).map((_, index) => {
|
||||
const itemValue = index + 1;
|
||||
const ratingItemProps = {
|
||||
classes,
|
||||
disabled,
|
||||
emptyIcon,
|
||||
focus,
|
||||
getLabelText,
|
||||
highlightSelectedOnly,
|
||||
hover,
|
||||
icon,
|
||||
IconContainerComponent,
|
||||
name,
|
||||
onBlur: handleBlur,
|
||||
onChange: handleChange,
|
||||
onClick: handleClear,
|
||||
onFocus: handleFocus,
|
||||
ratingValue: value,
|
||||
ratingValueRounded: valueRounded,
|
||||
readOnly,
|
||||
ownerState,
|
||||
slots,
|
||||
slotProps
|
||||
};
|
||||
const isActive = itemValue === Math.ceil(value) && (hover !== -1 || focus !== -1);
|
||||
if (precision < 1) {
|
||||
const items = Array.from(new Array(1 / precision));
|
||||
return /*#__PURE__*/_createElement(DecimalSlot, {
|
||||
...decimalSlotProps,
|
||||
key: itemValue,
|
||||
className: clsx(decimalSlotProps.className, isActive && classes.iconActive),
|
||||
iconActive: isActive
|
||||
}, items.map(($, indexDecimal) => {
|
||||
const itemDecimalValue = roundValueToPrecision(itemValue - 1 + (indexDecimal + 1) * precision, precision);
|
||||
return /*#__PURE__*/_jsx(RatingItem, {
|
||||
...ratingItemProps,
|
||||
// The icon is already displayed as active
|
||||
isActive: false,
|
||||
itemValue: itemDecimalValue,
|
||||
labelProps: {
|
||||
style: items.length - 1 === indexDecimal ? {} : {
|
||||
width: itemDecimalValue === value ? `${(indexDecimal + 1) * precision * 100}%` : '0%',
|
||||
overflow: 'hidden',
|
||||
position: 'absolute'
|
||||
}
|
||||
}
|
||||
}, itemDecimalValue);
|
||||
}));
|
||||
}
|
||||
return /*#__PURE__*/_jsx(RatingItem, {
|
||||
...ratingItemProps,
|
||||
isActive: isActive,
|
||||
itemValue: itemValue
|
||||
}, itemValue);
|
||||
}), !readOnly && !disabled && /*#__PURE__*/_jsxs(LabelSlot, {
|
||||
...labelSlotProps,
|
||||
children: [/*#__PURE__*/_jsx("input", {
|
||||
className: classes.visuallyHidden,
|
||||
value: "",
|
||||
id: `${name}-empty`,
|
||||
type: "radio",
|
||||
name: name,
|
||||
checked: valueRounded == null,
|
||||
onFocus: () => setEmptyValueFocused(true),
|
||||
onBlur: () => setEmptyValueFocused(false),
|
||||
onChange: handleChange
|
||||
}), /*#__PURE__*/_jsx("span", {
|
||||
className: classes.visuallyHidden,
|
||||
children: emptyLabelText
|
||||
})]
|
||||
})]
|
||||
});
|
||||
});
|
||||
process.env.NODE_ENV !== "production" ? Rating.propTypes /* remove-proptypes */ = {
|
||||
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
||||
// │ These PropTypes are generated from the TypeScript type definitions. │
|
||||
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
||||
// └─────────────────────────────────────────────────────────────────────┘
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
children: PropTypes.node,
|
||||
/**
|
||||
* Override or extend the styles applied to the component.
|
||||
*/
|
||||
classes: PropTypes.object,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
className: PropTypes.string,
|
||||
/**
|
||||
* The component used for the root node.
|
||||
* Either a string to use a HTML element or a component.
|
||||
*/
|
||||
component: PropTypes.elementType,
|
||||
/**
|
||||
* The default value. Use when the component is not controlled.
|
||||
* @default null
|
||||
*/
|
||||
defaultValue: PropTypes.number,
|
||||
/**
|
||||
* If `true`, the component is disabled.
|
||||
* @default false
|
||||
*/
|
||||
disabled: PropTypes.bool,
|
||||
/**
|
||||
* The icon to display when empty.
|
||||
* @default <StarBorder fontSize="inherit" />
|
||||
*/
|
||||
emptyIcon: PropTypes.node,
|
||||
/**
|
||||
* The label read when the rating input is empty.
|
||||
* @default 'Empty'
|
||||
*/
|
||||
emptyLabelText: PropTypes.node,
|
||||
/**
|
||||
* Accepts a function which returns a string value that provides a user-friendly name for the current value of the rating.
|
||||
* This is important for screen reader users.
|
||||
*
|
||||
* For localization purposes, you can use the provided [translations](https://mui.com/material-ui/guides/localization/).
|
||||
* @param {number} value The rating label's value to format.
|
||||
* @returns {string}
|
||||
* @default function defaultLabelText(value) {
|
||||
* return `${value || '0'} Star${value !== 1 ? 's' : ''}`;
|
||||
* }
|
||||
*/
|
||||
getLabelText: PropTypes.func,
|
||||
/**
|
||||
* If `true`, only the selected icon will be highlighted.
|
||||
* @default false
|
||||
*/
|
||||
highlightSelectedOnly: PropTypes.bool,
|
||||
/**
|
||||
* The icon to display.
|
||||
* @default <Star fontSize="inherit" />
|
||||
*/
|
||||
icon: PropTypes.node,
|
||||
/**
|
||||
* The component containing the icon.
|
||||
* @deprecated Use `slotProps.icon.component` instead. This prop will be removed in a future major release. See [Migrating from deprecated APIs](/material-ui/migration/migrating-from-deprecated-apis/) for more details.
|
||||
* @default function IconContainer(props) {
|
||||
* const { value, ...other } = props;
|
||||
* return <span {...other} />;
|
||||
* }
|
||||
*/
|
||||
IconContainerComponent: PropTypes.elementType,
|
||||
/**
|
||||
* Maximum rating.
|
||||
* @default 5
|
||||
*/
|
||||
max: PropTypes.number,
|
||||
/**
|
||||
* The name attribute of the radio `input` elements.
|
||||
* This input `name` should be unique within the page.
|
||||
* Being unique within a form is insufficient since the `name` is used to generate IDs.
|
||||
*/
|
||||
name: PropTypes.string,
|
||||
/**
|
||||
* Callback fired when the value changes.
|
||||
* @param {React.SyntheticEvent} event The event source of the callback.
|
||||
* @param {number|null} value The new value.
|
||||
*/
|
||||
onChange: PropTypes.func,
|
||||
/**
|
||||
* Callback function that is fired when the hover state changes.
|
||||
* @param {React.SyntheticEvent} event The event source of the callback.
|
||||
* @param {number} value The new value.
|
||||
*/
|
||||
onChangeActive: PropTypes.func,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
onMouseLeave: PropTypes.func,
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
onMouseMove: PropTypes.func,
|
||||
/**
|
||||
* The minimum increment value change allowed.
|
||||
* @default 1
|
||||
*/
|
||||
precision: chainPropTypes(PropTypes.number, props => {
|
||||
if (props.precision < 0.1) {
|
||||
return new Error(['MUI: The prop `precision` should be above 0.1.', 'A value below this limit has an imperceptible impact.'].join('\n'));
|
||||
}
|
||||
return null;
|
||||
}),
|
||||
/**
|
||||
* Removes all hover effects and pointer events.
|
||||
* @default false
|
||||
*/
|
||||
readOnly: PropTypes.bool,
|
||||
/**
|
||||
* The size of the component.
|
||||
* @default 'medium'
|
||||
*/
|
||||
size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['small', 'medium', 'large']), PropTypes.string]),
|
||||
/**
|
||||
* The props used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slotProps: PropTypes.shape({
|
||||
decimal: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
icon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
label: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
||||
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
||||
}),
|
||||
/**
|
||||
* The components used for each slot inside.
|
||||
* @default {}
|
||||
*/
|
||||
slots: PropTypes.shape({
|
||||
decimal: PropTypes.elementType,
|
||||
icon: PropTypes.elementType,
|
||||
label: PropTypes.elementType,
|
||||
root: PropTypes.elementType
|
||||
}),
|
||||
/**
|
||||
* 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 rating value.
|
||||
*/
|
||||
value: PropTypes.number
|
||||
} : void 0;
|
||||
export default Rating;
|
||||
4
node_modules/@mui/material/esm/Rating/index.d.ts
generated
vendored
Normal file
4
node_modules/@mui/material/esm/Rating/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
export { default } from "./Rating.js";
|
||||
export * from "./Rating.js";
|
||||
export { default as ratingClasses } from "./ratingClasses.js";
|
||||
export * from "./ratingClasses.js";
|
||||
3
node_modules/@mui/material/esm/Rating/index.js
generated
vendored
Normal file
3
node_modules/@mui/material/esm/Rating/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export { default } from "./Rating.js";
|
||||
export { default as ratingClasses } from "./ratingClasses.js";
|
||||
export * from "./ratingClasses.js";
|
||||
40
node_modules/@mui/material/esm/Rating/ratingClasses.d.ts
generated
vendored
Normal file
40
node_modules/@mui/material/esm/Rating/ratingClasses.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
export interface RatingClasses {
|
||||
/** Styles applied to the root element. */
|
||||
root: string;
|
||||
/** Styles applied to the root element if `size="small"`. */
|
||||
sizeSmall: string;
|
||||
/** Styles applied to the root element if `size="medium"`. */
|
||||
sizeMedium: string;
|
||||
/** Styles applied to the root element if `size="large"`. */
|
||||
sizeLarge: string;
|
||||
/** Styles applied to the root element if `readOnly={true}`. */
|
||||
readOnly: string;
|
||||
/** State class applied to the root element if `disabled={true}`. */
|
||||
disabled: string;
|
||||
/** State class applied to the root element if keyboard focused. */
|
||||
focusVisible: string;
|
||||
/** Visually hide an element. */
|
||||
visuallyHidden: string;
|
||||
/** Styles applied to the label elements. */
|
||||
label: string;
|
||||
/** Styles applied to the label of the "no value" input when it is active. */
|
||||
labelEmptyValueActive: string;
|
||||
/** Styles applied to the icon wrapping elements. */
|
||||
icon: string;
|
||||
/** Styles applied to the icon wrapping elements when empty. */
|
||||
iconEmpty: string;
|
||||
/** Styles applied to the icon wrapping elements when filled. */
|
||||
iconFilled: string;
|
||||
/** Styles applied to the icon wrapping elements when hover. */
|
||||
iconHover: string;
|
||||
/** Styles applied to the icon wrapping elements when focus. */
|
||||
iconFocus: string;
|
||||
/** Styles applied to the icon wrapping elements when active. */
|
||||
iconActive: string;
|
||||
/** Styles applied to the icon wrapping elements when decimals are necessary. */
|
||||
decimal: string;
|
||||
}
|
||||
export type RatingClassKey = keyof RatingClasses;
|
||||
export declare function getRatingUtilityClass(slot: string): string;
|
||||
declare const ratingClasses: RatingClasses;
|
||||
export default ratingClasses;
|
||||
7
node_modules/@mui/material/esm/Rating/ratingClasses.js
generated
vendored
Normal file
7
node_modules/@mui/material/esm/Rating/ratingClasses.js
generated
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
|
||||
import generateUtilityClass from '@mui/utils/generateUtilityClass';
|
||||
export function getRatingUtilityClass(slot) {
|
||||
return generateUtilityClass('MuiRating', slot);
|
||||
}
|
||||
const ratingClasses = generateUtilityClasses('MuiRating', ['root', 'sizeSmall', 'sizeMedium', 'sizeLarge', 'readOnly', 'disabled', 'focusVisible', 'visuallyHidden', 'pristine', 'label', 'labelEmptyValueActive', 'icon', 'iconEmpty', 'iconFilled', 'iconHover', 'iconFocus', 'iconActive', 'decimal']);
|
||||
export default ratingClasses;
|
||||
Loading…
Add table
Add a link
Reference in a new issue