* Enable exhaustive deps in the repo * Add tests for the new hooks * Update claude.md * Remove pre-commit overwrite
98 lines
2.9 KiB
TypeScript
98 lines
2.9 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useMemo} from 'react';
|
|
import {type StyleProp, Text, type TextStyle, useWindowDimensions, View, type ViewStyle} from 'react-native';
|
|
import Animated from 'react-native-reanimated';
|
|
|
|
import CompassIcon from '@components/compass_icon';
|
|
import {useTheme} from '@context/theme';
|
|
import {useIsTablet} from '@hooks/device';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type ToastProps = {
|
|
animatedStyle: StyleProp<ViewStyle>;
|
|
children?: React.ReactNode;
|
|
iconName?: string;
|
|
message?: string;
|
|
style?: StyleProp<ViewStyle>;
|
|
textStyle?: StyleProp<TextStyle>;
|
|
testID?: string;
|
|
}
|
|
|
|
export const TOAST_HEIGHT = 56;
|
|
const TOAST_MARGIN = 40;
|
|
const WIDTH_TABLET = 484;
|
|
const WIDTH_MOBILE = 400;
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
|
|
center: {
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
opacity: 0,
|
|
},
|
|
container: {
|
|
alignItems: 'center',
|
|
backgroundColor: theme.onlineIndicator,
|
|
borderRadius: 8,
|
|
elevation: 6,
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
height: TOAST_HEIGHT,
|
|
paddingHorizontal: 16,
|
|
shadowColor: changeOpacity('#000', 0.12),
|
|
shadowOffset: {width: 0, height: 4},
|
|
shadowRadius: 6,
|
|
},
|
|
flex: {flex: 1},
|
|
text: {
|
|
color: theme.buttonColor,
|
|
marginLeft: 10,
|
|
...typography('Body', 100, 'SemiBold'),
|
|
},
|
|
}));
|
|
|
|
const Toast = ({animatedStyle, children, style, iconName, message, textStyle, testID}: ToastProps) => {
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
const dim = useWindowDimensions();
|
|
const isTablet = useIsTablet();
|
|
const containerStyle = useMemo(() => {
|
|
const toast_width = isTablet ? WIDTH_TABLET : WIDTH_MOBILE;
|
|
const width = Math.min(dim.height, dim.width, toast_width) - TOAST_MARGIN;
|
|
return [styles.container, {width}, style];
|
|
}, [isTablet, dim, styles, style]);
|
|
|
|
return (
|
|
<Animated.View
|
|
style={[styles.center, animatedStyle]}
|
|
testID={testID}
|
|
>
|
|
<Animated.View style={containerStyle}>
|
|
{Boolean(iconName) &&
|
|
<CompassIcon
|
|
color={theme.buttonColor}
|
|
name={iconName!}
|
|
size={18}
|
|
style={textStyle}
|
|
/>
|
|
}
|
|
{Boolean(message) &&
|
|
<View style={styles.flex}>
|
|
<Text
|
|
style={[styles.text, textStyle]}
|
|
testID='toast.message'
|
|
>
|
|
{message}
|
|
</Text>
|
|
</View>
|
|
}
|
|
{children}
|
|
</Animated.View>
|
|
</Animated.View>
|
|
);
|
|
};
|
|
|
|
export default Toast;
|
|
|