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

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

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

  const [name, setName] = useState('');
  const [email, setEmail] = useState('');
  const [password, setPassword] = useState('');

  const getItem = () => {
    const updatedItem = item;
    updatedItem.name = name || item.name;
    updatedItem.email = email || item.email;
    updatedItem.password = password || item.password;
    return updatedItem;
  };

  return (
    <EditItemView endpoint="users" 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.email}
            onChange={(event) => setEmail(event.target.value)}
            label={t('userEmail')}
            variant="filled" />
          <TextField
            margin="normal"
            fullWidth
            type="password"
            onChange={(event) => setPassword(event.target.value)}
            label={t('userPassword')}
            variant="filled" />
        </>
      }
    </EditItemView>
  );
}

export default UserPage;