blob: 3d1c2ebf43b77efc54e4c905fc038989d778620a (
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
|
import React = require('react')
import { observer } from 'mobx-react';
import { observable, action } from 'mobx';
export interface EditableProps {
GetValue(): string;
SetValue(value: string): boolean;
contents: any;
height: number
}
@observer
export class EditableView extends React.Component<EditableProps> {
@observable
editing: boolean = false;
@action
onKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key == "Enter" && !e.ctrlKey) {
this.props.SetValue(e.currentTarget.value);
this.editing = false;
} else if (e.key == "Escape") {
this.editing = false;
}
}
render() {
if (this.editing) {
return <input defaultValue={this.props.GetValue()} onKeyDown={this.onKeyDown} autoFocus onBlur={action(() => this.editing = false)}
style={{ width: "100%" }}></input>
} else {
return (
<div style={{ alignItems: "center", display: "flex", height: "100%", maxHeight: `${this.props.height}` }}
onClick={action(() => this.editing = true)}
>
{this.props.contents}
</div>
)
}
}
}
|