aboutsummaryrefslogtreecommitdiff
path: root/modern/src/UserPage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-05-06 15:02:43 -0700
committerAnton Tananaev <anton@traccar.org>2022-05-06 15:02:43 -0700
commit4e84fa64bfe7d92cd2eff6a0411140953dc3fdb9 (patch)
tree84bdca2759dde6f0cc9fea16cd52fd20b5e52b52 /modern/src/UserPage.js
parent4810bef487c36c263326ecd7f4626a6354ecfdf5 (diff)
downloadtrackermap-web-4e84fa64bfe7d92cd2eff6a0411140953dc3fdb9.tar.gz
trackermap-web-4e84fa64bfe7d92cd2eff6a0411140953dc3fdb9.tar.bz2
trackermap-web-4e84fa64bfe7d92cd2eff6a0411140953dc3fdb9.zip
Add timezone attribute
Diffstat (limited to 'modern/src/UserPage.js')
-rw-r--r--modern/src/UserPage.js18
1 files changed, 15 insertions, 3 deletions
diff --git a/modern/src/UserPage.js b/modern/src/UserPage.js
index d53777a5..89e04dde 100644
--- a/modern/src/UserPage.js
+++ b/modern/src/UserPage.js
@@ -12,6 +12,7 @@ import LinkField from './form/LinkField';
import { useTranslation } from './LocalizationProvider';
import useUserAttributes from './attributes/useUserAttributes';
import { sessionActions } from './store';
+import SelectField from './form/SelectField';
const useStyles = makeStyles(() => ({
details: {
@@ -90,7 +91,7 @@ const UserPage = () => {
<InputLabel>{t('settingsSpeedUnit')}</InputLabel>
<Select
value={item.attributes.speedUnit || 'kn'}
- onChange={(event) => setItem({ ...item, attributes: { ...item.attributes, speedUnit: event.target.value } })}
+ onChange={(e) => setItem({ ...item, attributes: { ...item.attributes, speedUnit: e.target.value } })}
>
<MenuItem value="kn">{t('sharedKn')}</MenuItem>
<MenuItem value="kmh">{t('sharedKmh')}</MenuItem>
@@ -101,7 +102,7 @@ const UserPage = () => {
<InputLabel>{t('settingsDistanceUnit')}</InputLabel>
<Select
value={item.attributes.distanceUnit || 'km'}
- onChange={(event) => setItem({ ...item, attributes: { ...item.attributes, distanceUnit: event.target.value } })}
+ onChange={(e) => setItem({ ...item, attributes: { ...item.attributes, distanceUnit: e.target.value } })}
>
<MenuItem value="km">{t('sharedKm')}</MenuItem>
<MenuItem value="mi">{t('sharedMi')}</MenuItem>
@@ -112,13 +113,24 @@ const UserPage = () => {
<InputLabel>{t('settingsVolumeUnit')}</InputLabel>
<Select
value={item.attributes.volumeUnit || 'ltr'}
- onChange={(event) => setItem({ ...item, attributes: { ...item.attributes, volumeUnit: event.target.value } })}
+ onChange={(e) => setItem({ ...item, attributes: { ...item.attributes, volumeUnit: e.target.value } })}
>
<MenuItem value="ltr">{t('sharedLiter')}</MenuItem>
<MenuItem value="usGal">{t('sharedUsGallon')}</MenuItem>
<MenuItem value="impGal">{t('sharedImpGallon')}</MenuItem>
</Select>
</FormControl>
+ <SelectField
+ margin="normal"
+ value={item.attributes.timezone || ''}
+ emptyValue={''}
+ onChange={(e) => setItem({ ...item, attributes: { ...item.attributes, timezone: e.target.value } })}
+ endpoint="/api/server/timezones"
+ keyGetter={(it) => it}
+ titleGetter={(it) => it}
+ label={t('sharedTimezone')}
+ variant="filled"
+ />
<TextField
margin="normal"
value={item.poiLayer || ''}