-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDetailBrowser.tsx
77 lines (74 loc) · 2.34 KB
/
DetailBrowser.tsx
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
import { Box, Button, Stack } from '@mui/material'
import ArrowBackIcon from '@mui/icons-material/ArrowBack'
import ArrowForwardIcon from '@mui/icons-material/ArrowForward'
import { useDetailContext } from './Context/DetailContext'
import { useLocation, useNavigate } from 'react-router-dom'
import { usePageContext } from '../Page'
export const DetailBrowser = <T extends object>() => {
const { data, mode } = useDetailContext<T>()
const navigate = useNavigate()
const location = useLocation()
const { idList, idFieldName, viewName, createTitle, createSubtitle } = usePageContext<T>()
const idListExists = idList?.length > 0
const currentIndex = idList.indexOf((data as { [key: string]: string })[idFieldName])
const nextIndex = currentIndex + 1
const previousIndex = currentIndex - 1
const style = {
width: '50em',
marginLeft: '0em',
overflow: 'hidden',
whiteSpace: 'pre-wrap',
textOverflow: 'ellipsis',
position: 'relative',
textAlign: 'left',
fontSize: '2.3em',
}
const getTitleText = () => {
if (mode.read) {
return `${createTitle(data)}`
} else if (mode.new) {
return `Creating new ${viewName}`
}
return `${createTitle(data)}`
}
const getSubtitleText = () => {
if (mode.read) {
return `${createSubtitle(data)}`
} else if (mode.new) {
return ''
}
return `${createSubtitle(data)}`
}
const search = location.search
return (
<Box
sx={{
alignItems: 'left',
justifyContent: 'space-between',
height: '100%',
display: 'flex',
gap: '1em',
}}
>
<Stack sx={{ gap: '0.5em', width: '85%' }}>
<Box sx={style}>{getTitleText()}</Box>
<Box sx={{ ...style, fontSize: '1.2em' }}>{getSubtitleText()}</Box>
</Stack>
{idListExists && mode.read && (
<div>
{previousIndex >= 0 && (
<Button onClick={() => navigate(`/${viewName}/${encodeURIComponent(idList[previousIndex])}${search}`)}>
<ArrowBackIcon />
</Button>
)}
{`${currentIndex + 1} of ${idList.length}`}
{nextIndex < idList.length && (
<Button onClick={() => navigate(`/${viewName}/${encodeURIComponent(idList[nextIndex])}${search}`)}>
<ArrowForwardIcon />
</Button>
)}
</div>
)}
</Box>
)
}