forked from Ivasoft/mattermost-mobile
* Detox/E2E: Account e2e tests in Gekidou * Fix suite title * Changed ldap port to number * Fix testIDs for settings * Added zephyr test case keys
94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {Platform, Text, View} from 'react-native';
|
|
|
|
import TouchableWithFeedback from '@components/touchable_with_feedback';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
type Props = {
|
|
action?: string;
|
|
enabled?: boolean;
|
|
onPress?: () => void;
|
|
title: string;
|
|
testID: string;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
|
|
actionContainer: {
|
|
alignItems: 'flex-end',
|
|
justifyContent: 'center',
|
|
right: 20,
|
|
bottom: 7,
|
|
position: 'absolute',
|
|
},
|
|
action: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.7),
|
|
fontFamily: 'OpenSans-SemiBold',
|
|
fontSize: 16,
|
|
lineHeight: 24,
|
|
},
|
|
container: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
borderBottomWidth: 1,
|
|
borderBottomColor: changeOpacity(theme.centerChannelColor, 0.08),
|
|
flexDirection: 'row',
|
|
height: 34,
|
|
width: '100%',
|
|
alignItems: 'center',
|
|
paddingBottom: 5,
|
|
},
|
|
enabled: {
|
|
color: theme.buttonBg,
|
|
},
|
|
titleContainer: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
title: {
|
|
color: theme.centerChannelColor,
|
|
fontFamily: 'OpenSans-SemiBold',
|
|
fontSize: 18,
|
|
lineHeight: 24,
|
|
},
|
|
}));
|
|
|
|
const TabletTitle = ({action, enabled = true, onPress, testID, title}: Props) => {
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
const textStyle = [styles.action, enabled && styles.enabled];
|
|
|
|
return (
|
|
<>
|
|
<View style={styles.container}>
|
|
<View style={styles.titleContainer}>
|
|
<Text
|
|
style={styles.title}
|
|
testID={`${testID}.title`}
|
|
>
|
|
{title}
|
|
</Text>
|
|
</View>
|
|
{Boolean(action) &&
|
|
<View style={styles.actionContainer}>
|
|
<TouchableWithFeedback
|
|
disabled={!enabled}
|
|
onPress={onPress}
|
|
type={Platform.select({android: 'native', ios: 'opacity'})}
|
|
testID={`${testID}.${action?.toLocaleLowerCase()}.button`}
|
|
underlayColor={changeOpacity(theme.centerChannelColor, 0.1)}
|
|
>
|
|
<Text style={textStyle}>{action}</Text>
|
|
</TouchableWithFeedback>
|
|
</View>
|
|
}
|
|
</View>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TabletTitle;
|