summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/TransitionContainer.tsx
blob: a2632653d36954696cc49f39568a4e7c0d215475 (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
import * as React from 'react';
import { Animated, Component, Styles, Types, UserInterface, View } from 'reactxp';
import { ITransitionGroupProps } from '../transitions';

interface IProps extends ITransitionGroupProps {
  children: React.ReactNode;
}

interface IState {
  previousChildren?: React.ReactNode;
  childrenAnimation?: Types.AnimatedViewStyleRuleSet;
  previousChildrenAnimation?: Types.AnimatedViewStyleRuleSet;
  dimensions: Types.Dimensions;
  isAnimating: boolean;
}

const dimensions = UserInterface.measureWindow();
const styles = {
  animationDefaultStyle: Styles.createViewStyle({
    position: 'absolute',
    width: dimensions.width,
    height: dimensions.height,
  }),
  allowPointerEventsStyle: Styles.createViewStyle({
    // @ts-ignore
    pointerEvents: 'auto',
  }),
  transitionContainerStyle: Styles.createViewStyle({
    width: dimensions.width,
    height: dimensions.height,
  }),
};

export default class TransitionContainer extends Component<IProps, IState> {
  public state: IState = {
    dimensions: UserInterface.measureWindow(),
    isAnimating: false,
  };

  public UNSAFE_componentWillReceiveProps(nextProps: IProps) {
    switch (nextProps.name) {
      case 'slide-up':
        this.slideUpTransition(nextProps);
        break;
      case 'slide-down':
        this.slideDownTransition(nextProps);
        break;
      case 'push':
        this.pushTransition(nextProps);
        break;
      case 'pop':
        this.popTransition(nextProps);
        break;
      default:
        break;
    }
  }

  public onFinishedAnimation = (_result: Types.Animated.EndResult) => {
    this.setState({
      childrenAnimation: styles.allowPointerEventsStyle,
      previousChildren: null,
      isAnimating: false,
    });
  };

  public slideUpTransition(nextProps: IProps) {
    const currentTranslationValue = Animated.createValue(this.state.dimensions.height);
    this.setState(
      {
        previousChildren: this.props.children,
        childrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 1,
          transform: [{ translateY: currentTranslationValue }],
        }),
        previousChildrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 0,
          transform: [{ translateY: Animated.createValue(0) }],
        }),
        isAnimating: true,
      },
      () => {
        Animated.timing(currentTranslationValue, {
          toValue: 0,
          easing: Animated.Easing.InOut(),
          duration: nextProps.duration,
        }).start(this.onFinishedAnimation);
      },
    );
  }

  public slideDownTransition(nextProps: IProps) {
    const previousTranslationValue = Animated.createValue(0);
    this.setState(
      {
        previousChildren: this.props.children,
        childrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 0,
          transform: [{ translateY: Animated.createValue(0) }],
        }),
        previousChildrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 1,
          transform: [{ translateY: previousTranslationValue }],
        }),
        isAnimating: true,
      },
      () => {
        Animated.timing(previousTranslationValue, {
          toValue: this.state.dimensions.height,
          easing: Animated.Easing.InOut(),
          duration: nextProps.duration,
        }).start(this.onFinishedAnimation);
      },
    );
  }

  public pushTransition(nextProps: IProps) {
    const currentTranslationValue = Animated.createValue(this.state.dimensions.width);
    const previousTranslationValue = Animated.createValue(0);
    this.setState(
      {
        previousChildren: this.props.children,
        childrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 1,
          transform: [{ translateX: currentTranslationValue }],
        }),
        previousChildrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 0,
          transform: [{ translateX: previousTranslationValue }],
        }),
        isAnimating: true,
      },
      () => {
        const compositeAnimation = Animated.parallel([
          Animated.timing(currentTranslationValue, {
            toValue: 0,
            easing: Animated.Easing.InOut(),
            duration: nextProps.duration,
          }),
          Animated.timing(previousTranslationValue, {
            toValue: -this.state.dimensions.width / 2,
            easing: Animated.Easing.InOut(),
            duration: nextProps.duration,
          }),
        ]);
        compositeAnimation.start(this.onFinishedAnimation);
      },
    );
  }

  public popTransition(nextProps: IProps) {
    const currentTranslationValue = Animated.createValue(-this.state.dimensions.width / 2);
    const previousTranslationValue = Animated.createValue(0);
    this.setState(
      {
        previousChildren: this.props.children,
        childrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 0,
          transform: [{ translateX: currentTranslationValue }],
        }),
        previousChildrenAnimation: Styles.createAnimatedViewStyle({
          // @ts-ignore
          zIndex: 1,
          transform: [{ translateX: previousTranslationValue }],
        }),
        isAnimating: true,
      },
      () => {
        const compositeAnimation = Animated.parallel([
          Animated.timing(currentTranslationValue, {
            toValue: 0,
            easing: Animated.Easing.InOut(),
            duration: nextProps.duration,
          }),
          Animated.timing(previousTranslationValue, {
            toValue: this.state.dimensions.width,
            easing: Animated.Easing.InOut(),
            duration: nextProps.duration,
          }),
        ]);
        compositeAnimation.start(this.onFinishedAnimation);
      },
    );
  }

  public render() {
    const { children } = this.props;
    const {
      isAnimating,
      previousChildren,
      childrenAnimation,
      previousChildrenAnimation,
    } = this.state;

    return (
      <View style={styles.transitionContainerStyle} ignorePointerEvents={isAnimating}>
        {previousChildren && (
          <Animated.View
            key={getChildKey(previousChildren)}
            style={[styles.animationDefaultStyle, previousChildrenAnimation]}>
            {previousChildren}
          </Animated.View>
        )}

        <Animated.View
          key={getChildKey(children)}
          style={[styles.animationDefaultStyle, childrenAnimation]}>
          {children}
        </Animated.View>
      </View>
    );
  }
}

function getChildKey(child?: React.ReactNode): string | number | undefined {
  return child &&
    typeof child === 'object' &&
    'key' in child &&
    (typeof child.key === 'string' || typeof child.key === 'number')
    ? child.key
    : undefined;
}