aboutsummaryrefslogtreecommitdiff
path: root/modern/src/DevicePage.js
blob: 7c963b02e84a129b327129f46065abc619c53f98 (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 EditItemView from './EditItemView';

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 (
    <EditItemView 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" />
        </>
      }
    </EditItemView>
  );
}

export default DevicePage;