aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/MaintenancePage.js
blob: 9c274598f6c1f523f4fd649e912a5906625e34a6 (plain)
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
import React, { useState } from 'react';
import t from '../common/localization';
import EditItemView from '../EditItemView';
import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, TextField, FormControl, InputLabel, MenuItem, Select, } from '@material-ui/core';
import InputAdornment from '@material-ui/core/InputAdornment';
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
import EditAttributesView from '../attributes/EditAttributesView';
import positionAttributes from '../attributes/positionAttributes';
import { useAttributePreference } from '../common/preferences';

const useStyles = makeStyles(() => ({
  details: {
    flexDirection: 'column',
  },
}));

const MaintenancePage = () => {
  
  const classes = useStyles();
  const [item, setItem] = useState();
  const [labels, setLabels] = useState({start: '', period: ''});

  const speedUnit = useAttributePreference('speedUnit');
  const distanceUnit = useAttributePreference('distanceUnit');

  const options = [];

  Object.entries(positionAttributes).map(([key, value]) => {
    if (value.type === 'number') {
      options.push({key, name: value.name, type: value.type})
    }
  });

  const handleChange = event => {
    const newValue = event.target.value;
    setItem({...item, type: newValue});

    const attribute = positionAttributes[newValue];
    if (attribute && attribute.dataType) {
      switch (attribute.dataType) {
        case 'distance':
          setLabels({ ...labels, start: distanceUnit, period: distanceUnit});
          break;
        case 'speed':
          setLabels({ ...labels, start: speedUnit, period: speedUnit});
          break;
        default:
          break;
      }
    }
  }

  return (
    <EditItemView endpoint="maintenance" item={item} setItem={setItem}>
      {item &&
        <>
          <Accordion defaultExpanded>
            <AccordionSummary expandIcon={<ExpandMoreIcon />}>
              <Typography variant="subtitle1">
                {t('sharedRequired')}
              </Typography>
            </AccordionSummary>
            <AccordionDetails className={classes.details}>
              <TextField
                margin="normal"
                value={item.name || ''}
                onChange={event => setItem({...item, name: event.target.value})}
                label={t('sharedName')}
                variant="filled" />
              <FormControl variant="filled" margin="normal" fullWidth>
                <InputLabel>{t('sharedType')}</InputLabel>
                <Select 
                  value={item.type || ''} 
                  onChange={handleChange}>
                  {options.map((option) => (
                    <MenuItem key={option.key} value={option.key}>{option.name}</MenuItem>
                  ))}
                </Select>
              </FormControl>            
              <TextField
                margin="normal"
                type="number"
                value={item.start || ''}
                onChange={event => setItem({...item, start: event.target.value})}
                label={t('maintenanceStart')}
                variant="filled"
                InputProps={{
                endAdornment: <InputAdornment position="start">{labels.start}</InputAdornment>,
                }} />
              <TextField
                margin="normal"
                type="number"
                value={item.period || ''}
                onChange={event => setItem({...item, period: event.target.value})}
                label={t('maintenancePeriod')}
                variant="filled"
                InputProps={{
                endAdornment: <InputAdornment position="start">{labels.period}</InputAdornment>,
                }} />                              
            </AccordionDetails>
          </Accordion>
          <Accordion>
            <AccordionSummary expandIcon={<ExpandMoreIcon />}>
              <Typography variant="subtitle1">
                {t('sharedAttributes')}
              </Typography>
            </AccordionSummary>
            <AccordionDetails className={classes.details}>
              <EditAttributesView
                attributes={item.attributes}
                setAttributes={attributes => setItem({...item, attributes})}
                definitions={{}}
                />
            </AccordionDetails>
          </Accordion>          
        </>
      }
    </EditItemView>
  );
}

export default MaintenancePage;