aboutsummaryrefslogtreecommitdiff
path: root/modern/src/DevicePage.js
blob: 14e978ec1ca8da9f4d9561da0b512620b623a23d (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
import React, { useState } from 'react';
import TextField from '@material-ui/core/TextField';

import t from './common/localization';
import EditPage from './EditPage';

const DevicePage = () => {
  const [item, setItem] = useState();

  const [name, setName] = useState('');
  const [uniqueId, setUniqueId] = useState('');

  const getItem = () => {
    const updatedItem = item;
    updatedItem.name = name;
    updatedItem.uniqueId = uniqueId;
    return updatedItem;
  };

  return (
    <EditPage endpoint="devices" setItem={setItem} getItem={getItem}>
      {item &&
        <>
          <TextField
            margin="normal"
            fullWidth
            defaultValue={item.name}
            onChange={(event) => setName(event.target.value)}
            label={t('sharedName')}
            variant="filled" />
          <TextField
            margin="normal"
            fullWidth
            defaultValue={item.uniqueId}
            onChange={(event) => setUniqueId(event.target.value)}
            label={t('deviceIdentifier')}
            variant="filled" />
        </>
      }
    </EditPage>
  );
}

export default DevicePage;