mattermost-mobile/app/screens/edit_profile/edit_profile.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

652 lines
21 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 {intlShape} from 'react-intl';
import {Alert, View} from 'react-native';
import RNFetchBlob from 'rn-fetch-blob';
import {KeyboardAwareScrollView} from 'react-native-keyboard-aware-scroll-view';
import {DocumentPickerUtil} from 'react-native-document-picker';
import {Navigation} from 'react-native-navigation';
import {Client4} from 'mattermost-redux/client';
import {buildFileUploadData, encodeHeaderURIStringToUTF8} from 'app/utils/file';
import {emptyFunction} from 'app/utils/general';
import {preventDoubleTap} from 'app/utils/tap';
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
import {t} from 'app/utils/i18n';
import TextSetting from 'app/components/widgets/settings/text_setting';
import Loading from 'app/components/loading';
import ErrorText from 'app/components/error_text';
import StatusBar from 'app/components/status_bar/index';
import ProfilePictureButton from 'app/components/profile_picture_button';
import ProfilePicture from 'app/components/profile_picture';
import mattermostBucket from 'app/mattermost_bucket';
import {getFormattedFileSize} from 'mattermost-redux/utils/file_utils';
const MAX_SIZE = 20 * 1024 * 1024;
export const VALID_MIME_TYPES = [
'image/jpeg',
'image/jpeg',
'image/jpg',
'image/jp_',
'application/jpg',
'application/x-jpg',
'image/pjpeg',
'image/pipeg',
'image/vnd.swiftview-jpeg',
'image/x-xbitmap',
'image/png',
'application/png',
'application/x-png',
'image/bmp',
'image/x-bmp',
'image/x-bitmap',
'image/x-xbitmap',
'image/x-win-bitmap',
'image/x-windows-bmp',
'image/ms-bmp',
'image/x-ms-bmp',
'application/bmp',
'application/x-bmp',
'application/x-win-bitmap',
];
const holders = {
firstName: {
id: t('user.settings.general.firstName'),
defaultMessage: 'First Name',
},
lastName: {
id: t('user.settings.general.lastName'),
defaultMessage: 'Last Name',
},
username: {
id: t('user.settings.general.username'),
defaultMessage: 'Username',
},
nickname: {
id: t('user.settings.general.nickname'),
defaultMessage: 'Nickname',
},
position: {
id: t('user.settings.general.position'),
defaultMessage: 'Position',
},
email: {
id: t('user.settings.general.email'),
defaultMessage: 'Email',
},
};
export default class EditProfile extends PureComponent {
static propTypes = {
actions: PropTypes.shape({
setProfileImageUri: PropTypes.func.isRequired,
removeProfileImage: PropTypes.func.isRequired,
updateUser: PropTypes.func.isRequired,
popTopScreen: PropTypes.func.isRequired,
dismissModal: PropTypes.func.isRequired,
setButtons: PropTypes.func.isRequired,
}).isRequired,
componentId: PropTypes.string,
currentUser: PropTypes.object.isRequired,
firstNameDisabled: PropTypes.bool.isRequired,
lastNameDisabled: PropTypes.bool.isRequired,
nicknameDisabled: PropTypes.bool.isRequired,
positionDisabled: PropTypes.bool.isRequired,
theme: PropTypes.object.isRequired,
commandType: PropTypes.string.isRequired,
isLandscape: PropTypes.bool.isRequired,
};
static contextTypes = {
intl: intlShape,
};
rightButton = {
id: 'update-profile',
enabled: false,
showAsAction: 'always',
};
constructor(props, context) {
super(props);
const {email, first_name: firstName, last_name: lastName, nickname, position, username} = props.currentUser;
const buttons = {
rightButtons: [this.rightButton],
};
this.rightButton.text = context.intl.formatMessage({id: t('mobile.account.settings.save'), defaultMessage: 'Save'});
props.actions.setButtons(props.componentId, buttons);
this.state = {
email,
firstName,
lastName,
nickname,
position,
username,
};
}
componentDidMount() {
this.navigationEventListener = Navigation.events().bindComponent(this);
}
navigationButtonPressed({buttonId}) {
switch (buttonId) {
case 'update-profile':
this.submitUser();
break;
case 'close-settings':
this.close();
break;
}
}
canUpdate = (updatedField) => {
const {currentUser} = this.props;
const keys = Object.keys(this.state);
const newState = {...this.state, ...(updatedField || {})};
Reflect.deleteProperty(newState, 'error');
Reflect.deleteProperty(newState, 'updating');
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
let userKey;
switch (key) {
case 'firstName':
userKey = 'first_name';
break;
case 'lastName':
userKey = 'last_name';
break;
default:
userKey = key;
break;
}
if (currentUser[userKey] !== newState[key]) {
return true;
}
}
return false;
};
close = () => {
const {commandType, actions} = this.props;
if (commandType === 'Push') {
actions.popTopScreen();
} else {
actions.dismissModal();
}
};
emitCanUpdateAccount = (enabled) => {
const {actions, componentId} = this.props;
const buttons = {
rightButtons: [{...this.rightButton, enabled}],
};
actions.setButtons(componentId, buttons);
};
handleRequestError = (error) => {
this.setState({error, updating: false});
this.emitCanUpdateAccount(true);
if (this.scrollView) {
this.scrollView.props.scrollToPosition(0, 0);
}
};
submitUser = preventDoubleTap(async () => {
this.emitCanUpdateAccount(false);
this.setState({error: null, updating: true});
const {
profileImage,
profileImageRemove,
firstName,
lastName,
username,
nickname,
position,
email,
} = this.state;
const user = {
first_name: firstName,
last_name: lastName,
username,
nickname,
position,
email,
};
const {actions, currentUser} = this.props;
if (profileImage) {
actions.setProfileImageUri(profileImage.uri);
this.uploadProfileImage().catch(this.handleUploadError);
}
if (profileImageRemove) {
actions.removeProfileImage(currentUser.id);
}
if (this.canUpdate()) {
const {error} = await actions.updateUser(user);
if (error) {
this.handleRequestError(error);
return;
}
}
this.close();
});
handleUploadProfileImage = (images) => {
const image = images && images.length > 0 && images[0];
this.setState({profileImage: image});
this.emitCanUpdateAccount(true);
};
handleRemoveProfileImage = () => {
this.setState({profileImageRemove: true});
this.emitCanUpdateAccount(true);
this.props.actions.dismissModal();
}
uploadProfileImage = async () => {
const {profileImage} = this.state;
const {currentUser} = this.props;
const fileData = buildFileUploadData(profileImage);
const headers = {
Authorization: `Bearer ${Client4.getToken()}`,
'X-Requested-With': 'XMLHttpRequest',
'Content-Type': 'multipart/form-data',
'X-CSRF-Token': Client4.csrf,
};
const fileInfo = {
name: 'image',
filename: encodeHeaderURIStringToUTF8(fileData.name),
data: RNFetchBlob.wrap(profileImage.uri.replace('file://', '')),
type: fileData.type,
};
const certificate = await mattermostBucket.getPreference('cert');
const options = {
timeout: 10000,
certificate,
};
return RNFetchBlob.config(options).fetch('POST', `${Client4.getUserRoute(currentUser.id)}/image`, headers, [fileInfo]);
};
updateField = (id, name) => {
const field = {[id]: name};
this.setState(field, () => {
this.emitCanUpdateAccount(this.canUpdate(field));
});
};
onShowFileSizeWarning = (filename) => {
const {formatMessage} = this.context.intl;
const fileSizeWarning = formatMessage({
id: 'file_upload.fileAbove',
defaultMessage: 'File above {max}MB cannot be uploaded: {filename}',
}, {
max: getFormattedFileSize({size: MAX_SIZE}),
filename,
});
Alert.alert(fileSizeWarning);
};
onShowUnsupportedMimeTypeWarning = () => {
const {formatMessage} = this.context.intl;
const fileTypeWarning = formatMessage({
id: 'mobile.file_upload.unsupportedMimeType',
defaultMessage: 'Only files of the following MIME type can be uploaded: {mimeTypes}',
}, {
mimeTypes: VALID_MIME_TYPES.join('\n'),
});
Alert.alert('', fileTypeWarning);
};
renderFirstNameSettings = () => {
const {formatMessage} = this.context.intl;
const {firstNameDisabled, theme, isLandscape} = this.props;
const {firstName} = this.state;
return (
<TextSetting
disabled={firstNameDisabled}
id='firstName'
label={holders.firstName}
disabledText={formatMessage({
id: 'user.settings.general.field_handled_externally',
defaultMessage: 'This field is handled through your login provider. If you want to change it, you need to do so through your login provider.',
})}
onChange={this.updateField}
theme={theme}
value={firstName}
isLandscape={isLandscape}
/>
);
};
renderLastNameSettings = () => {
const {formatMessage} = this.context.intl;
const {lastNameDisabled, theme, isLandscape} = this.props;
const {lastName} = this.state;
return (
<View>
<TextSetting
disabled={lastNameDisabled}
id='lastName'
label={holders.lastName}
disabledText={formatMessage({
id: 'user.settings.general.field_handled_externally',
defaultMessage: 'This field is handled through your login provider. If you want to change it, you need to do so through your login provider.',
})}
onChange={this.updateField}
theme={theme}
value={lastName}
isLandscape={isLandscape}
/>
</View>
);
};
renderUsernameSettings = () => {
const {formatMessage} = this.context.intl;
const {currentUser, theme, isLandscape} = this.props;
const {username} = this.state;
const disabled = currentUser.auth_service !== '';
return (
<TextSetting
disabled={disabled}
id='username'
label={holders.username}
disabledText={formatMessage({
id: 'user.settings.general.field_handled_externally',
defaultMessage: 'This field is handled through your login provider. If you want to change it, you need to do so through your login provider.',
})}
maxLength={22}
onChange={this.updateField}
theme={theme}
value={username}
isLandscape={isLandscape}
/>
);
};
renderEmailSettings = () => {
const {formatMessage} = this.context.intl;
const {currentUser, theme, isLandscape} = this.props;
const {email} = this.state;
let helpText;
if (currentUser.auth_service === '') {
helpText = formatMessage({
id: 'user.settings.general.emailCantUpdate',
defaultMessage: 'Email must be updated using a web client or desktop application.',
});
} else {
switch (currentUser.auth_service) {
case 'gitlab':
helpText = formatMessage({
id: 'user.settings.general.emailGitlabCantUpdate',
defaultMessage: 'Login occurs through GitLab. Email cannot be updated. Email address used for notifications is {email}.',
}, {email});
break;
case 'google':
helpText = formatMessage({
id: 'user.settings.general.emailGoogleCantUpdate',
defaultMessage: 'Login occurs through Google Apps. Email cannot be updated. Email address used for notifications is {email}.',
}, {email});
break;
case 'office365':
helpText = formatMessage({
id: 'user.settings.general.emailOffice365CantUpdate',
defaultMessage: 'Login occurs through Office 365. Email cannot be updated. Email address used for notifications is {email}.',
}, {email});
break;
case 'ldap':
helpText = formatMessage({
id: 'user.settings.general.emailLdapCantUpdate',
defaultMessage: 'Login occurs through AD/LDAP. Email cannot be updated. Email address used for notifications is {email}.',
}, {email});
break;
case 'saml':
helpText = formatMessage({
id: 'user.settings.general.emailSamlCantUpdate',
defaultMessage: 'Login occurs through SAML. Email cannot be updated. Email address used for notifications is {email}.',
}, {email});
break;
}
}
return (
<View>
<TextSetting
disabled={true}
id='email'
label={holders.email}
disabledText={helpText}
onChange={this.updateField}
theme={theme}
value={email}
isLandscape={isLandscape}
/>
</View>
);
};
renderNicknameSettings = () => {
const {formatMessage} = this.context.intl;
const {nicknameDisabled, theme, isLandscape} = this.props;
const {nickname} = this.state;
return (
<TextSetting
disabled={nicknameDisabled}
id='nickname'
label={holders.nickname}
disabledText={formatMessage({
id: 'user.settings.general.field_handled_externally',
defaultMessage: 'This field is handled through your login provider. If you want to change it, you need to do so through your login provider.',
})}
maxLength={22}
onChange={this.updateField}
theme={theme}
value={nickname}
isLandscape={isLandscape}
/>
);
};
renderPositionSettings = () => {
const {formatMessage} = this.context.intl;
const {positionDisabled, theme, isLandscape} = this.props;
const {position} = this.state;
return (
<TextSetting
disabled={positionDisabled}
id='position'
label={holders.position}
disabledText={formatMessage({
id: 'user.settings.general.field_handled_externally',
defaultMessage: 'This field is handled through your login provider. If you want to change it, you need to do so through your login provider.',
})}
maxLength={128}
onChange={this.updateField}
theme={theme}
value={position}
isLandscape={isLandscape}
/>
);
};
scrollViewRef = (ref) => {
this.scrollView = ref;
};
renderProfilePicture = () => {
const {
currentUser,
theme,
} = this.props;
const {
profileImage,
profileImageRemove,
} = this.state;
const style = getStyleSheet(theme);
const uri = profileImage ? profileImage.uri : null;
return (
<View style={style.top}>
<ProfilePictureButton
currentUser={currentUser}
theme={theme}
blurTextBox={emptyFunction}
browseFileTypes={DocumentPickerUtil.images()}
canTakeVideo={false}
canBrowseVideoLibrary={false}
maxFileSize={MAX_SIZE}
wrapper={true}
uploadFiles={this.handleUploadProfileImage}
removeProfileImage={this.handleRemoveProfileImage}
onShowFileSizeWarning={this.onShowFileSizeWarning}
onShowUnsupportedMimeTypeWarning={this.onShowUnsupportedMimeTypeWarning}
validMimeTypes={VALID_MIME_TYPES}
>
<ProfilePicture
userId={currentUser.id}
size={150}
statusBorderWidth={6}
statusSize={40}
edit={true}
imageUri={uri}
profileImageRemove={profileImageRemove}
/>
</ProfilePictureButton>
</View>
);
}
render() {
const {theme} = this.props;
const {
error,
updating,
} = this.state;
const style = getStyleSheet(theme);
if (updating) {
return (
<View style={[style.container, style.flex]}>
<StatusBar/>
<Loading/>
</View>
);
}
let displayError;
if (error) {
displayError = (
<View style={style.errorContainer}>
<View style={style.errorWrapper}>
<ErrorText
error={error}
textStyle={style.errorText}
/>
</View>
</View>
);
}
return (
<View style={style.flex}>
<StatusBar/>
<KeyboardAwareScrollView
bounces={false}
innerRef={this.scrollViewRef}
style={style.container}
>
{displayError}
<View style={[style.scrollView]}>
{this.renderProfilePicture()}
{this.renderFirstNameSettings()}
<View style={style.separator}/>
{this.renderLastNameSettings()}
<View style={style.separator}/>
{this.renderUsernameSettings()}
<View style={style.separator}/>
{this.renderEmailSettings()}
<View style={style.separator}/>
{this.renderNicknameSettings()}
<View style={style.separator}/>
{this.renderPositionSettings()}
<View style={style.footer}/>
</View>
</KeyboardAwareScrollView>
</View>
);
}
}
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
flex: {
flex: 1,
},
container: {
backgroundColor: theme.centerChannelBg,
},
scrollView: {
flex: 1,
backgroundColor: changeOpacity(theme.centerChannelColor, 0.03),
paddingTop: 10,
},
top: {
padding: 25,
alignItems: 'center',
justifyContent: 'center',
},
errorContainer: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.03),
width: '100%',
},
errorWrapper: {
justifyContent: 'center',
alignItems: 'center',
},
errorText: {
fontSize: 14,
marginHorizontal: 15,
},
separator: {
height: 15,
},
footer: {
height: 40,
width: '100%',
},
};
});