Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
205
Merge Requests
12
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Commits
75a85938
Commit
75a85938
authored
1 hour ago
by
Juan Manuel Solaro
1
Browse files
Options
Download
(fix) refactor old tabscreen
parent
3584863c
new-navigation-designs
1 merge request
!504
WIP: New navigation Screens
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
77 deletions
+91
-77
src/messenger/MessengerScreen.js
View file @
75a85938
...
...
@@ -25,10 +25,6 @@ import ErrorLoading from '../common/components/ErrorLoading';
import
i18n
from
'
../common/services/i18n.service
'
;
import
featuresService
from
'
../common/services/features.service
'
;
const
tabBarIcon
=
!
featuresService
.
has
(
'
navigation-2020
'
)
?
({
tintColor
})
=>
<
MessengerTabIcon
tintColor
=
{
tintColor
}
/
>
:
null
;
/**
* Messenger Conversarion List Screen
...
...
@@ -42,7 +38,6 @@ class MessengerScreen extends Component {
};
static
navigationOptions
=
{
tabBarIcon
:
tabBarIcon
,
header
:
null
,
};
...
...
This diff is collapsed.
src/navigation/NavigationStack.js
View file @
75a85938
...
...
@@ -57,6 +57,7 @@ import featuresService from '../common/services/features.service';
import
ThemedStyles
from
'
../styles/ThemedStyles
'
;
import
{
View
}
from
'
react-native
'
;
import
MessengerScreen
from
'
../messenger/MessengerScreen
'
;
//import Topbar from '../topbar/Topbar';
const
hideHeader
=
{
headerShown
:
false
};
...
...
@@ -71,7 +72,15 @@ const AppStack = function(props) {
// : withErrorBoundaryScreen(TabsScreen);
return
(
<
AppStackNav
.
Navigator
screenOptions
=
{
ThemedStyles
.
defaultScreenOptions
}
>
<
AppStackNav
.
Screen
name
=
"
Tabs
"
component
=
{
TabsScreenNew
}
options
=
{
hideHeader
}
/
>
<
AppStackNav
.
Screen
name
=
"
Tabs
"
component
=
{
TabsScreenNew
}
options
=
{
hideHeader
}
/*component={TabsScreen}
options={({ navigation, route }) => ({
header: props => <Topbar {...props} />,
})}*/
/
>
<
AppStackNav
.
Screen
name
=
"
EmailConfirmation
"
component
=
{
EmailConfirmationScreen
}
/
>
<
AppStackNav
.
Screen
name
=
"
Update
"
component
=
{
UpdatingScreen
}
/
>
<
AppStackNav
.
Screen
name
=
"
Boost
"
component
=
{
BoostScreen
}
options
=
{{
gesturesEnabled
:
false
}}
/
>
...
...
This diff is collapsed.
src/tabs/TabsScreen.js
View file @
75a85938
...
...
@@ -2,7 +2,10 @@ import React, {
Component
}
from
'
react
'
;
import
{
createMaterialTopTabNavigator
}
from
'
react-navigation-tabs
'
;
import
{
createBottomTabNavigator
}
from
'
@react-navigation/bottom-tabs
'
;
const
Tab
=
createBottomTabNavigator
();
import
{
jumpTo
,
SafeAreaView
...
...
@@ -23,79 +26,85 @@ import MessengerScreen from '../messenger/MessengerScreen';
import
featuresService
from
'
../common/services/features.service
'
;
import
{
withErrorBoundaryScreen
}
from
'
../common/components/ErrorBoundary
'
;
import
isIphoneX
from
'
../common/helpers/isIphoneX
'
;
import
IonIcon
from
'
react-native-vector-icons/Ionicons
'
;
import
Icon
from
'
react-native-vector-icons/MaterialIcons
'
;
import
CIcon
from
'
react-native-vector-icons/MaterialCommunityIcons
'
;
import
MessengerTabIcon
from
'
../messenger/MessengerTabIcon
'
;
import
NotificationIcon
from
'
../notifications/NotificationsTabIcon
'
;
let
screens
=
{
Discovery
:
{
screen
:
withErrorBoundaryScreen
(
DiscoveryScreen
),
navigationOptions
:
{
tabBarTestID
:
'
Discovery tab button
'
,
tabBarAccessibilityLabel
:
'
Discovery tab button
'
,
},
},
Newsfeed
:
{
screen
:
withErrorBoundaryScreen
(
NewsfeedScreen
),
navigationOptions
:
{
tabBarTestID
:
'
Newsfeed tab button
'
,
tabBarAccessibilityLabel
:
'
Newsfeed tab button
'
,
},
},
Messenger
:
{
screen
:
withErrorBoundaryScreen
(
MessengerScreen
),
navigationOptions
:
{
tabBarTestID
:
'
MessengerTabButton
'
,
tabBarAccessibilityLabel
:
'
Messenger tab button
'
,
},
},
Notifications
:
{
screen
:
withErrorBoundaryScreen
(
NotificationsScreen
),
navigationOptions
:
{
tabBarTestID
:
'
Notifications tab button
'
,
tabBarAccessibilityLabel
:
'
Notifications tab button
'
,
},
}
};
if
(
featuresService
.
has
(
'
crypto
'
))
{
const
getCrypto
=
function
()
{
const
WalletScreen
=
require
(
'
../wallet/WalletScreen
'
).
default
;
screens
=
{
Wallet
:{
screen
:
withErrorBoundaryScreen
(
WalletScreen
),
navigationOptions
:
{
tabBarTestID
:
'
Wallet tab button
'
,
tabBarAccessibilityLabel
:
'
Wallet tab button
'
,
},
},
...
screens
};
return
(
<
Tab
.
Screen
name
=
"
Wallet
"
component
=
{
WalletScreen
}
options
=
{{
tabBarTestID
:
'
Wallet tab button
'
}}
/>
)
;
}
const
Tabs
=
(
createMaterialTopTabNavigator
(
screens
,
{
tabBarPosition
:
'
bottom
'
,
animationEnabled
:
false
,
swipeEnabled
:
true
,
lazy
:
false
,
removeClippedSubviews
:
false
,
tabBarOptions
:
{
showLabel
:
false
,
showIcon
:
true
,
activeTintColor
:
'
#FFF
'
,
style
:
{
backgroundColor
:
'
#222
'
,
paddingBottom
:
isIphoneX
?
20
:
null
},
indicatorStyle
:
{
marginBottom
:
isIphoneX
?
20
:
null
}
},
initialRouteName
:
'
Newsfeed
'
,
navigationOptions
:
{
header
:
props
=>
<
Topbar
{...
props
}
/>
,
}
})
);
const
Tabs
=
function
({
navigation
})
{
const
isIOS
=
Platform
.
OS
===
'
ios
'
;
const
inset
=
{
bottom
:
'
always
'
,
top
:
'
never
'
};
return
(
<
Tab
.
Navigator
initialRouteName
=
"
Newsfeed
"
tabBarOptions
=
{{
showLabel
:
false
,
showIcon
:
true
,
activeTintColor
:
'
#FFF
'
,
style
:
{
backgroundColor
:
'
#222
'
,
paddingBottom
:
isIphoneX
?
20
:
null
},
indicatorStyle
:
{
marginBottom
:
isIphoneX
?
20
:
null
}
}}
screenOptions
=
{({
route
})
=>
({
tabBarIcon
:
({
focused
,
color
,
size
})
=>
{
let
iconName
,
iconsize
=
24
;
switch
(
route
.
name
)
{
case
'
Messenger
'
:
return
<
MessengerTabIcon
tintColor
=
{
color
}
/
>
case
'
Newsfeed
'
:
return
<
IonIcon
name
=
"
md-home
"
size
=
{
iconsize
}
color
=
{
color
}
/
>
case
'
Discovery
'
:
return
<
Icon
name
=
"
search
"
size
=
{
iconsize
}
color
=
{
color
}
/
>
case
'
Notifications
'
:
return
<
NotificationIcon
tintColor
=
{
color
}
size
=
{
iconsize
}
/
>
case
'
Wallet
'
:
return
<
CIcon
name
=
"
bank
"
size
=
{
iconsize
}
color
=
{
color
}
/
>
}
},
})}
>
{
featuresService
.
has
(
'
crypto
'
)
&&
getCrypto
()
}
<
Tab
.
Screen
name
=
"
Discovery
"
component
=
{
DiscoveryScreen
}
options
=
{{
tabBarTestID
:
'
Discovery tab button
'
}}
/
>
<
Tab
.
Screen
name
=
"
Newsfeed
"
component
=
{
NewsfeedScreen
}
options
=
{{
tabBarTestID
:
'
Menu tab button
'
}}
/
>
<
Tab
.
Screen
name
=
"
Messenger
"
component
=
{
MessengerScreen
}
options
=
{{
tabBarTestID
:
'
Messenger tab button
'
}}
/
>
<
Tab
.
Screen
name
=
"
Notifications
"
component
=
{
NotificationsScreen
}
options
=
{{
tabBarTestID
:
'
Notifications tab button
'
}}
/
>
<
/Tab.Navigator
>
)
}
export
default
Tabs
This diff is collapsed.
src/topbar/Topbar.js
View file @
75a85938
...
...
@@ -7,6 +7,7 @@ import {
Platform
,
TouchableOpacity
,
Dimensions
,
SafeAreaView
,
}
from
'
react-native
'
;
import
{
observer
,
inject
}
from
'
mobx-react/native
'
...
...
@@ -16,7 +17,7 @@ import { Avatar } from 'react-native-elements';
import
{
MINDS_CDN_URI
}
from
'
../config/Config
'
;
import
featuresService
from
'
../common/services/features.service
'
;
import
{
SafeAreaView
}
from
'
react-navigation
'
;
import
isIphoneX
from
'
../common/helpers/isIphoneX
'
;
import
testID
from
'
../common/helpers/testID
'
;
import
EmailConfirmation
from
'
./EmailConfirmation
'
;
...
...
This diff is collapsed.
Juan Manuel Solaro
@juanmsolaro
mentioned in issue
#1793
·
1 hour ago
mentioned in issue
#1793
mentioned in issue #1793
Toggle commit list
Please
register
or
sign in
to comment