[FIX] User Preferences (#2418)

* [FIX] User Preferences

* PreferencesView -> UserPreferencesView

Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
Djorkaeff Alexandre 2020-08-21 15:14:06 -03:00 committed by GitHub
parent ccb36f1f56
commit 7813ed3b28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 24 deletions

View File

@ -34,6 +34,8 @@ import QueueListView from '../views/QueueListView';
// Profile Stack
import ProfileView from '../views/ProfileView';
import UserPreferencesView from '../views/UserPreferencesView';
import UserNotificationPrefView from '../views/UserNotificationPreferencesView';
// Settings Stack
import SettingsView from '../views/SettingsView';
@ -41,8 +43,6 @@ import LanguageView from '../views/LanguageView';
import ThemeView from '../views/ThemeView';
import DefaultBrowserView from '../views/DefaultBrowserView';
import ScreenLockConfigView from '../views/ScreenLockConfigView';
import PreferencesView from '../views/PreferencesView';
import UserNotificationPrefView from '../views/UserNotificationPreferencesView';
// Admin Stack
import AdminPanelView from '../views/AdminPanelView';
@ -186,6 +186,21 @@ const ProfileStackNavigator = () => {
component={ProfileView}
options={ProfileView.navigationOptions}
/>
<ProfileStack.Screen
name='UserPreferencesView'
component={UserPreferencesView}
options={UserPreferencesView.navigationOptions}
/>
<ProfileStack.Screen
name='UserNotificationPrefView'
component={UserNotificationPrefView}
options={UserNotificationPrefView.navigationOptions}
/>
<ProfileStack.Screen
name='PickerView'
component={PickerView}
options={PickerView.navigationOptions}
/>
</ProfileStack.Navigator>
);
};
@ -222,21 +237,6 @@ const SettingsStackNavigator = () => {
component={ScreenLockConfigView}
options={ScreenLockConfigView.navigationOptions}
/>
<SettingsStack.Screen
name='PreferencesView'
component={PreferencesView}
options={PreferencesView.navigationOptions}
/>
<SettingsStack.Screen
name='UserNotificationPrefView'
component={UserNotificationPrefView}
options={UserNotificationPrefView.navigationOptions}
/>
<SettingsStack.Screen
name='PickerView'
component={PickerView}
options={PickerView.navigationOptions}
/>
</SettingsStack.Navigator>
);
};

View File

@ -42,7 +42,7 @@ import AdminPanelView from '../../views/AdminPanelView';
import NewMessageView from '../../views/NewMessageView';
import CreateChannelView from '../../views/CreateChannelView';
import QueueListView from '../../views/QueueListView';
import PreferencesView from '../../views/PreferencesView';
import UserPreferencesView from '../../views/UserPreferencesView';
import UserNotificationPrefView from '../../views/UserNotificationPreferencesView';
// InsideStackNavigator
@ -256,9 +256,9 @@ const ModalStackNavigator = React.memo(({ navigation }) => {
component={CreateDiscussionView}
/>
<ModalStack.Screen
name='PreferencesView'
component={PreferencesView}
options={PreferencesView.navigationOptions}
name='UserPreferencesView'
component={UserPreferencesView}
options={UserPreferencesView.navigationOptions}
/>
<ModalStack.Screen
name='UserNotificationPrefView'

View File

@ -40,7 +40,7 @@ class ProfileView extends React.Component {
options.headerLeft = () => <DrawerButton navigation={navigation} />;
}
options.headerRight = () => (
<PreferencesButton onPress={() => navigation.navigate('PreferencesView')} testID='preferences-view-open' />
<PreferencesButton onPress={() => navigation.navigate('UserPreferencesView')} testID='preferences-view-open' />
);
return options;
}

View File

@ -14,7 +14,7 @@ import ListItem from '../../containers/ListItem';
import { DisclosureImage } from '../../containers/DisclosureIndicator';
import { withTheme } from '../../theme';
class PreferencesView extends React.Component {
class UserPreferencesView extends React.Component {
static navigationOptions = () => ({
title: I18n.t('Preferences')
});
@ -62,4 +62,4 @@ class PreferencesView extends React.Component {
}
}
export default withTheme(PreferencesView);
export default withTheme(UserPreferencesView);