forked from WinterCore/react-pattern-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo.tsx
106 lines (95 loc) · 2.41 KB
/
Demo.tsx
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
import * as React from "react";
import PatternLock from "../../../src/index";
type IDemoState = {
path : number[],
isLoading : boolean,
error : boolean,
success : boolean,
disabled : boolean,
size : number,
}
class Demo extends React.Component<{}, IDemoState> {
state = {
path : [] as number[],
isLoading : false,
error : false,
success : false,
disabled : false,
size : 3
};
errorTimeout: number = 0;
componentDidMount() {
window.addEventListener("keydown", (e) => {
const { key } = e;
if (key === "ArrowUp") {
e.preventDefault();
this.setState({ size : this.state.size >= 10 ? 10 : this.state.size + 1 });
} else if (key === "ArrowDown") {
e.preventDefault();
this.setState({ size : this.state.size > 3 ? this.state.size - 1 : 3 });
}
});
}
onReset = () => {
this.setState({
path : [],
success : false,
error : false,
disabled : false
});
};
onChange = (path: number[]) => {
this.setState({ path : [...path] });
};
onFinish = () => {
this.setState({ isLoading : true });
// an imaginary api call
setTimeout(() => {
if (this.state.path.join("-") === "0-1-2") {
this.setState({ isLoading : false, success : true, disabled : true });
} else {
this.setState({ disabled : true, error : true });
this.errorTimeout = window.setTimeout(() => {
this.setState({
disabled : false,
error : false,
isLoading : false,
path : []
});
}, 3000);
}
}, 3000);
};
render() {
const { size, path, disabled, success, error, isLoading } = this.state;
return (
<React.Fragment>
<div className="center">
<PatternLock
size={ size }
onChange={ this.onChange }
path={ path }
error={ error }
onFinish={ this.onFinish }
connectorThickness={ 5 }
disabled={ disabled || isLoading }
success={ success }
/>
</div>
<div className="output">
Select the top 3 points starting from the left
</div>
<div className="output">
Output : { this.state.path.join(", ") }
</div>
{
success && <button style={{ margin : "0 auto", display : "block" }} onClick={ this.onReset }>Click here to reset</button>
}
<div className="output">
Press the up/down arrow keys to increase/decrease the size of the input
</div>
</React.Fragment>
);
}
}
export default Demo;