* feat: Channel notification preferences * feedback review * use button color for the icon
364 lines
14 KiB
TypeScript
364 lines
14 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useMemo} from 'react';
|
|
import {useIntl} from 'react-intl';
|
|
import {Alert, Text, View} from 'react-native';
|
|
import DeviceInfo from 'react-native-device-info';
|
|
|
|
import Config from '@assets/config.json';
|
|
import CompassIcon from '@components/compass_icon';
|
|
import FormattedText from '@components/formatted_text';
|
|
import SettingContainer from '@components/settings/container';
|
|
import SettingSeparator from '@components/settings/separator';
|
|
import AboutLinks from '@constants/about_links';
|
|
import {useTheme} from '@context/theme';
|
|
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
|
|
import {t} from '@i18n';
|
|
import {popTopScreen} from '@screens/navigation';
|
|
import {preventDoubleTap} from '@utils/tap';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
import {tryOpenURL} from '@utils/url';
|
|
|
|
import LearnMore from './learn_more';
|
|
import Subtitle from './subtitle';
|
|
import Title from './title';
|
|
import TosPrivacyContainer from './tos_privacy';
|
|
|
|
import type {AvailableScreens} from '@typings/screens/navigation';
|
|
|
|
const MATTERMOST_BUNDLE_IDS = ['com.mattermost.rnbeta', 'com.mattermost.rn'];
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
logoContainer: {
|
|
alignItems: 'center',
|
|
paddingHorizontal: 20,
|
|
marginTop: 20,
|
|
},
|
|
lineStyles: {
|
|
width: '100%',
|
|
marginTop: 40,
|
|
marginBottom: 24,
|
|
},
|
|
leftHeading: {
|
|
...typography('Body', 200, 'SemiBold'),
|
|
marginRight: 8,
|
|
color: theme.centerChannelColor,
|
|
},
|
|
rightHeading: {
|
|
...typography('Body', 200, 'Regular'),
|
|
color: theme.centerChannelColor,
|
|
},
|
|
infoContainer: {
|
|
flexDirection: 'column',
|
|
paddingHorizontal: 20,
|
|
},
|
|
info: {
|
|
color: theme.centerChannelColor,
|
|
...typography('Body', 200, 'Regular'),
|
|
},
|
|
licenseContainer: {
|
|
flexDirection: 'row',
|
|
marginTop: 20,
|
|
},
|
|
noticeContainer: {
|
|
flexDirection: 'column',
|
|
},
|
|
noticeLink: {
|
|
color: theme.linkColor,
|
|
...typography('Body', 50, 'Regular'),
|
|
},
|
|
hashContainer: {
|
|
flexDirection: 'column',
|
|
},
|
|
footerTitleText: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.64),
|
|
...typography('Body', 50, 'SemiBold'),
|
|
},
|
|
footerText: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.64),
|
|
...typography('Body', 50),
|
|
marginBottom: 10,
|
|
},
|
|
copyrightText: {
|
|
marginBottom: 0,
|
|
},
|
|
tosPrivacyContainer: {
|
|
flexDirection: 'row',
|
|
marginBottom: 10,
|
|
},
|
|
group: {
|
|
flexDirection: 'row',
|
|
},
|
|
};
|
|
});
|
|
|
|
type AboutProps = {
|
|
componentId: AvailableScreens;
|
|
config: ClientConfig;
|
|
license: ClientLicense;
|
|
}
|
|
const About = ({componentId, config, license}: AboutProps) => {
|
|
const intl = useIntl();
|
|
const theme = useTheme();
|
|
const styles = getStyleSheet(theme);
|
|
|
|
const openURL = useCallback((url: string) => {
|
|
const onError = () => {
|
|
Alert.alert(
|
|
intl.formatMessage({
|
|
id: 'settings.link.error.title',
|
|
defaultMessage: 'Error',
|
|
}),
|
|
intl.formatMessage({
|
|
id: 'settings.link.error.text',
|
|
defaultMessage: 'Unable to open the link.',
|
|
}),
|
|
);
|
|
};
|
|
|
|
tryOpenURL(url, onError);
|
|
}, []);
|
|
|
|
const handleAboutTeam = useCallback(preventDoubleTap(() => {
|
|
return openURL(Config.WebsiteURL);
|
|
}), []);
|
|
|
|
const handlePlatformNotice = useCallback(preventDoubleTap(() => {
|
|
return openURL(Config.ServerNoticeURL);
|
|
}), []);
|
|
|
|
const handleMobileNotice = useCallback(preventDoubleTap(() => {
|
|
return openURL(Config.MobileNoticeURL);
|
|
}), []);
|
|
|
|
const handleTermsOfService = useCallback(preventDoubleTap(() => {
|
|
return openURL(AboutLinks.TERMS_OF_SERVICE);
|
|
}), []);
|
|
|
|
const handlePrivacyPolicy = useCallback(preventDoubleTap(() => {
|
|
return openURL(AboutLinks.PRIVACY_POLICY);
|
|
}), []);
|
|
|
|
const serverVersion = useMemo(() => {
|
|
const buildNumber = config.BuildNumber;
|
|
const version = config.Version;
|
|
|
|
let id = t('settings.about.server.version.value');
|
|
let defaultMessage = '{version} (Build {number})';
|
|
let values: {version: string; number?: string} = {
|
|
version,
|
|
number: buildNumber,
|
|
};
|
|
|
|
if (buildNumber === version) {
|
|
id = t('settings.about.serverVersionNoBuild');
|
|
defaultMessage = '{version}';
|
|
values = {
|
|
version,
|
|
number: undefined,
|
|
};
|
|
}
|
|
|
|
return {
|
|
id, defaultMessage, values,
|
|
};
|
|
}, [config]);
|
|
|
|
useAndroidHardwareBackHandler(componentId, () => {
|
|
popTopScreen(componentId);
|
|
});
|
|
|
|
return (
|
|
<SettingContainer testID='about'>
|
|
<View style={styles.logoContainer}>
|
|
<CompassIcon
|
|
color={theme.centerChannelColor}
|
|
name='mattermost'
|
|
size={88}
|
|
testID='about.logo'
|
|
/>
|
|
<Title
|
|
config={config}
|
|
license={license}
|
|
/>
|
|
<Subtitle config={config}/>
|
|
<SettingSeparator lineStyles={styles.lineStyles}/>
|
|
</View>
|
|
<View style={styles.infoContainer}>
|
|
<View style={styles.group}>
|
|
<Text
|
|
style={styles.leftHeading}
|
|
testID='about.app_version.title'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.version', defaultMessage: 'App Version:'})}
|
|
</Text>
|
|
<Text
|
|
style={styles.rightHeading}
|
|
testID='about.app_version.value'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.build', defaultMessage: '{version} (Build {number})'},
|
|
{version: DeviceInfo.getVersion(), number: DeviceInfo.getBuildNumber()})}
|
|
</Text>
|
|
</View>
|
|
<View style={styles.group}>
|
|
<Text
|
|
style={styles.leftHeading}
|
|
testID='about.server_version.title'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.server.version.desc', defaultMessage: 'Server Version:'})}
|
|
</Text>
|
|
<Text
|
|
style={styles.rightHeading}
|
|
testID='about.server_version.value'
|
|
>
|
|
{intl.formatMessage({id: serverVersion.id, defaultMessage: serverVersion.defaultMessage}, serverVersion.values)}
|
|
</Text>
|
|
</View>
|
|
<View style={styles.group}>
|
|
<Text
|
|
style={styles.leftHeading}
|
|
testID='about.database.title'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.database', defaultMessage: 'Database:'})}
|
|
</Text>
|
|
<Text
|
|
style={styles.rightHeading}
|
|
testID='about.database.value'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.database.value', defaultMessage: `${config.SQLDriverName}`})}
|
|
</Text>
|
|
</View>
|
|
<View style={styles.group}>
|
|
<Text
|
|
style={styles.leftHeading}
|
|
testID='about.database_schema_version.title'
|
|
>
|
|
{intl.formatMessage({id: 'settings.about.database.schema', defaultMessage: 'Database Schema Version:'})}
|
|
</Text>
|
|
<Text
|
|
style={styles.rightHeading}
|
|
testID='about.database_schema_version.value'
|
|
>
|
|
{intl.formatMessage({
|
|
id: 'settings.about.database.schema.value',
|
|
defaultMessage: `${config.SchemaVersion}`,
|
|
})}
|
|
</Text>
|
|
</View>
|
|
{license.IsLicensed === 'true' && (
|
|
<View style={styles.licenseContainer}>
|
|
<FormattedText
|
|
defaultMessage='Licensed to: {company}'
|
|
id={t('settings.about.licensed')}
|
|
style={styles.info}
|
|
testID='about.licensee'
|
|
values={{company: license.Company}}
|
|
/>
|
|
</View>
|
|
)}
|
|
<LearnMore
|
|
config={config}
|
|
onPress={handleAboutTeam}
|
|
/>
|
|
{!MATTERMOST_BUNDLE_IDS.includes(DeviceInfo.getBundleId()) &&
|
|
<FormattedText
|
|
defaultMessage='{site} is powered by Mattermost'
|
|
id={t('settings.about.powered_by')}
|
|
style={styles.footerText}
|
|
testID='about.powered_by'
|
|
values={{site: config.SiteName}}
|
|
/>
|
|
}
|
|
<FormattedText
|
|
defaultMessage='Copyright 2015-{currentYear} Mattermost, Inc. All rights reserved'
|
|
id={t('settings.about.copyright')}
|
|
style={[styles.footerText, styles.copyrightText]}
|
|
testID='about.copyright'
|
|
values={{currentYear: new Date().getFullYear()}}
|
|
/>
|
|
<View style={styles.tosPrivacyContainer}>
|
|
<TosPrivacyContainer
|
|
config={config}
|
|
onPressPrivacyPolicy={handlePrivacyPolicy}
|
|
onPressTOS={handleTermsOfService}
|
|
/>
|
|
</View>
|
|
<View style={styles.noticeContainer}>
|
|
<FormattedText
|
|
id={t('settings.notice_text')}
|
|
defaultMessage='Mattermost is made possible by the open source software used in our {platform} and {mobile}.'
|
|
style={styles.footerText}
|
|
values={{
|
|
platform: (
|
|
<FormattedText
|
|
defaultMessage='server'
|
|
id={t('settings.notice_platform_link')}
|
|
onPress={handlePlatformNotice}
|
|
style={styles.noticeLink}
|
|
/>
|
|
),
|
|
mobile: (
|
|
<FormattedText
|
|
defaultMessage='mobile apps'
|
|
id={t('settings.notice_mobile_link')}
|
|
onPress={handleMobileNotice}
|
|
style={[styles.noticeLink, {marginLeft: 5}]}
|
|
/>
|
|
),
|
|
}}
|
|
testID='about.notice_text'
|
|
/>
|
|
</View>
|
|
<View style={styles.hashContainer}>
|
|
<View>
|
|
<FormattedText
|
|
defaultMessage='Build Hash:'
|
|
id={t('about.hash')}
|
|
style={styles.footerTitleText}
|
|
testID='about.build_hash.title'
|
|
/>
|
|
<Text
|
|
style={styles.footerText}
|
|
testID='about.build_hash.value'
|
|
>
|
|
{config.BuildHash}
|
|
</Text>
|
|
</View>
|
|
<View>
|
|
<FormattedText
|
|
defaultMessage='EE Build Hash:'
|
|
id={t('about.hashee')}
|
|
style={styles.footerTitleText}
|
|
testID='about.build_hash_enterprise.title'
|
|
/>
|
|
<Text
|
|
style={styles.footerText}
|
|
testID='about.build_hash_enterprise.value'
|
|
>
|
|
{config.BuildHashEnterprise}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
<View style={{marginBottom: 20}}>
|
|
<FormattedText
|
|
defaultMessage='Build Date:'
|
|
id={t('about.date')}
|
|
style={styles.footerTitleText}
|
|
testID='about.build_date.title'
|
|
/>
|
|
<Text
|
|
style={styles.footerText}
|
|
testID='about.build_date.value'
|
|
>
|
|
{config.BuildDate}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</SettingContainer>
|
|
);
|
|
};
|
|
|
|
export default About;
|