-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathEditReferenceDropdown.tsx
More file actions
262 lines (250 loc) · 6.8 KB
/
EditReferenceDropdown.tsx
File metadata and controls
262 lines (250 loc) · 6.8 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
import {
Box,
Button,
Checkbox,
Dialog,
DialogActions,
DialogContent,
DialogTitle,
FormControlLabel,
NativeSelect,
Typography,
} from '@mui/material';
import type { ChangeEvent } from 'react';
import { useEffect, useState } from 'react';
const suffixOptions = ['', 'a', 'b', 'c', 'd', 'e'];
const selectSx = {
minWidth: 64,
'& .MuiNativeSelect-select': {
fontSize: 40,
lineHeight: 1.1,
textAlign: 'center',
pr: 3,
},
'& .MuiNativeSelect-icon': {
fontSize: 24,
right: 0,
},
};
const verseSelectSx = {
...selectSx,
'& .MuiNativeSelect-select': {
...selectSx['& .MuiNativeSelect-select'],
fontSize: 28,
},
};
const suffixOptionStyle = {
fontSize: 50,
};
const verseOptionStyle = {
fontSize: 48,
};
export interface EditReferenceValue {
splitVerse: boolean;
canSplit: boolean;
startChapter: number;
startVerse: number;
startSuffix: string;
endChapter: number;
endVerse: number;
endSuffix: string;
}
interface EditReferenceDropdownProps {
open: boolean;
limits: string;
maxVerse: number;
verseOptions: number[];
title: string;
cancelLabel: string;
saveLabel: string;
splitVerseLabel: string;
value: EditReferenceValue;
onCancel: () => void;
onSave: (value: EditReferenceValue) => void;
}
export default function EditReferenceDropdown({
open,
limits,
maxVerse,
verseOptions,
title,
cancelLabel,
saveLabel,
splitVerseLabel,
value,
onCancel,
onSave,
}: EditReferenceDropdownProps) {
const [draft, setDraft] = useState<EditReferenceValue>(value);
const verseNumberOptions = Array.from(
new Set([...verseOptions, draft.startVerse, draft.endVerse, maxVerse])
).sort((left, right) => left - right);
useEffect(() => {
setDraft(value);
}, [value]);
const handleSplitChange = (
event: ChangeEvent<HTMLInputElement>,
checked: boolean
) => {
setDraft((current) => ({
...current,
splitVerse: checked,
}));
};
const handleSuffixChange =
(key: 'startSuffix' | 'endSuffix') =>
(event: ChangeEvent<HTMLSelectElement>) => {
const nextSuffix = event.target.value.toLowerCase();
setDraft((current) => ({
...current,
[key]: nextSuffix,
}));
};
const handleVerseChange =
(key: 'startVerse' | 'endVerse') =>
(event: ChangeEvent<HTMLSelectElement>) => {
const nextVerse = parseInt(event.target.value, 10);
if (Number.isNaN(nextVerse)) return;
setDraft((current) => ({
...current,
[key]: nextVerse,
}));
};
const displayEndChapter = draft.endChapter;
const displayEndVerse = draft.endVerse;
const canEditEndSuffix = draft.canSplit || draft.splitVerse;
return (
<Dialog
open={open}
onClose={onCancel}
aria-labelledby="edit-reference-dialog-title"
fullWidth
maxWidth="xs"
>
<DialogTitle id="edit-reference-dialog-title">
{`${title} ${limits}`}
</DialogTitle>
<DialogContent sx={{ pt: 1 }}>
<Box
sx={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
gap: 1.5,
mb: 2,
fontVariantNumeric: 'tabular-nums',
}}
>
<Box sx={{ textAlign: 'center' }}>
<Box
sx={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: 0.5,
}}
>
<Typography
sx={{ fontSize: 28 }}
>{`${draft.startChapter}:`}</Typography>
<NativeSelect
value={draft.startVerse}
onChange={handleVerseChange('startVerse')}
inputProps={{ 'aria-label': 'start verse number' }}
sx={verseSelectSx}
>
{verseNumberOptions.map((option) => (
<option
key={`start-verse-${option}`}
value={option}
style={verseOptionStyle}
>
{option}
</option>
))}
</NativeSelect>
</Box>
<NativeSelect
value={draft.startSuffix}
onChange={handleSuffixChange('startSuffix')}
inputProps={{ 'aria-label': 'start verse suffix' }}
sx={selectSx}
>
{suffixOptions.map((option) => (
<option
key={option || 'none-start'}
value={option}
style={suffixOptionStyle}
>
{option || ' '}
</option>
))}
</NativeSelect>
</Box>
<Typography variant="h6">-</Typography>
<Box sx={{ textAlign: 'center' }}>
<Box
sx={{
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: 0.5,
}}
>
<Typography
sx={{ fontSize: 24 }}
>{`${displayEndChapter}:`}</Typography>
<NativeSelect
value={displayEndVerse}
onChange={handleVerseChange('endVerse')}
disabled={!draft.splitVerse}
inputProps={{ 'aria-label': 'end verse number' }}
sx={verseSelectSx}
>
{verseNumberOptions.map((option) => (
<option
key={`end-verse-${option}`}
value={option}
style={verseOptionStyle}
>
{option}
</option>
))}
</NativeSelect>
</Box>
<NativeSelect
value={draft.endSuffix}
onChange={handleSuffixChange('endSuffix')}
disabled={!canEditEndSuffix}
inputProps={{ 'aria-label': 'end verse suffix' }}
sx={selectSx}
>
{suffixOptions.map((option) => (
<option
key={option || 'none-end'}
value={option}
style={suffixOptionStyle}
>
{option || ' '}
</option>
))}
</NativeSelect>
</Box>
</Box>
<FormControlLabel
control={
<Checkbox checked={draft.splitVerse} onChange={handleSplitChange} />
}
label={splitVerseLabel}
/>
</DialogContent>
<DialogActions sx={{ px: 3, pb: 2 }}>
<Button onClick={onCancel}>{cancelLabel}</Button>
<Button variant="contained" onClick={() => onSave(draft)}>
{saveLabel}
</Button>
</DialogActions>
</Dialog>
);
}
// test