Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
InvestCustomer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
InvestCustomer
Commits
adacfa46
Commit
adacfa46
authored
Apr 29, 2021
by
Giang Tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edit menu drawer
parent
65a00329
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
178 additions
and
36 deletions
+178
-36
images.js
src/assets/images.js
+2
-0
iconDown.png
src/assets/images/iconDown.png
+0
-0
iconUp.png
src/assets/images/iconUp.png
+0
-0
Drawer.js
src/components/Header/Drawer.js
+170
-36
en.js
src/helper/i18/locales/en.js
+3
-0
vn.js
src/helper/i18/locales/vn.js
+3
-0
No files found.
src/assets/images.js
View file @
adacfa46
...
@@ -67,6 +67,8 @@ const images = {
...
@@ -67,6 +67,8 @@ const images = {
iconPaper
:
require
(
'./images/iconPaper.png'
),
iconPaper
:
require
(
'./images/iconPaper.png'
),
iconNote
:
require
(
'./images/iconNote.png'
),
iconNote
:
require
(
'./images/iconNote.png'
),
bg_cannot_connect
:
require
(
'./images/bg_cannot_connect.png'
),
bg_cannot_connect
:
require
(
'./images/bg_cannot_connect.png'
),
iconDown
:
require
(
'./images/iconDown.png'
),
iconUp
:
require
(
'./images/iconUp.png'
),
};
};
export
default
images
;
export
default
images
;
src/assets/images/iconDown.png
0 → 100644
View file @
adacfa46
802 Bytes
src/assets/images/iconUp.png
0 → 100644
View file @
adacfa46
764 Bytes
src/components/Header/Drawer.js
View file @
adacfa46
import
React
from
'react'
;
import
React
,
{
useState
}
from
'react'
;
import
{
View
,
Text
,
StyleSheet
,
Image
,
TouchableOpacity
}
from
'react-native'
;
import
{
View
,
Text
,
StyleSheet
,
Image
,
TouchableOpacity
,
ScrollView
,
}
from
'react-native'
;
import
R
from
'../../assets/R'
;
import
R
from
'../../assets/R'
;
import
{
HEIGHTXD
,
getFontXD
,
WIDTHXD
}
from
'../../Config/Functions'
;
import
{
HEIGHTXD
,
getFontXD
,
WIDTHXD
}
from
'../../Config/Functions'
;
import
Icon
from
'react-native-vector-icons/MaterialIcons'
;
import
Icon
from
'react-native-vector-icons/MaterialIcons'
;
...
@@ -15,23 +22,118 @@ import {
...
@@ -15,23 +22,118 @@ import {
PROFILE
,
PROFILE
,
CONTRACT
,
CONTRACT
,
LEGALDOCUMENT
,
LEGALDOCUMENT
,
MYGROUP
,
PAYMENTS
,
DEPOSIT
,
WITHDRAW
,
ROSE
,
HISTORY
,
CHOOSEMETHOD
,
}
from
'../../routers/ScreenNames'
;
}
from
'../../routers/ScreenNames'
;
import
{
useNavigation
}
from
'@react-navigation/native'
;
import
{
useNavigation
}
from
'@react-navigation/native'
;
import
{
connect
}
from
'react-redux'
;
import
{
connect
}
from
'react-redux'
;
import
AppText
from
'../AppText'
;
import
AppText
from
'../AppText'
;
import
images
from
'../../assets/images'
;
const
menus
=
[
const
menus
=
[
{
{
id
:
'1'
,
id
:
'1'
,
title
:
'
AccountVerify
'
,
title
:
'
Profile
'
,
icon
:
R
.
images
.
iconUserCheck
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
AccountVerification
,
screen
:
AccountVerification
,
active
:
false
,
children
:
[
{
id
:
'11'
,
title
:
'MyProfile'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
PROFILE
,
},
{
id
:
'12'
,
title
:
'VerifyAccount'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
AccountVerification
,
},
{
id
:
'15'
,
title
:
'MyPartner'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
MYGROUP
,
},
{
id
:
'13'
,
title
:
'Payments'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
PAYMENTS
,
},
{
id
:
'14'
,
title
:
'Contract'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
CONTRACT
,
},
],
},
},
{
{
id
:
'6'
,
id
:
'6'
,
title
:
'
Contract
'
,
title
:
'
Finance
'
,
icon
:
R
.
images
.
iconContract
,
icon
:
R
.
images
.
iconContract
,
screen
:
CONTRACT
,
screen
:
CONTRACT
,
active
:
false
,
children
:
[
{
id
:
'61'
,
title
:
'Deposit'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
CHOOSEMETHOD
,
},
{
id
:
'62'
,
title
:
'Withdraw'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
WITHDRAW
,
},
{
id
:
'63'
,
title
:
'Rose'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
ROSE
,
},
{
id
:
'64'
,
title
:
'History'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
HISTORY
,
},
],
},
{
id
:
'8'
,
title
:
'Support'
,
icon
:
R
.
images
.
iconContract
,
screen
:
CONTRACT
,
active
:
false
,
children
:
[
{
title
:
'CustomerCare'
,
icon
:
R
.
images
.
iconPhone
,
screen
:
SERVICECUSTOMER
,
id
:
'81'
,
},
{
id
:
'82'
,
title
:
'Feedback'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
FEEDBACK
,
},
{
id
:
'83'
,
title
:
'LegalDocument'
,
icon
:
R
.
images
.
iconUserCheck
,
screen
:
LEGALDOCUMENT
,
},
],
},
},
{
{
...
@@ -39,35 +141,22 @@ const menus = [
...
@@ -39,35 +141,22 @@ const menus = [
title
:
'PaymentSetting'
,
title
:
'PaymentSetting'
,
icon
:
R
.
images
.
iconMethodPay
,
icon
:
R
.
images
.
iconMethodPay
,
screen
:
METHODPAY
,
screen
:
METHODPAY
,
},
active
:
false
,
{
children
:
null
,
id
:
'3'
,
title
:
'CustomerCare'
,
icon
:
R
.
images
.
iconPhone
,
screen
:
SERVICECUSTOMER
,
},
{
id
:
'4'
,
title
:
'Feedback'
,
icon
:
R
.
images
.
iconMess
,
screen
:
FEEDBACK
,
},
{
id
:
'7'
,
title
:
'LegalDocument'
,
icon
:
R
.
images
.
iconPaper
,
screen
:
LEGALDOCUMENT
,
},
},
{
{
id
:
'5'
,
id
:
'5'
,
title
:
'Setting'
,
title
:
'Setting'
,
icon
:
R
.
images
.
iconSetting
,
icon
:
R
.
images
.
iconSetting
,
screen
:
SETTING
,
screen
:
SETTING
,
active
:
false
,
children
:
null
,
},
},
];
];
const
Drawer
=
(
props
)
=>
{
const
Drawer
=
(
props
)
=>
{
const
navigate
=
useNavigation
();
const
navigate
=
useNavigation
();
const
[
listMenu
,
setListMenu
]
=
useState
(
menus
);
return
(
return
(
<
View
style
=
{
styles
.
container
}
>
<
View
style
=
{
styles
.
container
}
>
<
View
style
=
{
styles
.
header
}
>
<
View
style
=
{
styles
.
header
}
>
...
@@ -88,20 +177,64 @@ const Drawer = (props) => {
...
@@ -88,20 +177,64 @@ const Drawer = (props) => {
<
Image
source
=
{
R
.
images
.
iconRight2
}
style
=
{
styles
.
imgIcon
}
/
>
<
Image
source
=
{
R
.
images
.
iconRight2
}
style
=
{
styles
.
imgIcon
}
/
>
<
/TouchableOpacity
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
View
style
=
{
styles
.
body
}
>
<
ScrollView
showsVerticalScrollIndicator
=
{
false
}
style
=
{
styles
.
body
}
>
{
menus
.
map
((
e
)
=>
(
{
listMenu
.
map
((
e
)
=>
(
<
TouchableOpacity
<
View
>
onPress
=
{()
=>
{
<
TouchableOpacity
navigate
.
navigate
(
e
.
screen
);
onPress
=
{()
=>
{
props
.
toggleModal
();
if
(
e
.
children
)
{
}}
const
newList
=
listMenu
.
map
((
temp
)
=>
{
key
=
{
e
.
id
}
if
(
temp
.
id
==
e
.
id
)
return
{...
temp
,
active
:
!
temp
.
active
};
style
=
{
styles
.
containerItem
}
>
return
temp
;
<
Image
source
=
{
e
.
icon
}
style
=
{
styles
.
imgIcon
}
/
>
});
<
AppText
i18nKey
=
{
e
.
title
}
style
=
{
styles
.
txtTitle
}
><
/AppText
>
<
/TouchableOpacity
>
setListMenu
(
newList
);
}
else
{
navigate
.
navigate
(
e
.
screen
);
props
.
toggleModal
();
}
}}
key
=
{
e
.
id
}
style
=
{
styles
.
containerItem
}
>
<
View
style
=
{
styles
.
row
}
>
<
Image
source
=
{
e
.
icon
}
style
=
{
styles
.
imgIcon
}
/
>
<
AppText
i18nKey
=
{
e
.
title
}
style
=
{[
styles
.
txtTitle
,
e
.
children
?
{
fontWeight
:
'bold'
}
:
null
,
e
.
active
?
{
color
:
R
.
colors
.
main
}
:
null
,
]}
><
/AppText
>
<
/View
>
{
e
.
children
?
(
<
Image
source
=
{
e
.
active
?
images
.
iconUp
:
images
.
iconDown
}
style
=
{
styles
.
imgIcon
}
/
>
)
:
null
}
<
/TouchableOpacity
>
{
e
.
active
&&
e
.
children
?
(
<
View
style
=
{{
marginLeft
:
15
}}
>
{
e
.
children
.
map
((
item
)
=>
(
<
TouchableOpacity
onPress
=
{()
=>
{
navigate
.
navigate
(
item
.
screen
);
props
.
toggleModal
();
}}
key
=
{
item
.
id
}
style
=
{
styles
.
containerItem
}
>
<
Image
source
=
{
item
.
icon
}
style
=
{
styles
.
imgIcon
}
/
>
<
AppText
i18nKey
=
{
item
.
title
}
style
=
{
styles
.
txtTitle
}
><
/AppText
>
<
/TouchableOpacity
>
))}
<
/View
>
)
:
null
}
<
/View
>
))}
))}
<
/View
>
<
/
Scroll
View
>
<
TouchableOpacity
<
TouchableOpacity
onPress
=
{()
=>
{
onPress
=
{()
=>
{
...
@@ -175,12 +308,13 @@ const styles = StyleSheet.create({
...
@@ -175,12 +308,13 @@ const styles = StyleSheet.create({
containerItem
:
{
containerItem
:
{
flexDirection
:
'row'
,
flexDirection
:
'row'
,
alignItems
:
'center'
,
alignItems
:
'center'
,
marginVertical
:
10
,
marginVertical
:
5
,
borderRadius
:
WIDTHXD
(
75
),
borderRadius
:
WIDTHXD
(
75
),
paddingVertical
:
10
,
paddingVertical
:
10
,
paddingHorizontal
:
10
,
paddingHorizontal
:
10
,
},
},
row
:
{
flexDirection
:
'row'
,
flex
:
1
,
alignItems
:
'center'
},
});
});
const
mapStateToProps
=
(
state
)
=>
{
const
mapStateToProps
=
(
state
)
=>
{
...
...
src/helper/i18/locales/en.js
View file @
adacfa46
...
@@ -189,4 +189,7 @@ export default {
...
@@ -189,4 +189,7 @@ export default {
OwnerAccount2
:
'Owner account'
,
OwnerAccount2
:
'Owner account'
,
NothingChange
:
'Nothing change'
,
NothingChange
:
'Nothing change'
,
Tradding
:
'Tradding'
,
Tradding
:
'Tradding'
,
Finance
:
'Finance'
,
Support
:
'Hỗ trợ'
,
Support_Customer
:
'Support_Customer'
,
};
};
src/helper/i18/locales/vn.js
View file @
adacfa46
...
@@ -194,4 +194,7 @@ export default {
...
@@ -194,4 +194,7 @@ export default {
OwnerAccount2
:
'Chủ tài khoản'
,
OwnerAccount2
:
'Chủ tài khoản'
,
NothingChange
:
'Không có gì thay đổi'
,
NothingChange
:
'Không có gì thay đổi'
,
Tradding
:
'Giao dịch'
,
Tradding
:
'Giao dịch'
,
Finance
:
'Tài chính'
,
Support
:
'Hỗ trợ'
,
Support_Customer
:
'Hỗ trợ khách hàng'
,
};
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment