mattermost-mobile/app/screens/settings/display_settings/display_settings.js
Daniel Espino García 4c8594d330
Add linter rules for import order and type member delimiters (#5514)
* Add linter rules for import order and type member delimiters

* Remove unneeded group

* Group all app/* imports before the internal imports

* Move app/ imports before parent imports

* Separate @node_modules imports into a different group

* Substitute app paths by aliases

* Fix @node_modules import order and add test related modules

* Add aliases for types and test, and group import types
2021-07-23 11:06:04 +02:00

185 lines
6.2 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import PropTypes from 'prop-types';
import React, {PureComponent} from 'react';
import {intlShape} from 'react-intl';
import {Platform, View} from 'react-native';
import {SafeAreaView} from 'react-native-safe-area-context';
import {goToScreen} from '@actions/navigation';
import StatusBar from '@components/status_bar';
import {DeviceTypes} from '@constants';
import ClockDisplay from '@screens/settings/clock_display';
import SettingsItem from '@screens/settings/settings_item';
import {preventDoubleTap} from '@utils/tap';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
export default class DisplaySettings extends PureComponent {
static propTypes = {
theme: PropTypes.object.isRequired,
enableTheme: PropTypes.bool.isRequired,
enableTimezone: PropTypes.bool.isRequired,
};
static contextTypes = {
intl: intlShape.isRequired,
};
state = {
showClockDisplaySettings: false,
};
closeClockDisplaySettings = () => {
this.setState({showClockDisplaySettings: false});
};
goToClockDisplaySettings = preventDoubleTap(() => {
const {intl} = this.context;
if (Platform.OS === 'ios') {
const screen = 'ClockDisplaySettings';
const title = intl.formatMessage({id: 'user.settings.display.clockDisplay', defaultMessage: 'Clock Display'});
goToScreen(screen, title);
return;
}
this.setState({showClockDisplaySettings: true});
});
goToSidebarSettings = preventDoubleTap(() => {
const {theme} = this.props;
const {intl} = this.context;
const screen = 'SidebarSettings';
const title = intl.formatMessage({id: 'mobile.display_settings.sidebar', defaultMessage: 'Sidebar'});
goToScreen(screen, title, {theme});
});
goToTimezoneSettings = preventDoubleTap(() => {
const {intl} = this.context;
const screen = 'TimezoneSettings';
const title = intl.formatMessage({id: 'mobile.advanced_settings.timezone', defaultMessage: 'Timezone'});
goToScreen(screen, title);
});
goToThemeSettings = preventDoubleTap(() => {
const {intl} = this.context;
const screen = 'ThemeSettings';
const title = intl.formatMessage({id: 'mobile.display_settings.theme', defaultMessage: 'Theme'});
goToScreen(screen, title);
});
render() {
const {theme, enableTimezone, enableTheme} = this.props;
const {showClockDisplaySettings} = this.state;
const style = getStyleSheet(theme);
const showArrow = Platform.OS === 'ios';
let clockDisplayModal;
if (Platform.OS === 'android') {
clockDisplayModal = (
<ClockDisplay
showModal={showClockDisplaySettings}
onClose={this.closeClockDisplaySettings}
/>
);
}
let timezoneOption;
const disableClockDisplaySeparator = enableTimezone;
if (enableTimezone) {
timezoneOption = (
<SettingsItem
defaultMessage='Timezone'
i18nId='mobile.advanced_settings.timezone'
iconName='globe'
onPress={this.goToTimezoneSettings}
separator={false}
showArrow={showArrow}
testID='display_settings.timezone.action'
theme={theme}
/>
);
}
let sidebar;
if (DeviceTypes.IS_TABLET && Platform.OS === 'ios') {
sidebar = (
<SettingsItem
defaultMessage='Sidebar'
i18nId='mobile.display_settings.sidebar'
iconName='dock-left'
onPress={this.goToSidebarSettings}
separator={true}
showArrow={showArrow}
theme={theme}
/>
);
}
return (
<SafeAreaView
edges={['left', 'right']}
style={style.container}
testID='display_settings.screen'
>
<StatusBar/>
<View style={style.wrapper}>
<View style={style.divider}/>
{sidebar}
{enableTheme && (
<SettingsItem
defaultMessage='Theme'
i18nId='mobile.display_settings.theme'
iconName='palette-outline'
onPress={this.goToThemeSettings}
separator={true}
showArrow={showArrow}
testID='display_settings.theme.action'
theme={theme}
/>
)}
<SettingsItem
defaultMessage='Clock Display'
i18nId='mobile.advanced_settings.clockDisplay'
iconName='clock-outline'
onPress={this.goToClockDisplaySettings}
separator={disableClockDisplaySeparator}
showArrow={showArrow}
testID='display_settings.clock_display.action'
theme={theme}
/>
{timezoneOption}
<View style={style.divider}/>
{clockDisplayModal}
</View>
</SafeAreaView>
);
}
}
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
container: {
flex: 1,
backgroundColor: theme.centerChannelBg,
},
wrapper: {
...Platform.select({
ios: {
flex: 1,
paddingTop: 35,
},
}),
backgroundColor: changeOpacity(theme.centerChannelColor, 0.06),
},
divider: {
backgroundColor: changeOpacity(theme.centerChannelColor, 0.1),
height: 1,
},
};
});