main
Last change
on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import Typography from '@mui/material/Typography';
|
---|
| 3 | import Paper, { PaperProps } from '@mui/material/Paper';
|
---|
| 4 | import Stack, { StackProps } from '@mui/material/Stack';
|
---|
| 5 | // types
|
---|
[057453c] | 6 | import { Customer } from 'src/schemas';
|
---|
[5d6f37a] | 7 | // components
|
---|
| 8 | import Label from 'src/components/label';
|
---|
| 9 | import { createFullAddress } from 'src/utils/create-full-address';
|
---|
| 10 |
|
---|
| 11 | // ----------------------------------------------------------------------
|
---|
| 12 |
|
---|
| 13 | type Props = PaperProps &
|
---|
| 14 | StackProps & {
|
---|
| 15 | action?: React.ReactNode;
|
---|
| 16 | company: Customer;
|
---|
| 17 | };
|
---|
| 18 |
|
---|
| 19 | export default function AddressItem({ company, action, sx, ...other }: Props) {
|
---|
| 20 | const { name, address, phoneNumber } = company;
|
---|
| 21 |
|
---|
| 22 | return (
|
---|
| 23 | <Stack
|
---|
| 24 | component={Paper}
|
---|
| 25 | spacing={2}
|
---|
| 26 | alignItems={{ md: 'flex-end' }}
|
---|
| 27 | direction={{ xs: 'column', md: 'row' }}
|
---|
| 28 | sx={{
|
---|
| 29 | position: 'relative',
|
---|
| 30 | ...sx,
|
---|
| 31 | }}
|
---|
| 32 | {...other}
|
---|
| 33 | >
|
---|
| 34 | <Stack flexGrow={1} spacing={1}>
|
---|
| 35 | <Stack direction="row" alignItems="center">
|
---|
| 36 | <Typography variant="subtitle2">{name}</Typography>
|
---|
| 37 |
|
---|
| 38 | <Label color="info" sx={{ ml: 1 }}>
|
---|
| 39 | Default
|
---|
| 40 | </Label>
|
---|
| 41 | </Stack>
|
---|
| 42 |
|
---|
| 43 | <Typography variant="body2" sx={{ color: 'text.secondary' }}>
|
---|
| 44 | {createFullAddress(address)}
|
---|
| 45 | </Typography>
|
---|
| 46 |
|
---|
| 47 | <Typography variant="body2" sx={{ color: 'text.secondary' }}>
|
---|
| 48 | {phoneNumber}
|
---|
| 49 | </Typography>
|
---|
| 50 | </Stack>
|
---|
| 51 |
|
---|
| 52 | {action && action}
|
---|
| 53 | </Stack>
|
---|
| 54 | );
|
---|
| 55 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.