-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomponent.js
139 lines (122 loc) · 3.14 KB
/
component.js
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// @flow
import React from 'react';
import style from 'styled-components';
import type { DiagComponentProps } from 'react-flow-diagram';
/*
* Presentational
* ==================================== */
const TaskStyle = style.div`
background-color: #fff;
display: flex;
flex-flow: row nowrap;
align-items: ${props => (props.isEditing ? 'stretch' : 'center')};
width: ${props => props.width}px;
height: ${props => props.height}px;
border-radius: .5rem;
border: 2px solid #888;
`;
const Name = style.span`
flex: 1 0;
padding: .5em;
font-size: .8rem;
`;
const EditName = style.textarea`
padding: .5em;
font-size: .8rem;
text-align: center;
resize: none;
border: none;
border-radius: .5rem;
`;
export type TaskProps = DiagComponentProps & {
name: string,
isEditing: boolean,
toggleEdit: boolean => void,
refreshName: (SyntheticEvent<HTMLTextAreaElement>) => void,
handleKeyPress: (SyntheticKeyboardEvent<HTMLTextAreaElement>) => void,
handleRef: HTMLTextAreaElement => void,
};
const Task = (props: TaskProps) => (
<TaskStyle
width={props.model.width}
height={props.model.height}
isEditing={props.isEditing}
>
<EditName
value={props.name}
onChange={props.refreshName}
onKeyDown={props.handleKeyPress}
innerRef={textarea => props.handleRef(textarea)}
style={{ display: props.isEditing ? 'block' : 'none' }}
/>
<Name
onDoubleClick={() => props.toggleEdit(true)}
style={{ display: !props.isEditing ? 'block' : 'none' }}
>
{props.model.name}
</Name>
</TaskStyle>
);
/*
* Container
* ==================================== */
type TaskComponentProps = DiagComponentProps;
type TaskComponentState = {
isEditing: boolean,
name: string,
};
class TaskComponent extends React.PureComponent<
TaskComponentProps,
TaskComponentState
> {
textarea: ?HTMLTextAreaElement;
state = {
isEditing: false,
name: this.props.model.name,
};
componentWillUnmount() {
this.textarea = null;
}
handleRef = (textarea: HTMLTextAreaElement) => {
if (!this.textarea) {
this.textarea = textarea;
}
};
toggleEdit = (isEditing: boolean) => {
const { textarea } = this;
if (isEditing && textarea) {
setTimeout(() => textarea.focus(), 16 * 4);
}
this.setState({ isEditing });
};
refreshName = (ev: SyntheticEvent<HTMLTextAreaElement>) => {
this.setState({ name: ev.currentTarget.value });
};
handleKeyPress = (ev: SyntheticKeyboardEvent<HTMLTextAreaElement>) => {
switch (ev.key) {
case 'Enter':
this.toggleEdit(false);
this.props.setName({ id: this.props.model.id, name: this.state.name });
break;
case 'Escape':
this.toggleEdit(false);
this.setState({ name: this.props.model.name });
break;
// no default
}
};
render() {
return (
<Task
{...this.props}
isEditing={this.state.isEditing}
name={this.state.name}
toggleEdit={this.toggleEdit}
refreshName={this.refreshName}
handleKeyPress={this.handleKeyPress}
handleRef={this.handleRef}
/>
);
}
}
export default TaskComponent;