2017-09-21 17:08:00 +00:00
|
|
|
import React from 'react';
|
2017-11-14 22:49:17 +00:00
|
|
|
import { Platform } from 'react-native';
|
2017-11-23 19:12:06 +00:00
|
|
|
import { StackNavigator, DrawerNavigator } from 'react-navigation';
|
2017-09-21 17:08:00 +00:00
|
|
|
|
|
|
|
import Sidebar from '../../containers/Sidebar';
|
|
|
|
import DrawerMenuButton from '../../presentation/DrawerMenuButton';
|
|
|
|
|
|
|
|
import RoomsListView from '../../views/RoomsListView';
|
|
|
|
import RoomView from '../../views/RoomView';
|
|
|
|
import CreateChannelView from '../../views/CreateChannelView';
|
2017-09-25 13:15:28 +00:00
|
|
|
import SelectUsersView from '../../views/SelectUsersView';
|
2017-09-21 17:08:00 +00:00
|
|
|
|
|
|
|
const drawerPosition = 'left';
|
|
|
|
const drawerIconPosition = 'headerLeft';
|
|
|
|
|
|
|
|
const AuthRoutes = StackNavigator(
|
|
|
|
{
|
|
|
|
RoomsList: {
|
|
|
|
screen: RoomsListView,
|
|
|
|
navigationOptions({ navigation }) {
|
|
|
|
return {
|
|
|
|
title: 'Rooms',
|
2017-09-25 13:15:28 +00:00
|
|
|
[drawerIconPosition]: <DrawerMenuButton navigation={navigation} />
|
2017-09-21 17:08:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Room: {
|
|
|
|
screen: RoomView,
|
|
|
|
navigationOptions({ navigation }) {
|
|
|
|
return {
|
2017-11-28 17:47:56 +00:00
|
|
|
title: navigation.state.params.name || navigation.state.params.room.name || 'Room'
|
2017-09-21 17:08:00 +00:00
|
|
|
// [drawerIconPosition]: (<DrawerMenuButton navigation={navigation} />)÷
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
CreateChannel: {
|
|
|
|
screen: CreateChannelView,
|
|
|
|
navigationOptions: {
|
|
|
|
title: 'Create Channel'
|
|
|
|
}
|
2017-09-25 13:15:28 +00:00
|
|
|
},
|
|
|
|
SelectUsers: {
|
|
|
|
screen: SelectUsersView,
|
|
|
|
navigationOptions: {
|
|
|
|
title: 'Select Users'
|
|
|
|
}
|
2017-09-21 17:08:00 +00:00
|
|
|
}
|
|
|
|
},
|
2017-09-25 13:15:28 +00:00
|
|
|
{}
|
2017-09-21 17:08:00 +00:00
|
|
|
);
|
|
|
|
|
2017-09-25 13:15:28 +00:00
|
|
|
const Routes = DrawerNavigator(
|
|
|
|
{
|
|
|
|
Home: {
|
|
|
|
screen: AuthRoutes,
|
|
|
|
navigationOptions({ navigation }) {
|
|
|
|
return {
|
|
|
|
title: 'Rooms',
|
|
|
|
[drawerIconPosition]: <DrawerMenuButton navigation={navigation} />
|
|
|
|
};
|
|
|
|
}
|
2017-09-21 17:08:00 +00:00
|
|
|
}
|
2017-09-25 13:15:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
contentComponent: Sidebar,
|
2017-11-14 22:49:17 +00:00
|
|
|
drawerPosition,
|
|
|
|
navigationOptions: {
|
|
|
|
drawerLockMode: Platform.OS === 'ios' ? 'locked-closed' : 'unlocked'
|
|
|
|
}
|
2017-09-21 17:08:00 +00:00
|
|
|
}
|
2017-09-25 13:15:28 +00:00
|
|
|
);
|
2017-09-21 17:08:00 +00:00
|
|
|
|
|
|
|
export default Routes;
|