* upgrade reanimated * update devDependencies * upgrade react-intl * update react-native and some dependencies * update react-native-permissions * update RN * use Share sheet for Report a problem * update Sentry * remove step to downloadWebRTC * update detox deps * feedback review
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {StyleSheet, type ViewStyle} from 'react-native';
|
|
import Animated, {type AnimatedStyleProp, Extrapolate, interpolate, type SharedValue, useAnimatedStyle} from 'react-native-reanimated';
|
|
|
|
export type BackdropProps = {
|
|
animatedStyles: AnimatedStyleProp<ViewStyle>;
|
|
translateY: SharedValue<number>;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
backdrop: {
|
|
backgroundColor: 'black',
|
|
},
|
|
});
|
|
|
|
const Backdrop = ({animatedStyles, translateY}: BackdropProps) => {
|
|
const customBackdropStyles = useAnimatedStyle(() => {
|
|
return {
|
|
opacity: interpolate(
|
|
Math.abs(translateY.value),
|
|
[0, 100],
|
|
[1, 0],
|
|
Extrapolate.CLAMP,
|
|
),
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<Animated.View style={[StyleSheet.absoluteFill, customBackdropStyles]}>
|
|
<Animated.View style={[animatedStyles, styles.backdrop]}/>
|
|
</Animated.View>
|
|
);
|
|
};
|
|
|
|
export default Backdrop;
|