mattermost-mobile/app/screens/settings/settings.tsx
Daniel Espino García 5c2153f83b
Add Report a Problem functionality (#8605)
* Add Report a Problem functionality

* update cache pinned SHA version from 4.0.2 to 4.2.0

* Address feedback

* Fix tests

* Fix some issues and update kotlin coroutines version

* Fix delete file for iOS

* Bump 1 more version for coroutines

* Use rxjava instead of kotlin coroutines to avoid security issue

* Move path prefix to avoid test error

* Address feedback

* Address feedback

* Address feedback

* Use mailto on iOS

* Fix tests related to button changes

* Address feedback

* Update icon and fix onboarding buttons

* Fix test

---------

Co-authored-by: Angelos Kyratzakos <angelos.kyratzakos@mattermost.com>
Co-authored-by: Mattermost Build <build@mattermost.com>
2025-04-24 11:12:55 +02:00

157 lines
5.2 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useCallback, useEffect, useMemo} from 'react';
import {useIntl} from 'react-intl';
import {Platform, View} from 'react-native';
import {handleGotoLocation} from '@actions/remote/command';
import CompassIcon from '@components/compass_icon';
import SettingContainer from '@components/settings/container';
import SettingItem from '@components/settings/item';
import {Screens} from '@constants';
import {useServerDisplayName, useServerUrl} from '@context/server';
import {useTheme} from '@context/theme';
import useAndroidHardwareBackHandler from '@hooks/android_back_handler';
import useNavButtonPressed from '@hooks/navigation_button_pressed';
import {dismissModal, goToScreen, setButtons} from '@screens/navigation';
import {preventDoubleTap} from '@utils/tap';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
import ReportProblem from './report_problem';
import type {AvailableScreens} from '@typings/screens/navigation';
const CLOSE_BUTTON_ID = 'close-settings';
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
return {
containerStyle: {
paddingLeft: 8,
marginTop: 12,
},
helpGroup: {
width: '91%',
backgroundColor: changeOpacity(theme.centerChannelColor, 0.08),
height: 1,
alignSelf: 'center',
// marginTop: 20,
},
};
});
type SettingsProps = {
componentId: AvailableScreens;
helpLink: string;
showHelp: boolean;
siteName: string;
}
//todo: Profile the whole feature - https://mattermost.atlassian.net/browse/MM-39711
const Settings = ({componentId, helpLink, showHelp, siteName}: SettingsProps) => {
const theme = useTheme();
const intl = useIntl();
const serverUrl = useServerUrl();
const serverDisplayName = useServerDisplayName();
const serverName = siteName || serverDisplayName;
const styles = getStyleSheet(theme);
const closeButton = useMemo(() => {
return {
id: CLOSE_BUTTON_ID,
icon: CompassIcon.getImageSourceSync('close', 24, theme.centerChannelColor),
testID: 'close.settings.button',
};
}, [theme.centerChannelColor]);
const close = useCallback(() => {
dismissModal({componentId});
}, [componentId]);
useEffect(() => {
setButtons(componentId, {
leftButtons: [closeButton],
});
}, []);
useAndroidHardwareBackHandler(componentId, close);
useNavButtonPressed(CLOSE_BUTTON_ID, componentId, close, []);
const goToNotifications = preventDoubleTap(() => {
const screen = Screens.SETTINGS_NOTIFICATION;
const title = intl.formatMessage({id: 'settings.notifications', defaultMessage: 'Notifications'});
goToScreen(screen, title);
});
const goToDisplaySettings = preventDoubleTap(() => {
const screen = Screens.SETTINGS_DISPLAY;
const title = intl.formatMessage({id: 'settings.display', defaultMessage: 'Display'});
goToScreen(screen, title);
});
const goToAbout = preventDoubleTap(() => {
const screen = Screens.ABOUT;
const title = intl.formatMessage({id: 'settings.about', defaultMessage: 'About {appTitle}'}, {appTitle: serverName});
goToScreen(screen, title);
});
const goToAdvancedSettings = preventDoubleTap(() => {
const screen = Screens.SETTINGS_ADVANCED;
const title = intl.formatMessage({id: 'settings.advanced_settings', defaultMessage: 'Advanced Settings'});
goToScreen(screen, title);
});
const openHelp = preventDoubleTap(() => {
if (helpLink) {
handleGotoLocation(serverUrl, intl, helpLink);
}
});
return (
<SettingContainer testID='settings'>
<SettingItem
onPress={goToNotifications}
optionName='notification'
testID='settings.notifications.option'
/>
<SettingItem
onPress={goToDisplaySettings}
optionName='display'
testID='settings.display.option'
/>
<SettingItem
onPress={goToAdvancedSettings}
optionName='advanced_settings'
testID='settings.advanced_settings.option'
/>
<SettingItem
icon='information-outline'
label={intl.formatMessage({id: 'settings.about', defaultMessage: 'About {appTitle}'}, {appTitle: serverName})}
onPress={goToAbout}
optionName='about'
testID='settings.about.option'
/>
{Platform.OS === 'android' && <View style={styles.helpGroup}/>}
{showHelp &&
<SettingItem
optionLabelTextStyle={{color: theme.linkColor}}
onPress={openHelp}
optionName='help'
separator={false}
testID='settings.help.option'
type='default'
/>
}
<ReportProblem/>
</SettingContainer>
);
};
export default Settings;