* Remove the t function and all wrong uses of preventDoubleTap * Fix existing typo * Fix tests * Address comments * Fix test
81 lines
2 KiB
TypeScript
81 lines
2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {defineMessages} from 'react-intl';
|
|
import {Text} from 'react-native';
|
|
|
|
import FormattedText from '@components/formatted_text';
|
|
import {useTheme} from '@context/theme';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
title: {
|
|
...typography('Heading', 800, 'SemiBold'),
|
|
color: theme.centerChannelColor,
|
|
paddingHorizontal: 36,
|
|
},
|
|
spacerTop: {
|
|
marginTop: 8,
|
|
},
|
|
spacerBottom: {
|
|
marginBottom: 8,
|
|
},
|
|
};
|
|
});
|
|
|
|
const messages = defineMessages({
|
|
|
|
teamEditiont0: {
|
|
id: 'about.teamEditiont0',
|
|
defaultMessage: 'Team Edition',
|
|
},
|
|
teamEditiont1: {
|
|
id: 'about.teamEditiont1',
|
|
defaultMessage: 'Enterprise Edition',
|
|
},
|
|
enterpriseEditione1: {
|
|
id: 'about.enterpriseEditione1',
|
|
defaultMessage: 'Enterprise Edition',
|
|
},
|
|
});
|
|
|
|
type TitleProps = {
|
|
config: ClientConfig;
|
|
license?: ClientLicense;
|
|
}
|
|
const Title = ({config, license}: TitleProps) => {
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
|
|
let message = messages.teamEditiont0;
|
|
|
|
if (config.BuildEnterpriseReady === 'true') {
|
|
message = messages.teamEditiont1;
|
|
|
|
if (license?.IsLicensed === 'true') {
|
|
message = messages.enterpriseEditione1;
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Text
|
|
style={[style.title, style.spacerTop]}
|
|
testID='about.site_name'
|
|
>
|
|
{`${config.SiteName} `}
|
|
</Text>
|
|
<FormattedText
|
|
{...message}
|
|
style={[style.title, style.spacerBottom]}
|
|
testID='about.title'
|
|
/>
|
|
</>
|
|
|
|
);
|
|
};
|
|
|
|
export default Title;
|