mattermost-mobile/app/screens/settings/notification_settings/notification_settings.js
Elias Nahum 06e333dc52
MM-10193 Apply SafeAreaView to Landscape views (#3003) (#3081)
* MM-10193 for landscape Feature

Commit for MM-10193 to the landscape feature with latest pull.
This is the initial commit with SafeAreaView in place, but should not be merged into master as this is step one and not suitable for production.
Another commit will be following with adjustments to allow SafeAreaView to display correctly for users.

* MM-10193 for landscape Feature

Commit for MM-10193 to the landscape feature with latest pull.
This is the initial commit with SafeAreaView in place, but should not be merged into master as this is step one and not suitable for production.
Another commit will be following with adjustments to allow SafeAreaView to display correctly for users.

* MM-10193 Extend design elements for iPhoneX SafeAreaViews

This is the second portion of the MM-10193 changes for the landscape feature. This item was to extend the design elements for the application into the SafeAreaView so the application looks uniform on the iPhoneX.

* MM-10193 Patch for Snapshot tests and eslint

* MM-10193 Re-Patch

These chanbes mistakenly got reverted from last Patch

* MM-10193 Updates for PR

Fixed the 4 screens from the text box that were missed.
Updated the padding to run from a method.

* Revert "MM-10193 Updates for PR"

This reverts commit fe8d650ce3ca2828d8c94e4af470649aa2582ec1.

* MM-10193 Updates for PR

This reverts commit 4966d83d5401720d26ca22a55cf8f92f1657b7e2.
Applied Updated Snapshots

* MM-10193 Updated Modifier for iphone_x_spacing

Updated Modifier for iphone_x_spacing

* MM-10193 Updates for Review

Review changes for Post Textbox and a few states that were unavailable.

* MM-10193 Fix Longpress padding

Fixed longpress padding for Channel Info and Edit Post views.

* MM-10193 Update isLandscape

Updated isLandscape to pull directly from dimensions.
Updated padding for Recent Mentions and Flagged Posts.

* MM-10193 Updates for review longpost

Updated for longpost padding.
Fixed issue with notifications not padding right correctly.

* MM-10193 Update with Cleanup

Reverted Cocoapods back to 1.5.3.
Cleaned up spacing in two files.

* MM-10193 Merge Conflict Updates

Updates to resolve merge conflicts
2019-08-09 11:14:38 -04:00

272 lines
9.8 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {PureComponent} from 'react';
import PropTypes from 'prop-types';
import {injectIntl, intlShape} from 'react-intl';
import {
Alert,
Platform,
ScrollView,
View,
} from 'react-native';
import deepEqual from 'deep-equal';
import {General, RequestStatus} from 'mattermost-redux/constants';
import StatusBar from 'app/components/status_bar';
import NotificationPreferences from 'app/notification_preferences';
import SettingsItem from 'app/screens/settings/settings_item';
import {getNotificationProps} from 'app/utils/notify_props';
import {preventDoubleTap} from 'app/utils/tap';
import {changeOpacity, makeStyleSheetFromTheme, setNavigatorStyles} from 'app/utils/theme';
import {t} from 'app/utils/i18n';
class NotificationSettings extends PureComponent {
static propTypes = {
actions: PropTypes.shape({
updateMe: PropTypes.func.isRequired,
goToScreen: PropTypes.func.isRequired,
}),
componentId: PropTypes.string,
currentUser: PropTypes.object.isRequired,
intl: intlShape.isRequired,
theme: PropTypes.object.isRequired,
updateMeRequest: PropTypes.object.isRequired,
currentUserStatus: PropTypes.string.isRequired,
enableAutoResponder: PropTypes.bool.isRequired,
isLandscape: PropTypes.bool.isRequired,
};
componentWillReceiveProps(nextProps) {
if (this.props.theme !== nextProps.theme) {
setNavigatorStyles(this.props.componentId, nextProps.theme);
}
const {updateMeRequest, intl} = nextProps;
if (this.props.updateMeRequest !== updateMeRequest && updateMeRequest.status === RequestStatus.FAILURE) {
Alert.alert(
intl.formatMessage({
id: 'mobile.notification_settings.save_failed_title',
defaultMessage: 'Connection issue',
}),
intl.formatMessage({
id: 'mobile.notification_settings.save_failed_description',
defaultMessage: 'The notification settings failed to save due to a connection issue, please try again.',
})
);
}
}
handlePress = preventDoubleTap((action) => {
action();
});
goToNotificationSettingsAutoResponder = () => {
const {actions, currentUser, intl} = this.props;
const screen = 'NotificationSettingsAutoResponder';
const title = intl.formatMessage({
id: 'mobile.notification_settings.auto_responder_short',
defaultMessage: 'Automatic Replies',
});
const passProps = {
currentUser,
onBack: this.saveAutoResponder,
};
actions.goToScreen(screen, title, passProps);
};
goToNotificationSettingsEmail = () => {
const {actions, currentUser, intl} = this.props;
const screen = 'NotificationSettingsEmail';
const title = intl.formatMessage({
id: 'mobile.notification_settings.email_title',
defaultMessage: 'Email Notifications',
});
const passProps = {
currentUser,
};
actions.goToScreen(screen, title, passProps);
};
goToNotificationSettingsMentions = () => {
const {actions, currentUser, intl} = this.props;
const screen = 'NotificationSettingsMentions';
const title = intl.formatMessage({
id: 'mobile.notification_settings.mentions_replies',
defaultMessage: 'Mentions and Replies',
});
const passProps = {
currentUser,
onBack: this.saveNotificationProps,
};
actions.goToScreen(screen, title, passProps);
};
goToNotificationSettingsMobile = () => {
const {actions, currentUser, intl} = this.props;
const screen = 'NotificationSettingsMobile';
const title = intl.formatMessage({
id: 'mobile.notification_settings.mobile_title',
defaultMessage: 'Mobile Notifications',
});
NotificationPreferences.getPreferences().then((notificationPreferences) => {
const passProps = {
currentUser,
onBack: this.saveNotificationProps,
notificationPreferences,
};
requestAnimationFrame(() => {
actions.goToScreen(screen, title, passProps);
});
}).catch((e) => {
Alert.alert('There was a problem getting the device preferences', e.message);
});
};
saveNotificationProps = (notifyProps) => {
const {currentUser} = this.props;
const {user_id: userId} = notifyProps;
const previousProps = {
...getNotificationProps(currentUser),
user_id: userId,
};
if (!deepEqual(previousProps, notifyProps)) {
this.props.actions.updateMe({notify_props: notifyProps});
}
};
/**
* shouldSaveAutoResponder
*
* Necessary in order to properly update the notifyProps when
* enabling/disabling the Auto Responder.
*
* Reason being, on mobile when the AutoResponder is disabled on the server
* for some reason the update does not get received on mobile, it does for web
*/
shouldSaveAutoResponder = (notifyProps) => {
const {currentUserStatus} = this.props;
const {auto_responder_active: autoResponderActive} = notifyProps;
const enabling = currentUserStatus !== General.OUT_OF_OFFICE && autoResponderActive === 'true';
const disabling = currentUserStatus === General.OUT_OF_OFFICE && autoResponderActive === 'false';
return enabling || disabling;
};
saveAutoResponder = (notifyProps) => {
const {intl} = this.props;
if (!notifyProps.auto_responder_message || notifyProps.auto_responder_message === '') {
notifyProps.auto_responder_message = intl.formatMessage({
id: 'mobile.notification_settings.auto_responder.default_message',
defaultMessage: 'Hello, I am out of office and unable to respond to messages.',
});
}
if (this.shouldSaveAutoResponder(notifyProps)) {
this.props.actions.updateMe({notify_props: notifyProps});
}
};
render() {
const {theme, enableAutoResponder, isLandscape} = this.props;
const style = getStyleSheet(theme);
const showArrow = Platform.OS === 'ios';
const showEmailSeparator = enableAutoResponder;
let autoResponder;
if (enableAutoResponder) {
autoResponder = (
<SettingsItem
defaultMessage='Automatic Direct Message Replies'
i18nId={t('mobile.notification_settings.ooo_auto_responder')}
iconName='beach-access'
iconType='material'
onPress={() => this.handlePress(this.goToNotificationSettingsAutoResponder)}
separator={false}
showArrow={showArrow}
theme={theme}
isLandscape={isLandscape}
/>
);
}
return (
<View style={style.container}>
<StatusBar/>
<ScrollView
contentContainerStyle={style.wrapper}
alwaysBounceVertical={false}
>
<View style={style.divider}/>
<SettingsItem
defaultMessage='Mentions and Replies'
i18nId={t('mobile.notification_settings.mentions_replies')}
iconName='md-at'
iconType='ion'
onPress={() => this.handlePress(this.goToNotificationSettingsMentions)}
separator={true}
showArrow={showArrow}
theme={theme}
isLandscape={isLandscape}
/>
<SettingsItem
defaultMessage='Mobile'
i18nId={t('mobile.notification_settings.mobile')}
iconName='md-phone-portrait'
iconType='ion'
onPress={() => this.handlePress(this.goToNotificationSettingsMobile)}
separator={true}
showArrow={showArrow}
theme={theme}
isLandscape={isLandscape}
/>
<SettingsItem
defaultMessage='Email'
i18nId={t('mobile.notification_settings.email')}
iconName='ios-mail'
iconType='ion'
onPress={() => this.handlePress(this.goToNotificationSettingsEmail)}
separator={showEmailSeparator}
showArrow={showArrow}
theme={theme}
isLandscape={isLandscape}
/>
{autoResponder}
<View style={style.divider}/>
</ScrollView>
</View>
);
}
}
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
container: {
flex: 1,
backgroundColor: theme.centerChannelBg,
},
wrapper: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.06),
...Platform.select({
ios: {
paddingTop: 35,
},
}),
},
divider: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
height: 1,
width: '100%',
},
};
});
export default injectIntl(NotificationSettings);