summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/TransitionContainer.tsx
blob: 9773c645121890a9e11debed907c089aa1ac94e7 (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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
import * as React from 'react';
import styled from 'styled-components';

import { ITransitionSpecification } from '../lib/history';
import { WillExit } from '../lib/will-exit';

interface ITransitioningViewProps {
  routePath: string;
  children?: React.ReactNode;
}

type TransitioningView = React.ReactElement<ITransitioningViewProps>;

interface ITransitionQueueItem {
  view: TransitioningView;
  transition: ITransitionSpecification;
}

interface IProps extends ITransitionSpecification {
  children: TransitioningView;
  onTransitionEnd: () => void;
}

interface IItemStyle {
  // x and y are percentages
  x: number;
  y: number;
  inFront: boolean;
  duration?: number;
}

interface IState {
  currentItem?: ITransitionQueueItem;
  nextItem?: ITransitionQueueItem;
  queuedItem?: ITransitionQueueItem;
  currentItemStyle?: IItemStyle;
  nextItemStyle?: IItemStyle;
  currentItemTransition?: Partial<IItemStyle>;
  nextItemTransition?: Partial<IItemStyle>;
}

export const StyledTransitionContainer = styled.div({ flex: 1 });

interface StyledTransitionContentProps {
  $transition?: IItemStyle;
  $disableUserInteraction?: boolean;
}

export const StyledTransitionContent = styled.div.attrs<
  StyledTransitionContentProps,
  // eslint-disable-next-line @typescript-eslint/naming-convention
  { 'data-testid': string }
>({
  'data-testid': 'transition-content',
})((props) => {
  const x = `${props.$transition?.x ?? 0}%`;
  const y = `${props.$transition?.y ?? 0}%`;
  const duration = props.$transition?.duration ?? 450;

  return {
    display: 'flex',
    flexDirection: 'column',
    position: 'absolute',
    left: 0,
    right: 0,
    top: 0,
    bottom: 0,
    zIndex: props.$transition?.inFront ? 1 : 0,
    willChange: 'transform',
    transform: `translate3d(${x}, ${y}, 0)`,
    transition: `transform ${duration}ms ease-in-out`,
    pointerEvents: props.$disableUserInteraction ? 'none' : undefined,
  };
});

export const StyledTransitionView = styled.div({
  display: 'flex',
  flex: 1,
  flexDirection: 'column',
  height: '100%',
  width: '100%',
});

export class TransitionView extends React.Component<ITransitioningViewProps> {
  public render() {
    return (
      <StyledTransitionView data-testid={this.props.routePath}>
        {this.props.children}
      </StyledTransitionView>
    );
  }
}

export default class TransitionContainer extends React.Component<IProps, IState> {
  public state: IState = {
    currentItem: TransitionContainer.makeItem(this.props),
  };

  private isCycling = false;
  private isTransitioning = false;

  private currentContentRef: React.MutableRefObject<HTMLDivElement | null> = React.createRef<HTMLDivElement>();
  private nextContentRef: React.MutableRefObject<HTMLDivElement | null> = React.createRef<HTMLDivElement>();
  // The item that should trigger the cycle to finish in onTransitionEnd
  private transitioningItemRef?: React.RefObject<HTMLDivElement>;

  public componentDidUpdate(prevProps: IProps) {
    if (this.props.children !== prevProps.children) {
      this.updateStateFromProps();
    }

    if (
      this.state.currentItemStyle &&
      this.state.currentItemTransition &&
      this.state.nextItemStyle &&
      this.state.nextItemTransition
    ) {
      // Force browser reflow before starting transition. Without this animations won't run since
      // the next view content hasn't been painted yet. It will just appear without a transition.
      void this.nextContentRef.current?.offsetHeight;

      // Start transition
      this.setState((state) => ({
        currentItemStyle: Object.assign({}, state.currentItemStyle, state.currentItemTransition),
        nextItemStyle: Object.assign({}, state.nextItemStyle, state.nextItemTransition),
        currentItemTransition: undefined,
        nextItemTransition: undefined,
      }));
    } else {
      this.cycle();
    }
  }

  public render() {
    const willExit = this.state.queuedItem !== undefined || this.state.nextItem !== undefined;

    return (
      <StyledTransitionContainer>
        {this.state.currentItem && (
          <WillExit key={this.state.currentItem.view.props.routePath} value={willExit}>
            <StyledTransitionContent
              ref={this.setCurrentContentRef}
              $transition={this.state.currentItemStyle}
              onTransitionEnd={this.onTransitionEnd}
              $disableUserInteraction={willExit}>
              {this.state.currentItem.view}
            </StyledTransitionContent>
          </WillExit>
        )}

        {this.state.nextItem && (
          <WillExit key={this.state.nextItem.view.props.routePath} value={false}>
            <StyledTransitionContent
              ref={this.setNextContentRef}
              $transition={this.state.nextItemStyle}
              onTransitionEnd={this.onTransitionEnd}>
              {this.state.nextItem.view}
            </StyledTransitionContent>
          </WillExit>
        )}
      </StyledTransitionContainer>
    );
  }

  private setCurrentContentRef = (element: HTMLDivElement) => {
    this.currentContentRef.current?.removeEventListener('transitionstart', this.onTransitionStart);
    this.currentContentRef.current = element;
    this.currentContentRef.current?.addEventListener('transitionstart', this.onTransitionStart);
  };

  private setNextContentRef = (element: HTMLDivElement) => {
    this.nextContentRef.current?.removeEventListener('transitionstart', this.onTransitionStart);
    this.nextContentRef.current = element;
    this.nextContentRef.current?.addEventListener('transitionstart', this.onTransitionStart);
  };

  private updateStateFromProps() {
    const candidate = this.props.children;

    if (candidate && this.state.currentItem) {
      // Update currentItem, nextItem, queuedItem depending on which the candidate matches.
      if (
        !this.isCycling &&
        this.state.currentItem.view.props.routePath === candidate.props.routePath
      ) {
        // There's no transition in progress and the newest candidate has the same path as the
        // current. In this situation the app should just remain in the same view.
        this.setState(
          {
            currentItem: TransitionContainer.makeItem(this.props),
            nextItem: undefined,
            queuedItem: undefined,
            currentItemStyle: undefined,
            nextItemStyle: undefined,
            currentItemTransition: undefined,
            nextItemTransition: undefined,
          },
          () => (this.isCycling = false),
        );
      } else if (!this.isCycling && this.state.nextItem) {
        // There's no transition in progress but there is a next item. Abort the transition and add
        // the candidate to the queue. The app shouldn't start a transition if there is another view
        // to queue.
        this.setState(
          {
            nextItem: undefined,
            queuedItem: TransitionContainer.makeItem(this.props),
            currentItemStyle: undefined,
            nextItemStyle: undefined,
            currentItemTransition: undefined,
            nextItemTransition: undefined,
          },
          () => (this.isCycling = false),
        );
      } else if (this.state.nextItem?.view.props.routePath === candidate.props.routePath) {
        // There's an update to the item that is currently being transitioned to. Update that item
        // and continue the transition.
        this.setState({
          nextItem: TransitionContainer.makeItem(this.props),
          queuedItem: undefined,
        });
      } else {
        // If none of the above, initiate a transition to the new item.
        this.setState({ queuedItem: TransitionContainer.makeItem(this.props) });
      }
    } else if (candidate) {
      // Child is set as current item if there's no item already.
      this.setState({ currentItem: TransitionContainer.makeItem(this.props) });
    }
  }

  private onTransitionStart = (event: TransitionEvent) => {
    if (
      this.isCycling &&
      !this.isTransitioning &&
      event.target === this.transitioningItemRef?.current
    ) {
      this.isTransitioning = true;
    }
  };

  private onTransitionEnd = (event: React.TransitionEvent<HTMLDivElement>) => {
    if (this.isCycling && event.target === this.transitioningItemRef?.current) {
      this.isTransitioning = false;
      this.transitioningItemRef = undefined;
      this.makeNextItemCurrent(() => {
        this.onFinishCycle();
      });
    }
  };

  private cycle() {
    if (!this.isCycling) {
      this.isCycling = true;
      this.cycleUnguarded();
    }
  }

  private onFinishCycle() {
    this.props.onTransitionEnd();
    this.cycleUnguarded();
  }

  private cycleUnguarded = () => {
    if (this.state.queuedItem) {
      const transition = this.state.queuedItem.transition;

      switch (transition.name) {
        case 'slide-up':
          this.slideUp(transition.duration);
          break;

        case 'slide-down':
          this.slideDown(transition.duration);
          break;

        case 'push':
          this.push(transition.duration);
          break;

        case 'pop':
          this.pop(transition.duration);
          break;

        default:
          this.replace(() => this.onFinishCycle);
          break;
      }
    } else {
      this.isCycling = false;
    }
  };

  private static makeItem(props: IProps): ITransitionQueueItem {
    return {
      transition: {
        name: props.name,
        duration: props.duration,
      },
      view: React.cloneElement(props.children),
    };
  }

  private makeNextItemCurrent(completion: () => void) {
    this.setState(
      (state) => ({
        currentItem: state.nextItem,
        nextItem: undefined,
        currentItemStyle: undefined,
        nextItemStyle: undefined,
        currentItemTransition: undefined,
        nextItemTransition: undefined,
      }),
      completion,
    );
  }

  private slideUp(duration: number) {
    this.transitioningItemRef = this.nextContentRef;
    this.setState((state) => ({
      nextItem: state.queuedItem,
      queuedItem: undefined,
      currentItemStyle: { x: 0, y: 0, inFront: false },
      nextItemStyle: { x: 0, y: 100, inFront: true },
      currentItemTransition: { duration },
      nextItemTransition: { y: 0, duration },
    }));
  }

  private slideDown(duration: number) {
    this.transitioningItemRef = this.currentContentRef;
    this.setState((state) => ({
      nextItem: state.queuedItem,
      queuedItem: undefined,
      currentItemStyle: { x: 0, y: 0, inFront: true },
      nextItemStyle: { x: 0, y: 0, inFront: false },
      currentItemTransition: { y: 100, duration },
      nextItemTransition: { duration },
    }));
  }

  private push(duration: number) {
    this.transitioningItemRef = this.nextContentRef;
    this.setState((state) => ({
      nextItem: state.queuedItem,
      queuedItem: undefined,
      currentItemStyle: { x: 0, y: 0, inFront: false },
      nextItemStyle: { x: 100, y: 0, inFront: true },
      currentItemTransition: { x: -50, duration },
      nextItemTransition: { x: 0, duration },
    }));
  }

  private pop(duration: number) {
    this.transitioningItemRef = this.currentContentRef;
    this.setState((state) => ({
      nextItem: state.queuedItem,
      queuedItem: undefined,
      currentItemStyle: { x: 0, y: 0, inFront: true },
      nextItemStyle: { x: -50, y: 0, inFront: false },
      currentItemTransition: { x: 100, duration },
      nextItemTransition: { x: 0, duration },
    }));
  }

  private replace(completion: () => void) {
    this.setState(
      (state) => ({
        currentItem: state.queuedItem,
        nextItem: undefined,
        queuedItem: undefined,
        currentItemStyle: { x: 0, y: 0, inFront: false, duration: 0 },
        nextItemStyle: { x: 0, y: 0, inFront: true, duration: 0 },
        currentItemTransition: undefined,
        nextItemTransition: undefined,
      }),
      completion,
    );
  }
}