source: src/layouts/_common/searchbar/result-item.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.9 KB
Line 
1// @mui
2import { alpha } from '@mui/material/styles';
3import Box from '@mui/material/Box';
4import ListItemText from '@mui/material/ListItemText';
5import ListItemButton from '@mui/material/ListItemButton';
6// components
7import Label from 'src/components/label';
8
9// ----------------------------------------------------------------------
10
11type Props = {
12 title: {
13 text: string;
14 highlight: boolean;
15 }[];
16 path: {
17 text: string;
18 highlight: boolean;
19 }[];
20 groupLabel: string;
21 onClickItem: VoidFunction;
22};
23
24export default function ResultItem({ title, path, groupLabel, onClickItem }: Props) {
25 return (
26 <ListItemButton
27 onClick={onClickItem}
28 sx={{
29 borderWidth: 1,
30 borderStyle: 'dashed',
31 borderColor: 'transparent',
32 borderBottomColor: (theme) => theme.palette.divider,
33 '&:hover': {
34 borderRadius: 1,
35 borderColor: (theme) => theme.palette.primary.main,
36 backgroundColor: (theme) =>
37 alpha(theme.palette.primary.main, theme.palette.action.hoverOpacity),
38 },
39 }}
40 >
41 <ListItemText
42 primaryTypographyProps={{
43 typography: 'subtitle2',
44 sx: { textTransform: 'capitalize' },
45 }}
46 secondaryTypographyProps={{ typography: 'caption' }}
47 primary={title.map((part, index) => (
48 <Box
49 key={index}
50 component="span"
51 sx={{
52 color: part.highlight ? 'primary.main' : 'text.primary',
53 }}
54 >
55 {part.text}
56 </Box>
57 ))}
58 secondary={path.map((part, index) => (
59 <Box
60 key={index}
61 component="span"
62 sx={{
63 color: part.highlight ? 'primary.main' : 'text.secondary',
64 }}
65 >
66 {part.text}
67 </Box>
68 ))}
69 />
70
71 {groupLabel && <Label color="info">{groupLabel}</Label>}
72 </ListItemButton>
73 );
74}
Note: See TracBrowser for help on using the repository browser.