-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathTimelineContent.js
89 lines (78 loc) · 2.9 KB
/
TimelineContent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { styled, useThemeProps } from '@mui/material/styles';
import { unstable_composeClasses as composeClasses } from '@mui/base';
import Typography from '@mui/material/Typography';
import TimelineContext from '../Timeline/TimelineContext';
import { getTimelineContentUtilityClass } from './timelineContentClasses';
import convertTimelinePositionToClass from '../internal/convertTimelinePositionToClass';
const useUtilityClasses = (ownerState) => {
const { position, classes } = ownerState;
const slots = {
root: ['root', convertTimelinePositionToClass(position)],
};
return composeClasses(slots, getTimelineContentUtilityClass, classes);
};
const TimelineContentRoot = styled(Typography, {
name: 'MuiTimelineContent',
slot: 'Root',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [styles.root, styles[convertTimelinePositionToClass(ownerState.position)]];
},
})(({ ownerState }) => ({
flex: 1,
padding: '6px 16px',
textAlign: 'left',
...(ownerState.position === 'left' && {
textAlign: 'right',
}),
}));
const TimelineContent = React.forwardRef(function TimelineContent(inProps, ref) {
const props = useThemeProps({ props: inProps, name: 'MuiTimelineContent' });
const { className, ...other } = props;
const { position: positionContext } = React.useContext(TimelineContext);
const ownerState = {
...props,
position: positionContext || 'right',
};
const classes = useUtilityClasses(ownerState);
return (
<TimelineContentRoot
component="div"
className={clsx(classes.root, className)}
ownerState={ownerState}
ref={ref}
{...other}
/>
);
});
TimelineContent.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`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* 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 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,
]),
};
export default TimelineContent;