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
|
import * as React from 'react';
import { observer } from 'mobx-react';
import { observable, action, runInAction, computed } from 'mobx';
import "./SearchBox.scss";
import "./ToggleBar.scss";
import * as anime from 'animejs';
import { SearchBox } from './SearchBox';
export interface ToggleBarProps {
originalStatus: boolean;
optionOne: string;
optionTwo: string;
}
@observer
export class ToggleBar extends React.Component<ToggleBarProps>{
static Instance: ToggleBar;
@observable forwardTimeline: anime.AnimeTimelineInstance;
@observable _toggleButton: React.RefObject<HTMLDivElement>;
@observable _originalStatus: boolean = this.props.originalStatus;
constructor(props: ToggleBarProps) {
super(props);
ToggleBar.Instance = this;
this._toggleButton = React.createRef();
this.forwardTimeline = anime.timeline({
loop: false,
autoplay: false,
direction: "reverse",
});
}
@computed get totalWidth() { return this.getTotalWidth(); }
getTotalWidth() {
let bar = document.getElementById("toggle-bar");
let tog = document.getElementById("toggle-button");
let barwidth = 0;
let togwidth = 0;
if (bar && tog) {
barwidth = bar.clientWidth;
togwidth = tog.clientWidth;
}
let totalWidth = (barwidth - togwidth - 10);
return totalWidth;
}
componentDidMount = () => {
let totalWidth = this.totalWidth;
if (this._originalStatus) {
this.forwardTimeline.add({
targets: this._toggleButton.current,
translateX: totalWidth,
easing: "easeInOutQuad",
duration: 500
});
}
else {
this.forwardTimeline.add({
targets: this._toggleButton.current,
translateX: -totalWidth,
easing: "easeInOutQuad",
duration: 500
});
}
}
@action.bound
onclick() {
this.forwardTimeline.play();
this.forwardTimeline.reverse();
SearchBox.Instance.handleWordQueryChange();
}
@action.bound
public resetToggle = () => {
if (!SearchBox.Instance.getBasicWordStatus()) {
this.forwardTimeline.play()
this.forwardTimeline.reverse();
SearchBox.Instance.handleWordQueryChange();
}
}
render() {
return (
<div>
<div className="toggle-title">
<div className="toggle-option" style={{ opacity: (SearchBox.Instance.getBasicWordStatus() ? 1 : .4) }}>{this.props.optionOne}</div>
<div className="toggle-option" style={{ opacity: (SearchBox.Instance.getBasicWordStatus() ? .4 : 1) }}>{this.props.optionTwo}</div>
</div>
<div className="toggle-bar" id="toggle-bar" style={{ flexDirection: (this._originalStatus ? "row" : "row-reverse") }}>
<div className="toggle-button" id="toggle-button" ref={this._toggleButton} onClick={this.onclick} />
</div>
</div>
);
}
}
|