-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
/
Copy pathImageListItemBar.js
233 lines (215 loc) · 6.23 KB
/
ImageListItemBar.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import { unstable_composeClasses as composeClasses } from '@mui/base';
import clsx from 'clsx';
import PropTypes from 'prop-types';
import * as React from 'react';
import styled from '../styles/styled';
import useThemeProps from '../styles/useThemeProps';
import capitalize from '../utils/capitalize';
import { getImageListItemBarUtilityClass } from './imageListItemBarClasses';
const useUtilityClasses = (ownerState) => {
const { classes, position, actionIcon, actionPosition } = ownerState;
const slots = {
root: ['root', `position${capitalize(position)}`],
titleWrap: [
'titleWrap',
`titleWrap${capitalize(position)}`,
actionIcon && `titleWrapActionPos${capitalize(actionPosition)}`,
],
title: ['title'],
subtitle: ['subtitle'],
actionIcon: ['actionIcon', `actionIconActionPos${capitalize(actionPosition)}`],
};
return composeClasses(slots, getImageListItemBarUtilityClass, classes);
};
const ImageListItemBarRoot = styled('div', {
name: 'MuiImageListItemBar',
slot: 'Root',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [styles.root, styles[`position${capitalize(ownerState.position)}`]];
},
})(({ theme, ownerState }) => {
return {
position: 'absolute',
left: 0,
right: 0,
background: 'rgba(0, 0, 0, 0.5)',
display: 'flex',
alignItems: 'center',
fontFamily: theme.typography.fontFamily,
...(ownerState.position === 'bottom' && {
bottom: 0,
}),
...(ownerState.position === 'top' && {
top: 0,
}),
...(ownerState.position === 'below' && {
position: 'relative',
background: 'transparent',
alignItems: 'normal',
}),
};
});
const ImageListItemBarTitleWrap = styled('div', {
name: 'MuiImageListItemBar',
slot: 'TitleWrap',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [
styles.titleWrap,
styles[`titleWrap${capitalize(ownerState.position)}`],
ownerState.actionIcon && styles[`titleWrapActionPos${capitalize(ownerState.actionPosition)}`],
];
},
})(({ theme, ownerState }) => {
return {
flexGrow: 1,
padding: '12px 16px',
color: (theme.vars || theme).palette.common.white,
overflow: 'hidden',
...(ownerState.position === 'below' && {
padding: '6px 0 12px',
color: 'inherit',
}),
...(ownerState.actionIcon &&
ownerState.actionPosition === 'left' && {
paddingLeft: 0,
}),
...(ownerState.actionIcon &&
ownerState.actionPosition === 'right' && {
paddingRight: 0,
}),
};
});
const ImageListItemBarTitle = styled('div', {
name: 'MuiImageListItemBar',
slot: 'Title',
overridesResolver: (props, styles) => styles.title,
})(({ theme }) => {
return {
fontSize: theme.typography.pxToRem(16),
lineHeight: '24px',
textOverflow: 'ellipsis',
overflow: 'hidden',
whiteSpace: 'nowrap',
};
});
const ImageListItemBarSubtitle = styled('div', {
name: 'MuiImageListItemBar',
slot: 'Subtitle',
overridesResolver: (props, styles) => styles.subtitle,
})(({ theme }) => {
return {
fontSize: theme.typography.pxToRem(12),
lineHeight: 1,
textOverflow: 'ellipsis',
overflow: 'hidden',
whiteSpace: 'nowrap',
};
});
const ImageListItemBarActionIcon = styled('div', {
name: 'MuiImageListItemBar',
slot: 'ActionIcon',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [
styles.actionIcon,
styles[`actionIconActionPos${capitalize(ownerState.actionPosition)}`],
];
},
})(({ ownerState }) => {
return {
...(ownerState.actionPosition === 'left' && {
order: -1,
}),
};
});
const ImageListItemBar = React.forwardRef(function ImageListItemBar(inProps, ref) {
const props = useThemeProps({
props: inProps,
name: 'MuiImageListItemBar',
});
const {
actionIcon,
actionPosition = 'right',
className,
subtitle,
title,
position = 'bottom',
...other
} = props;
const ownerState = { ...props, position, actionPosition };
const classes = useUtilityClasses(ownerState);
return (
<ImageListItemBarRoot
ownerState={ownerState}
className={clsx(classes.root, className)}
ref={ref}
{...other}
>
<ImageListItemBarTitleWrap ownerState={ownerState} className={classes.titleWrap}>
<ImageListItemBarTitle className={classes.title}>{title}</ImageListItemBarTitle>
{subtitle ? (
<ImageListItemBarSubtitle className={classes.subtitle}>
{subtitle}
</ImageListItemBarSubtitle>
) : null}
</ImageListItemBarTitleWrap>
{actionIcon ? (
<ImageListItemBarActionIcon ownerState={ownerState} className={classes.actionIcon}>
{actionIcon}
</ImageListItemBarActionIcon>
) : null}
</ImageListItemBarRoot>
);
});
ImageListItemBar.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" |
// ----------------------------------------------------------------------
/**
* An IconButton element to be used as secondary action target
* (primary action target is the item itself).
*/
actionIcon: PropTypes.node,
/**
* Position of secondary action IconButton.
* @default 'right'
*/
actionPosition: PropTypes.oneOf(['left', 'right']),
/**
* @ignore
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* Position of the title bar.
* @default 'bottom'
*/
position: PropTypes.oneOf(['below', 'bottom', 'top']),
/**
* String or element serving as subtitle (support text).
*/
subtitle: PropTypes.node,
/**
* 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,
]),
/**
* Title to be displayed.
*/
title: PropTypes.node,
};
export default ImageListItemBar;