blob: 48c6afde066630656d4b37b0a06cfe46eb0ffe01 (
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 || item.name;
updatedItem.uniqueId = uniqueId || item.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;
|