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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import * as React from "react";
import { observable, action, computed, runInAction, reaction, IReactionDisposer } from "mobx";
import { observer } from "mobx-react";
import "./TimelineOverview.scss";
import * as $ from 'jquery';
import { Timeline } from "./Timeline";
interface TimelineOverviewProps {
totalLength: number;
visibleLength: number;
visibleStart: number;
currentBarX: number;
isAuthoring: boolean;
parent: Timeline;
changeCurrentBarX: (pixel: number) => void;
movePanX: (pixel: number) => any;
panelWidth: number;
}
@observer
export class TimelineOverview extends React.Component<TimelineOverviewProps>{
@observable private _visibleRef = React.createRef<HTMLDivElement>();
@observable private _scrubberRef = React.createRef<HTMLDivElement>();
@observable private overviewBarWidth: number = 0;
@observable private _authoringReaction?: IReactionDisposer;
@observable private _resizeReaction?: IReactionDisposer;
private readonly DEFAULT_HEIGHT = 50;
private readonly DEFAULT_WIDTH = 300;
componentDidMount = () => {
this.setOverviewWidth();
this._authoringReaction = reaction(
() => this.props.parent._isAuthoring,
() => {
if (!this.props.parent._isAuthoring) {
runInAction(() => {
this.setOverviewWidth();
});
}
},
);
// this._resizeReaction = reaction(
// () => this.props.parent.props.PanelWidth,
// () => {
// // if (!this.props.parent._isAuthoring) {
// // runInAction(() => {
// console.log("resizing");
// this.setOverviewWidth();
// // });
// // }
// },
// );
}
componentWillUnmount = () => {
this._authoringReaction && this._authoringReaction();
this._resizeReaction && this._resizeReaction();
}
@action
setOverviewWidth() {
let width = $("#timelineOverview").width();
if (width) this.overviewBarWidth = width;
else this.overviewBarWidth = 0;
}
@action
onPointerDown = (e: React.PointerEvent) => {
e.stopPropagation();
e.preventDefault();
document.removeEventListener("pointermove", this.onPanX);
document.removeEventListener("pointerup", this.onPointerUp);
document.addEventListener("pointermove", this.onPanX);
document.addEventListener("pointerup", this.onPointerUp);
}
@action
onPanX = (e: PointerEvent) => {
e.stopPropagation();
e.preventDefault();
let movX = (this.props.visibleStart / this.props.totalLength) * (this.DEFAULT_WIDTH) + e.movementX;
// let movX = (this.props.visibleStart / this.props.totalLength) * (this.overviewWidth) + e.movementX;
this.props.movePanX((movX / (this.DEFAULT_WIDTH)) * this.props.totalLength);
// this.props.movePanX((movX / (this.overviewWidth) * this.props.totalLength);
// console.log(this.props.totalLength);
}
@action
onPointerUp = (e: PointerEvent) => {
e.stopPropagation();
e.preventDefault();
document.removeEventListener("pointermove", this.onPanX);
document.removeEventListener("pointerup", this.onPointerUp);
}
@action
onScrubberDown = (e: React.PointerEvent) => {
e.preventDefault();
e.stopPropagation();
document.removeEventListener("pointermove", this.onScrubberMove);
document.removeEventListener("pointerup", this.onScrubberUp);
document.addEventListener("pointermove", this.onScrubberMove);
document.addEventListener("pointerup", this.onScrubberUp);
}
@action
onScrubberMove = (e: PointerEvent) => {
e.preventDefault();
e.stopPropagation();
let scrubberRef = this._scrubberRef.current!;
let left = scrubberRef.getBoundingClientRect().left;
let offsetX = Math.round(e.clientX - left);
this.props.changeCurrentBarX((offsetX / (this.DEFAULT_WIDTH) * this.props.totalLength) + this.props.currentBarX);
}
@action
onScrubberUp = (e: PointerEvent) => {
e.preventDefault();
e.stopPropagation();
document.removeEventListener("pointermove", this.onScrubberMove);
document.removeEventListener("pointerup", this.onScrubberUp);
}
render() {
// calculates where everything should fall based on its size
let percentVisible = this.props.visibleLength / this.props.totalLength;
let visibleBarWidth = percentVisible * this.overviewBarWidth;
let percentScrubberStart = this.props.currentBarX / this.props.totalLength;
let scrubberStart = percentScrubberStart * this.overviewBarWidth;
let percentBarStart = this.props.visibleStart / this.props.totalLength;
let barStart = percentBarStart * this.overviewBarWidth;
let timeline = this.props.isAuthoring ? [
<div key="timeline-overview-container" className="timeline-overview-container" id="timelineOverview">
<div ref={this._visibleRef} key="timeline-overview-visible" className="timeline-overview-visible" style={{ left: `${barStart}px`, width: `${visibleBarWidth}px` }} onPointerDown={this.onPointerDown}></div>,
<div ref={this._scrubberRef} key="timeline-overview-scrubber-container" className="timeline-overview-scrubber-container" style={{ left: `${scrubberStart}px` }} onPointerDown={this.onScrubberDown}>
<div key="timeline-overview-scrubber-head" className="timeline-overview-scrubber-head"></div>
</div>
</div>
] : [
<div className="timeline-play-bar">
<div ref={this._scrubberRef} className="timeline-play-head" style={{ left: `${(this.props.currentBarX / this.props.totalLength) * 294}px` }} onPointerDown={this.onScrubberDown}></div>
</div>,
<div className="timeline-play-tail" style={{ width: `${(this.props.currentBarX / this.props.totalLength) * 294}px` }}></div>
];
return (
<div className="timelineOverview-bounding">
{timeline}
</div>
);
}
}
|