mattermost-mobile/app/screens/settings/timezone/timezone.js
Elias Nahum 9f238d5ef4
Post List & post components refactored (#5409)
* Update transform to make Android's post list scroll smooth

* set start since metric when appStarted is false

* Refactor Formatted components

* Downgrade RNN to 7.13.0 & patch XCDYouTube to allow video playback

* Refactor Post list and all related components

* review suggestion rename hour12 to isMilitaryTime

* feedback review use aliases

* feedback review deconstruct actions in markdown_link

* feedback review simplify if/else statement in combined_used_activity

* Simplify if statement for consecutive posts

* Specify npm version to build iOS on CI

* Refactor network_indicator

* render Icon in file gallery with transparent background

* Increase timeout to scroll to bottom when posting a new message

* fix: scroll when tapping on the new messages bar

* fix: dismiss all modals

* fix navigation tests

* Handle dismissAllModals for iOS to prevent blank screens

* Prevent modal from dismissing when showing the thread screen in the stack

* Update app/components/image_viewport.tsx

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>

* Update app/utils/post.ts

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>

* fix: rename selector and prop

* Fix XCDYouTube patch

* Fix posting from a thread in the right channel

* do not render reply bar on the thread screen

* close previous permalink before showing a new one

* move XCDYouTube patch to ios/patches folder

* closePermalink directly instead of using an onClose prop

Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
Co-authored-by: Miguel Alatzar <this.migbot@gmail.com>
2021-06-03 11:12:15 -07:00

229 lines
7.1 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 {
View,
Text,
Platform,
} from 'react-native';
import {intlShape} from 'react-intl';
import {SafeAreaView} from 'react-native-safe-area-context';
import {getTimezoneRegion} from '@mm-redux/utils/timezone_utils';
import FormattedText from '@components/formatted_text';
import StatusBar from 'app/components/status_bar';
import Section from 'app/screens/settings/section';
import SectionItem from 'app/screens/settings/section_item';
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
import {getDeviceTimezone} from 'app/utils/timezone';
import {goToScreen} from 'app/actions/navigation';
export default class Timezone extends PureComponent {
static propTypes = {
theme: PropTypes.object.isRequired,
timezones: PropTypes.array.isRequired,
user: PropTypes.object.isRequired,
userTimezone: PropTypes.shape({
useAutomaticTimezone: PropTypes.bool.isRequired,
automaticTimezone: PropTypes.string.isRequired,
manualTimezone: PropTypes.string.isRequired,
}).isRequired,
actions: PropTypes.shape({
getSupportedTimezones: PropTypes.func.isRequired,
updateUser: PropTypes.func.isRequired,
}).isRequired,
};
static defaultProps = {
timezones: [],
};
static contextTypes = {
intl: intlShape,
};
constructor(props) {
super(props);
this.state = {
useAutomaticTimezone: props.userTimezone.useAutomaticTimezone,
};
}
componentDidMount() {
const {actions: {getSupportedTimezones}, timezones} = this.props;
if (timezones.length === 0) {
getSupportedTimezones();
}
}
updateAutomaticTimezone = (useAutomaticTimezone) => {
const {userTimezone: {manualTimezone}} = this.props;
let automaticTimezone = '';
this.setState({useAutomaticTimezone});
if (useAutomaticTimezone) {
automaticTimezone = getDeviceTimezone();
this.submitUser({
useAutomaticTimezone,
automaticTimezone,
manualTimezone,
});
return;
}
if (manualTimezone?.length > 0) {
// Preserve state change in server if manualTimezone exists
this.submitUser({
useAutomaticTimezone,
automaticTimezone,
manualTimezone,
});
}
};
updateManualTimezone = (manualTimezone) => {
this.submitUser({
useAutomaticTimezone: false,
automaticTimezone: '',
manualTimezone,
});
};
submitUser = ({
useAutomaticTimezone,
automaticTimezone,
manualTimezone,
}) => {
const {user} = this.props;
const timezone = {
useAutomaticTimezone: useAutomaticTimezone.toString(),
automaticTimezone,
manualTimezone,
};
const updatedUser = {
...user,
timezone,
};
this.props.actions.updateUser(updatedUser);
};
goToSelectTimezone = () => {
const {
userTimezone: {manualTimezone},
} = this.props;
const {intl} = this.context;
const screen = 'SelectTimezone';
const title = intl.formatMessage({id: 'mobile.timezone_settings.select', defaultMessage: 'Select Timezone'});
const passProps = {
selectedTimezone: manualTimezone,
onBack: this.updateManualTimezone,
};
this.goingBack = false;
goToScreen(screen, title, passProps);
};
render() {
const {
theme,
userTimezone: {
automaticTimezone,
manualTimezone,
},
} = this.props;
const {useAutomaticTimezone} = this.state;
const style = getStyleSheet(theme);
return (
<SafeAreaView
edges={['left', 'right']}
style={style.container}
>
<StatusBar/>
<View style={style.wrapper}>
<Section
disableHeader={true}
theme={theme}
>
<View style={style.divider}/>
<SectionItem
label={(
<FormattedText
id='mobile.timezone_settings.automatically'
defaultMessage='Set automatically'
/>
)}
description={(
<Text>
{useAutomaticTimezone && getTimezoneRegion(automaticTimezone)}
</Text>
)}
action={this.updateAutomaticTimezone}
actionType='toggle'
selected={useAutomaticTimezone}
theme={theme}
/>
{!useAutomaticTimezone && (
<View>
<View style={style.separator}/>
<SectionItem
label={(
<FormattedText
id='mobile.timezone_settings.manual'
defaultMessage='Change timezone'
/>
)}
description={(
<Text>
{getTimezoneRegion(manualTimezone)}
</Text>
)}
action={this.goToSelectTimezone}
actionType='arrow'
theme={theme}
/>
</View>
)}
<View style={style.divider}/>
</Section>
</View>
</SafeAreaView>
);
}
}
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
container: {
flex: 1,
},
wrapper: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.06),
flex: 1,
...Platform.select({
ios: {
paddingTop: 35,
},
}),
},
divider: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
height: 1,
},
separator: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
height: 1,
marginLeft: 15,
},
};
});