aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/animationtimeline/TimelineOverview.tsx
blob: fff756980764e308b8019480bf156034f5b5773c (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
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
164
165
166
167
168
169
170
171
172
import { action, IReactionDisposer, observable, reaction, runInAction } from 'mobx';
import { observer } from 'mobx-react';
import * as React from 'react';
import { RegionHelpers } from './Region';
import { Timeline } from './Timeline';
import './TimelineOverview.scss';

interface TimelineOverviewProps {
    totalLength: number;
    visibleLength: number;
    visibleStart: number;
    currentBarX: number;
    isAuthoring: boolean;
    parent: Timeline;
    changeCurrentBarX: (pixel: number) => void;
    movePanX: (pixel: number) => void;
    time: number;
    tickSpacing: number;
    tickIncrement: number;
}

@observer
export class TimelineOverview extends React.Component<TimelineOverviewProps> {
    @observable private _visibleRef = React.createRef<HTMLDivElement>();
    @observable private _scrubberRef = React.createRef<HTMLDivElement>();
    @observable private authoringContainer = React.createRef<HTMLDivElement>();
    @observable private playbackContainer = React.createRef<HTMLDivElement>();
    @observable private overviewBarWidth: number = 0;
    @observable private playbarWidth: number = 0;
    @observable private activeOverviewWidth: number = 0;
    @observable private _authoringReaction?: IReactionDisposer = undefined;
    @observable private visibleTime: number = 0;
    @observable private currentX: number = 0;
    @observable private visibleStart: number = 0;
    private readonly DEFAULT_WIDTH = 300;

    componentDidMount() {
        this.setOverviewWidth();

        this._authoringReaction = reaction(
            () => this.props.isAuthoring,
            () => {
                if (!this.props.isAuthoring) {
                    runInAction(() => {
                        this.setOverviewWidth();
                    });
                }
            }
        );
    }

    componentWillUnmount() {
        this._authoringReaction && this._authoringReaction();
    }

    @action
    setOverviewWidth() {
        const width1 = this.authoringContainer.current?.clientWidth;
        const width2 = this.playbackContainer.current?.clientWidth;
        if (width1 && width1 !== 0) this.overviewBarWidth = width1;
        if (width2 && width2 !== 0) this.playbarWidth = width2;

        if (this.props.isAuthoring) {
            this.activeOverviewWidth = this.overviewBarWidth;
        } else {
            this.activeOverviewWidth = this.playbarWidth;
        }
    }

    @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();
        const movX = (this.props.visibleStart / this.props.totalLength) * this.DEFAULT_WIDTH + e.movementX;
        this.props.movePanX((movX / this.DEFAULT_WIDTH) * 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();
        const scrubberRef = this._scrubberRef.current!;
        const { left } = scrubberRef.getBoundingClientRect();
        const offsetX = Math.round(e.clientX - left);
        this.props.changeCurrentBarX((offsetX / this.activeOverviewWidth) * this.props.totalLength + this.props.currentBarX);
    };

    @action
    onScrubberUp = (e: PointerEvent) => {
        e.preventDefault();
        e.stopPropagation();
        document.removeEventListener('pointermove', this.onScrubberMove);
        document.removeEventListener('pointerup', this.onScrubberUp);
    };

    @action
    getTimes() {
        const vis = RegionHelpers.convertPixelTime(this.props.visibleLength, 'mili', 'time', this.props.tickSpacing, this.props.tickIncrement);
        const x = RegionHelpers.convertPixelTime(this.props.currentBarX, 'mili', 'time', this.props.tickSpacing, this.props.tickIncrement);
        const start = RegionHelpers.convertPixelTime(this.props.visibleStart, 'mili', 'time', this.props.tickSpacing, this.props.tickIncrement);
        this.visibleTime = vis;
        this.currentX = x;
        this.visibleStart = start;
    }

    render() {
        this.setOverviewWidth();
        this.getTimes();

        const percentVisible = this.visibleTime / this.props.time;
        const visibleBarWidth = percentVisible * this.activeOverviewWidth;

        // const percentScrubberStart = this.currentX / this.props.time;
        let scrubberStart = (this.props.currentBarX / this.props.totalLength) * this.activeOverviewWidth;
        if (scrubberStart > this.activeOverviewWidth) scrubberStart = this.activeOverviewWidth;

        const percentBarStart = this.visibleStart / this.props.time;
        const barStart = percentBarStart * this.activeOverviewWidth;

        let playWidth = (this.props.currentBarX / this.props.totalLength) * this.activeOverviewWidth;
        if (playWidth > this.activeOverviewWidth) playWidth = this.activeOverviewWidth;

        const timeline = this.props.isAuthoring
            ? [
                  <div key="timeline-overview-container" className="timeline-overview-container overviewBar" id="timelineOverview" ref={this.authoringContainer}>
                      <div ref={this._visibleRef} key="1" className="timeline-overview-visible" style={{ left: `${barStart}px`, width: `${visibleBarWidth}px` }} onPointerDown={this.onPointerDown} />,
                      <div ref={this._scrubberRef} key="2" 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 key="1" className="timeline-play-bar overviewBar" id="timelinePlay" ref={this.playbackContainer}>
                      <div ref={this._scrubberRef} className="timeline-play-head" style={{ left: `${scrubberStart}px` }} onPointerDown={this.onScrubberDown} />
                  </div>,
                  <div key="2" className="timeline-play-tail" style={{ width: `${playWidth}px` }} />,
              ];
        return (
            <div className="timeline-flex">
                <div className="timelineOverview-bounding">{timeline}</div>
            </div>
        );
    }
}