blob: 6582529d850aa53c9f79e7ba1bfe69e2083a80b8 (
plain) (
blame)
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
|
import React from "react";
import styled from "styled-components";
import Text from "../ui/Text";
import keymaps from "../../keymaps";
import { FormKeymaps } from "../../../shared/SettingData";
const Grid = styled.div`
column-count: 3;
`;
const FieldGroup = styled.div`
margin-top: 24px;
&:first-of-type {
margin-top: 24px;
}
`;
interface Props {
value: FormKeymaps;
onChange: (e: FormKeymaps) => void;
onBlur: () => void;
}
class KeymapsForm extends React.Component<Props> {
public static defaultProps: Props = {
value: FormKeymaps.fromJSON({}),
onChange: () => {},
onBlur: () => {},
};
render() {
const values = this.props.value.toJSON();
return (
<Grid>
{keymaps.fields.map((group, index) => {
return (
<FieldGroup key={index}>
{group.map(([name, label]) => {
const value = values[name] || "";
return (
<Text
id={name}
name={name}
key={name}
label={label}
value={value}
onValueChange={this.bindValue.bind(this)}
onBlur={this.props.onBlur}
/>
);
})}
</FieldGroup>
);
})}
</Grid>
);
}
bindValue(name: string, value: string) {
this.props.onChange(this.props.value.buildWithOverride(name, value));
}
}
export default KeymapsForm;
|