2020-06-15 14:00:46 +00:00
|
|
|
import React, { useEffect } from 'react';
|
|
|
|
import { useIsFocused } from '@react-navigation/native';
|
2021-12-03 19:27:57 +00:00
|
|
|
import { createStackNavigator, StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
|
2020-06-15 14:00:46 +00:00
|
|
|
import { createDrawerNavigator } from '@react-navigation/drawer';
|
|
|
|
|
|
|
|
import { ThemeContext } from '../../theme';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { FadeFromCenterModal, StackAnimation, defaultHeader, themedHeader } from '../../utils/navigation';
|
2020-06-15 14:00:46 +00:00
|
|
|
// Chats Stack
|
|
|
|
import RoomView from '../../views/RoomView';
|
|
|
|
import RoomsListView from '../../views/RoomsListView';
|
|
|
|
import RoomActionsView from '../../views/RoomActionsView';
|
|
|
|
import RoomInfoView from '../../views/RoomInfoView';
|
|
|
|
import RoomInfoEditView from '../../views/RoomInfoEditView';
|
|
|
|
import RoomMembersView from '../../views/RoomMembersView';
|
|
|
|
import SearchMessagesView from '../../views/SearchMessagesView';
|
|
|
|
import SelectedUsersView from '../../views/SelectedUsersView';
|
|
|
|
import InviteUsersView from '../../views/InviteUsersView';
|
|
|
|
import InviteUsersEditView from '../../views/InviteUsersEditView';
|
|
|
|
import MessagesView from '../../views/MessagesView';
|
|
|
|
import AutoTranslateView from '../../views/AutoTranslateView';
|
|
|
|
import DirectoryView from '../../views/DirectoryView';
|
|
|
|
import NotificationPrefView from '../../views/NotificationPreferencesView';
|
|
|
|
import ForwardLivechatView from '../../views/ForwardLivechatView';
|
2021-09-22 17:29:26 +00:00
|
|
|
import CannedResponsesListView from '../../views/CannedResponsesListView';
|
|
|
|
import CannedResponseDetail from '../../views/CannedResponseDetail';
|
2020-06-15 14:00:46 +00:00
|
|
|
import LivechatEditView from '../../views/LivechatEditView';
|
|
|
|
import PickerView from '../../views/PickerView';
|
|
|
|
import ThreadMessagesView from '../../views/ThreadMessagesView';
|
2021-04-07 18:31:25 +00:00
|
|
|
import TeamChannelsView from '../../views/TeamChannelsView';
|
2020-06-15 14:00:46 +00:00
|
|
|
import MarkdownTableView from '../../views/MarkdownTableView';
|
|
|
|
import ReadReceiptsView from '../../views/ReadReceiptView';
|
|
|
|
import ProfileView from '../../views/ProfileView';
|
2021-10-06 20:30:10 +00:00
|
|
|
import DisplayPrefsView from '../../views/DisplayPrefsView';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SettingsView from '../../views/SettingsView';
|
|
|
|
import LanguageView from '../../views/LanguageView';
|
|
|
|
import ThemeView from '../../views/ThemeView';
|
|
|
|
import DefaultBrowserView from '../../views/DefaultBrowserView';
|
|
|
|
import ScreenLockConfigView from '../../views/ScreenLockConfigView';
|
|
|
|
import AdminPanelView from '../../views/AdminPanelView';
|
|
|
|
import NewMessageView from '../../views/NewMessageView';
|
|
|
|
import CreateChannelView from '../../views/CreateChannelView';
|
2020-08-21 18:14:06 +00:00
|
|
|
import UserPreferencesView from '../../views/UserPreferencesView';
|
2020-08-21 13:30:11 +00:00
|
|
|
import UserNotificationPrefView from '../../views/UserNotificationPreferencesView';
|
2020-10-30 18:31:04 +00:00
|
|
|
import SecurityPrivacyView from '../../views/SecurityPrivacyView';
|
|
|
|
import E2EEncryptionSecurityView from '../../views/E2EEncryptionSecurityView';
|
2020-06-15 14:00:46 +00:00
|
|
|
// InsideStackNavigator
|
|
|
|
import AttachmentView from '../../views/AttachmentView';
|
|
|
|
import ModalBlockView from '../../views/ModalBlockView';
|
|
|
|
import JitsiMeetView from '../../views/JitsiMeetView';
|
|
|
|
import StatusView from '../../views/StatusView';
|
|
|
|
import CreateDiscussionView from '../../views/CreateDiscussionView';
|
2020-09-11 14:31:38 +00:00
|
|
|
import E2ESaveYourPasswordView from '../../views/E2ESaveYourPasswordView';
|
|
|
|
import E2EHowItWorksView from '../../views/E2EHowItWorksView';
|
|
|
|
import E2EEnterYourPasswordView from '../../views/E2EEnterYourPasswordView';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { deleteKeyCommands, setKeyCommands } from '../../commands';
|
2020-06-26 20:22:56 +00:00
|
|
|
import ShareView from '../../views/ShareView';
|
2020-08-28 19:41:08 +00:00
|
|
|
import QueueListView from '../../ee/omnichannel/views/QueueListView';
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
import AddChannelTeamView from '../../views/AddChannelTeamView';
|
|
|
|
import AddExistingChannelView from '../../views/AddExistingChannelView';
|
[NEW] Leave Teams (#3116)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Added SelectListView and logic for leaving team
* Minor tweak
* Minor tweak
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Remove unnecesary prop
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* Minor refactor to ListItem, add SelectListView to ModalStack, update handleLeaveTeam
* Minor tweaks
* Update SelectListView
* Update handleLeaveTeam, remove unnecessary method, add story
* Minor tweak
* Minor visual tweaks
* Updated SelectListView, RoomActionsView, leaveTeam method and string translations
* Update SelectListVIew
* Minor tweak
* Update SelectListView
* Minor tweak
* Fix for List.Item subtitles being pushed down by title's flex
* Minor tweaks
* Update RoomActionsView
* Use showConfirmationAlert and showErrorAlert
* Lint
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-25 18:04:05 +00:00
|
|
|
import SelectListView from '../../views/SelectListView';
|
2021-09-16 18:16:02 +00:00
|
|
|
import DiscussionsView from '../../views/DiscussionsView';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { ModalContainer } from './ModalContainer';
|
2021-12-03 19:27:57 +00:00
|
|
|
import {
|
|
|
|
MasterDetailChatsStackParamList,
|
|
|
|
MasterDetailDrawerParamList,
|
|
|
|
MasterDetailInsideStackParamList,
|
|
|
|
ModalStackParamList
|
|
|
|
} from './types';
|
2020-08-28 19:41:08 +00:00
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
// ChatsStackNavigator
|
2021-12-03 19:27:57 +00:00
|
|
|
const ChatsStack = createStackNavigator<MasterDetailChatsStackParamList>();
|
2020-06-15 14:00:46 +00:00
|
|
|
const ChatsStackNavigator = React.memo(() => {
|
|
|
|
const { theme } = React.useContext(ThemeContext);
|
|
|
|
|
|
|
|
const isFocused = useIsFocused();
|
|
|
|
useEffect(() => {
|
|
|
|
if (isFocused) {
|
|
|
|
setKeyCommands();
|
|
|
|
} else {
|
|
|
|
deleteKeyCommands();
|
|
|
|
}
|
|
|
|
return () => {
|
|
|
|
deleteKeyCommands();
|
|
|
|
};
|
|
|
|
}, [isFocused]);
|
|
|
|
|
|
|
|
return (
|
2021-12-03 19:27:57 +00:00
|
|
|
<ChatsStack.Navigator
|
|
|
|
screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation } as StackNavigationOptions}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ChatsStack.Screen name='RoomView' component={RoomView} options={{ headerShown: false }} />
|
2020-06-15 14:00:46 +00:00
|
|
|
</ChatsStack.Navigator>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// DrawerNavigator
|
2021-12-03 19:27:57 +00:00
|
|
|
const Drawer = createDrawerNavigator<MasterDetailDrawerParamList>();
|
2020-06-15 14:00:46 +00:00
|
|
|
const DrawerNavigator = React.memo(() => (
|
|
|
|
<Drawer.Navigator
|
2021-12-03 19:27:57 +00:00
|
|
|
// @ts-ignore
|
2020-06-15 14:00:46 +00:00
|
|
|
drawerContent={({ navigation, state }) => <RoomsListView navigation={navigation} state={state} />}
|
2021-09-13 20:41:05 +00:00
|
|
|
drawerType='permanent'>
|
2020-06-15 14:00:46 +00:00
|
|
|
<Drawer.Screen name='ChatsStackNavigator' component={ChatsStackNavigator} />
|
|
|
|
</Drawer.Navigator>
|
|
|
|
));
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
export interface INavigation {
|
|
|
|
navigation: StackNavigationProp<ModalStackParamList>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ModalStack = createStackNavigator<ModalStackParamList>();
|
|
|
|
const ModalStackNavigator = React.memo(({ navigation }: INavigation) => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const { theme } = React.useContext(ThemeContext);
|
|
|
|
return (
|
|
|
|
<ModalContainer navigation={navigation} theme={theme}>
|
2021-12-03 19:27:57 +00:00
|
|
|
<ModalStack.Navigator
|
|
|
|
screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...StackAnimation } as StackNavigationOptions}>
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='RoomActionsView'
|
|
|
|
component={RoomActionsView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => RoomActionsView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='RoomInfoView' component={RoomInfoView} options={RoomInfoView.navigationOptions} />
|
2022-01-17 16:10:39 +00:00
|
|
|
<ModalStack.Screen name='SelectListView' component={SelectListView} />
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='RoomInfoEditView' component={RoomInfoEditView} options={RoomInfoEditView.navigationOptions} />
|
|
|
|
<ModalStack.Screen name='RoomMembersView' component={RoomMembersView} options={RoomMembersView.navigationOptions} />
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='SearchMessagesView'
|
|
|
|
component={SearchMessagesView}
|
|
|
|
options={SearchMessagesView.navigationOptions}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='SelectedUsersView' component={SelectedUsersView} />
|
2022-05-13 13:02:01 +00:00
|
|
|
<ModalStack.Screen name='InviteUsersView' component={InviteUsersView} />
|
2021-12-03 19:27:57 +00:00
|
|
|
<ModalStack.Screen name='AddChannelTeamView' component={AddChannelTeamView} />
|
[NEW] Add/Create/Remove channel on a team (#3090)
* Added Create Team
* Added actionTypes, actions, ENG strings for Teams and updated NewMessageView
* Added createTeam sagas, createTeam reducer, new Team string and update CreateChannelView
* Remove unnecessary actionTypes, reducers and sagas, e2e tests and navigation to team view
* Minor tweaks
* Show TeamChannelsView only if joined the team
* Minor tweak
* Added AddChannelTeamView
* Added permissions, translations strings for teams, deleteTeamRoom and addTeamRooms, AddExistingChannelView, updated CreateChannelView, TeamChannelsView
* Refactor touch component and update removeRoom and deleteRoom methods
* Minor tweaks
* Minor tweaks for removing channels and addExistingChannelView
* Added missing events and fixed channels list
* Minor tweaks for refactored touch component
* Minor tweaks
* Remove unnecesary changes, update TeamChannelsView, AddExistingChannelView, AddChannelTeamView, createChannel, goRoom and Touchable
* Add screens to ModalStack, events, autoJoin, update createChannel, addRoomsToTeam and Touchable
* Minor tweak
* Update loadMessagesForRoom.js
* Updated schema, tag component, touch, AddChannelTeamView, AddExistingChannelView, ActionSheet Item
* Fix unnecessary changes
* Add i18n, update createChannel, AddExistingChannelTeamView, AddChannelTeamView, RightButton and TeamChannelsView
* Updated styles, added tag story
* Minor tweak
* Minor tweaks
* Auto-join tweak
* Minor tweaks
* Minor tweak on search
* One way to refactor :P
* Next level refactor :)
* Fix create group dm
* Refactor renderItem
* Minor bug fixes
* Fix stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
2021-05-19 21:14:42 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='AddExistingChannelView'
|
|
|
|
component={AddExistingChannelView}
|
|
|
|
options={AddExistingChannelView.navigationOptions}
|
|
|
|
/>
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='InviteUsersEditView'
|
|
|
|
component={InviteUsersEditView}
|
|
|
|
options={InviteUsersEditView.navigationOptions}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='MessagesView' component={MessagesView} />
|
|
|
|
<ModalStack.Screen name='AutoTranslateView' component={AutoTranslateView} options={AutoTranslateView.navigationOptions} />
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='DirectoryView'
|
|
|
|
component={DirectoryView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => DirectoryView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
2020-07-31 18:22:30 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='QueueListView'
|
|
|
|
component={QueueListView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => QueueListView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-07-31 18:22:30 +00:00
|
|
|
/>
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='NotificationPrefView'
|
|
|
|
component={NotificationPrefView}
|
|
|
|
options={NotificationPrefView.navigationOptions}
|
|
|
|
/>
|
2022-05-02 12:03:55 +00:00
|
|
|
<ModalStack.Screen name='ForwardLivechatView' component={ForwardLivechatView} />
|
2021-12-03 19:27:57 +00:00
|
|
|
<ModalStack.Screen name='CannedResponsesListView' component={CannedResponsesListView} />
|
|
|
|
<ModalStack.Screen name='CannedResponseDetail' component={CannedResponseDetail} />
|
2021-09-16 18:16:02 +00:00
|
|
|
<ModalStack.Screen name='LivechatEditView' component={LivechatEditView} options={LivechatEditView.navigationOptions} />
|
|
|
|
<ModalStack.Screen name='PickerView' component={PickerView} options={PickerView.navigationOptions} />
|
|
|
|
<ModalStack.Screen name='ThreadMessagesView' component={ThreadMessagesView} />
|
|
|
|
<ModalStack.Screen name='DiscussionsView' component={DiscussionsView} />
|
|
|
|
<ModalStack.Screen name='TeamChannelsView' component={TeamChannelsView} options={TeamChannelsView.navigationOptions} />
|
2022-05-13 12:57:19 +00:00
|
|
|
<ModalStack.Screen name='MarkdownTableView' component={MarkdownTableView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='ReadReceiptsView'
|
|
|
|
component={ReadReceiptsView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => ReadReceiptsView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
|
|
|
<ModalStack.Screen
|
|
|
|
name='SettingsView'
|
|
|
|
component={SettingsView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => SettingsView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='LanguageView' component={LanguageView} options={LanguageView.navigationOptions} />
|
2022-05-05 15:24:36 +00:00
|
|
|
<ModalStack.Screen name='ThemeView' component={ThemeView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='DefaultBrowserView'
|
|
|
|
component={DefaultBrowserView}
|
|
|
|
options={DefaultBrowserView.navigationOptions}
|
|
|
|
/>
|
|
|
|
<ModalStack.Screen
|
|
|
|
name='ScreenLockConfigView'
|
|
|
|
component={ScreenLockConfigView}
|
|
|
|
options={ScreenLockConfigView.navigationOptions}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='StatusView' component={StatusView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='ProfileView'
|
|
|
|
component={ProfileView}
|
2022-01-17 16:10:39 +00:00
|
|
|
options={props => ProfileView.navigationOptions!({ ...props, isMasterDetail: true })}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
2021-10-06 20:30:10 +00:00
|
|
|
<ModalStack.Screen name='DisplayPrefsView' component={DisplayPrefsView} />
|
2022-05-11 16:33:27 +00:00
|
|
|
<ModalStack.Screen name='AdminPanelView' component={AdminPanelView} />
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='NewMessageView' component={NewMessageView} options={NewMessageView.navigationOptions} />
|
|
|
|
<ModalStack.Screen name='SelectedUsersViewCreateChannel' component={SelectedUsersView} />
|
|
|
|
<ModalStack.Screen name='CreateChannelView' component={CreateChannelView} options={CreateChannelView.navigationOptions} />
|
|
|
|
<ModalStack.Screen name='CreateDiscussionView' component={CreateDiscussionView} />
|
2020-09-11 14:31:38 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='E2ESaveYourPasswordView'
|
|
|
|
component={E2ESaveYourPasswordView}
|
|
|
|
options={E2ESaveYourPasswordView.navigationOptions}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<ModalStack.Screen name='E2EHowItWorksView' component={E2EHowItWorksView} options={E2EHowItWorksView.navigationOptions} />
|
2020-09-11 14:31:38 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='E2EEnterYourPasswordView'
|
|
|
|
component={E2EEnterYourPasswordView}
|
|
|
|
options={E2EEnterYourPasswordView.navigationOptions}
|
|
|
|
/>
|
2021-12-03 19:27:57 +00:00
|
|
|
<ModalStack.Screen name='UserPreferencesView' component={UserPreferencesView} />
|
2020-08-21 13:30:11 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='UserNotificationPrefView'
|
|
|
|
component={UserNotificationPrefView}
|
|
|
|
options={UserNotificationPrefView.navigationOptions}
|
|
|
|
/>
|
2021-12-03 19:27:57 +00:00
|
|
|
<ModalStack.Screen name='SecurityPrivacyView' component={SecurityPrivacyView} />
|
2020-10-30 18:31:04 +00:00
|
|
|
<ModalStack.Screen
|
|
|
|
name='E2EEncryptionSecurityView'
|
|
|
|
component={E2EEncryptionSecurityView}
|
|
|
|
options={E2EEncryptionSecurityView.navigationOptions}
|
|
|
|
/>
|
2020-06-15 14:00:46 +00:00
|
|
|
</ModalStack.Navigator>
|
|
|
|
</ModalContainer>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// InsideStackNavigator
|
2021-12-03 19:27:57 +00:00
|
|
|
const InsideStack = createStackNavigator<MasterDetailInsideStackParamList>();
|
2020-06-15 14:00:46 +00:00
|
|
|
const InsideStackNavigator = React.memo(() => {
|
|
|
|
const { theme } = React.useContext(ThemeContext);
|
|
|
|
return (
|
2021-12-03 19:27:57 +00:00
|
|
|
<InsideStack.Navigator
|
|
|
|
mode='modal'
|
|
|
|
screenOptions={{ ...defaultHeader, ...themedHeader(theme), ...FadeFromCenterModal } as StackNavigationOptions}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<InsideStack.Screen name='DrawerNavigator' component={DrawerNavigator} options={{ headerShown: false }} />
|
|
|
|
<InsideStack.Screen name='ModalStackNavigator' component={ModalStackNavigator} options={{ headerShown: false }} />
|
|
|
|
<InsideStack.Screen name='AttachmentView' component={AttachmentView} />
|
|
|
|
<InsideStack.Screen name='ModalBlockView' component={ModalBlockView} options={ModalBlockView.navigationOptions} />
|
|
|
|
<InsideStack.Screen name='JitsiMeetView' component={JitsiMeetView} options={{ headerShown: false }} />
|
|
|
|
<InsideStack.Screen name='ShareView' component={ShareView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
</InsideStack.Navigator>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2020-06-16 20:32:30 +00:00
|
|
|
export default InsideStackNavigator;
|