* Unity buttons * Fix texts and use defineMessages * Update snapshots * Fix disabled style
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {Text, useWindowDimensions, View} from 'react-native';
|
|
|
|
import {useTheme} from '@context/theme';
|
|
import {useIsTablet} from '@hooks/device';
|
|
import Button from '@screens/bottom_sheet/button';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type Props = {
|
|
buttonIcon?: string;
|
|
buttonText?: string;
|
|
children: React.ReactNode;
|
|
disableButton?: boolean;
|
|
onPress?: () => void;
|
|
showButton: boolean;
|
|
showTitle: boolean;
|
|
testID?: string;
|
|
title?: string;
|
|
titleSeparator?: boolean;
|
|
}
|
|
|
|
const TITLE_MARGIN_TOP = 4;
|
|
const TITLE_MARGIN_BOTTOM = 12;
|
|
|
|
export const TITLE_HEIGHT = TITLE_MARGIN_TOP + TITLE_MARGIN_BOTTOM + 30; // typography 600 line height
|
|
export const TITLE_SEPARATOR_MARGIN = 12;
|
|
export const TITLE_SEPARATOR_MARGIN_TABLET = 20;
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
container: {
|
|
flexGrow: 1,
|
|
},
|
|
titleContainer: {
|
|
marginTop: TITLE_MARGIN_TOP,
|
|
marginBottom: TITLE_MARGIN_BOTTOM,
|
|
},
|
|
titleText: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Heading', 600, 'SemiBold'),
|
|
},
|
|
separator: {
|
|
height: 1,
|
|
right: 20,
|
|
borderTopWidth: 1,
|
|
borderColor: changeOpacity(theme.centerChannelColor, 0.08),
|
|
marginBottom: 20,
|
|
},
|
|
};
|
|
});
|
|
|
|
const BottomSheetContent = ({buttonText, buttonIcon, children, disableButton, onPress, showButton, showTitle, testID, title, titleSeparator}: Props) => {
|
|
const dimensions = useWindowDimensions();
|
|
const theme = useTheme();
|
|
const isTablet = useIsTablet();
|
|
const styles = getStyleSheet(theme);
|
|
const separatorWidth = Math.max(dimensions.width, 450);
|
|
const buttonTestId = `${testID}.${buttonText?.replace(/ /g, '_').toLocaleLowerCase()}.button`;
|
|
|
|
return (
|
|
<View
|
|
style={styles.container}
|
|
testID={`${testID}.screen`}
|
|
>
|
|
{showTitle &&
|
|
<View style={styles.titleContainer}>
|
|
<Text
|
|
style={styles.titleText}
|
|
testID={`${testID}.title`}
|
|
>
|
|
{title}
|
|
</Text>
|
|
</View>
|
|
}
|
|
{titleSeparator &&
|
|
<View style={[styles.separator, {width: separatorWidth, marginBottom: (isTablet ? TITLE_SEPARATOR_MARGIN_TABLET : TITLE_SEPARATOR_MARGIN)}]}/>
|
|
}
|
|
<>
|
|
{children}
|
|
</>
|
|
{showButton && (
|
|
<Button
|
|
disabled={disableButton}
|
|
onPress={onPress}
|
|
icon={buttonIcon}
|
|
testID={buttonTestId}
|
|
text={buttonText}
|
|
/>
|
|
)
|
|
}
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default BottomSheetContent;
|