Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
clone_excelso
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Prasetya Saputra
clone_excelso
Commits
c4940e3f
Commit
c4940e3f
authored
Jul 03, 2020
by
Wahyu Adjie Prasetyo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nambahin try cath untuk menangkap error di hp pak benny
parent
0c07d48d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
579 additions
and
484 deletions
+579
-484
Account.js
view/Account.js
+434
-374
NewsDetail.js
view/NewsDetail.js
+55
-40
RewardsList.js
view/RewardsList.js
+90
-70
No files found.
view/Account.js
View file @
c4940e3f
...
...
@@ -51,444 +51,504 @@ class Account extends React.Component {
old_balance_claimed
:
false
,
old_balance
:
0
,
is_expired
:
false
,
card_number
:
""
,
card_number
:
""
,
}
}
componentDidMount
()
{
this
.
_getProfile
()
this
.
_unsubscribe
=
this
.
props
.
navigation
.
addListener
(
'focus'
,
()
=>
{
this
.
setState
({
indicator
:
true
})
try
{
this
.
_getProfile
()
});
this
.
_unsubscribe
=
this
.
props
.
navigation
.
addListener
(
'focus'
,
()
=>
{
this
.
setState
({
indicator
:
true
})
this
.
_getProfile
()
});
}
catch
(
error
)
{
Alert
.
alert
(
'Error'
+
error
)
}
}
componentWillUnmount
()
{
this
.
_unsubscribe
();
try
{
this
.
_unsubscribe
();
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
)
}
}
_getPermissions
=
async
()
=>
{
let
{
status
}
=
await
Permissions
.
askAsync
(
Permissions
.
LOCATION
);
if
(
status
!==
'granted'
)
{
Alert
.
alert
(
'Akses tidak dizinkan!'
)
}
else
if
(
Platform
.
OS
===
'android'
&&
!
Device
.
isDevice
)
{
Alert
.
alert
(
'Silahkan anda coba di real Device'
)
}
else
{
this
.
_getCurrentPosisition
()
try
{
let
{
status
}
=
await
Permissions
.
askAsync
(
Permissions
.
LOCATION
);
if
(
status
!==
'granted'
)
{
Alert
.
alert
(
'Akses tidak dizinkan!'
)
}
else
if
(
Platform
.
OS
===
'android'
&&
!
Device
.
isDevice
)
{
Alert
.
alert
(
'Silahkan anda coba di real Device'
)
}
else
{
this
.
_getCurrentPosisition
()
}
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
)
}
}
_getCurrentPosisition
=
async
()
=>
{
this
.
setState
({
spinner
:
true
,
})
let
location
=
await
Location
.
getCurrentPositionAsync
({
accuracy
:
Location
.
Accuracy
.
Highest
})
let
latitude
=
location
.
coords
.
latitude
;
let
longitude
=
location
.
coords
.
longitude
;
this
.
setState
({
my_lat
:
latitude
,
my_long
:
longitude
})
this
.
_getProfile
()
try
{
this
.
setState
({
spinner
:
true
,
})
let
location
=
await
Location
.
getCurrentPositionAsync
({
accuracy
:
Location
.
Accuracy
.
Highest
})
let
latitude
=
location
.
coords
.
latitude
;
let
longitude
=
location
.
coords
.
longitude
;
this
.
setState
({
my_lat
:
latitude
,
my_long
:
longitude
})
this
.
_getProfile
()
}
catch
(
error
)
{
Alert
.
alert
(
'Error: + '
,
error
)
}
}
logout
()
{
let
configProps
=
{
session_id
:
''
try
{
let
configProps
=
{
session_id
:
''
}
this
.
props
.
setConfig
(
configProps
);
this
.
props
.
navigation
.
replace
(
'Login'
);
}
catch
(
error
)
{
Alert
.
alert
(
'ERROR : '
+
error
)
}
this
.
props
.
setConfig
(
configProps
);
this
.
props
.
navigation
.
replace
(
'Login'
);
}
onClickClaimCredit
()
{
Alert
.
alert
(
""
,
"Are you sure want to claim credit ?"
,
[
{
text
:
'No'
,
onPress
:
()
=>
console
.
log
(
'Cancel Claim Credit'
),
style
:
'cancel'
,
},
{
text
:
'Yes'
,
onPress
:
()
=>
this
.
handleClaimCredit
()
},
],
{
cancelable
:
false
},
)
try
{
Alert
.
alert
(
""
,
"Are you sure want to claim credit ?"
,
[
{
text
:
'No'
,
onPress
:
()
=>
console
.
log
(
'Cancel Claim Credit'
),
style
:
'cancel'
,
},
{
text
:
'Yes'
,
onPress
:
()
=>
this
.
handleClaimCredit
()
},
],
{
cancelable
:
false
},
)
}
catch
(
error
)
{
Alert
.
alert
(
'Error: '
+
error
)
}
}
handleClaimCredit
()
{
let
params
=
Object
.
assign
(
requestParams
,{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/card/claim_old_balance'
,
params
).
then
(
res
=>
{
Alert
.
alert
(
i18n
.
t
(
'success'
),
i18n
.
t
(
'alertclaimcredit'
))
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
Alert
.
alert
(
error
,
response
.
msg
)
})
try
{
let
params
=
Object
.
assign
(
requestParams
,
{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/card/claim_old_balance'
,
params
).
then
(
res
=>
{
Alert
.
alert
(
i18n
.
t
(
'success'
),
i18n
.
t
(
'alertclaimcredit'
))
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
Alert
.
alert
(
error
,
response
.
msg
)
})
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
)
}
}
_getProfile
()
{
let
params
=
Object
.
assign
(
requestParams
,{
session_id
:
this
.
props
.
session_id
,
lat
:
this
.
state
.
my_lat
,
long
:
this
.
state
.
my_long
,
closest_outlet
:
1
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/member/get_profile'
,
params
).
then
(
res
=>
{
console
.
log
(
"INI DATANYA : "
+
JSON
.
stringify
(
res
))
const
dataCard
=
res
.
data
console
.
log
(
dataCard
)
let
email
=
dataCard
.
email
let
point
=
dataCard
.
kaspro_point
let
balance
=
dataCard
.
kaspro_balance
let
img_card
=
dataCard
.
card_series_image
let
member_since
=
dataCard
.
member_since
let
expire
=
dataCard
.
expire_date
let
premium
=
dataCard
.
kaspro_is_premium
let
kaspro
=
dataCard
.
kaspro_account_number
let
full_name
=
dataCard
.
name
let
old_balance_claimed
=
dataCard
.
old_balance_claimed
let
old_balance
=
dataCard
.
old_balance
let
is_expired
=
dataCard
.
is_expired
let
card_number
=
dataCard
.
card_number
let
account_number
=
dataCard
.
account_number
if
(
kaspro
===
""
)
{
let
cardProps
=
{
set_card
:
false
try
{
let
params
=
Object
.
assign
(
requestParams
,
{
session_id
:
this
.
props
.
session_id
,
lat
:
this
.
state
.
my_lat
,
long
:
this
.
state
.
my_long
,
closest_outlet
:
1
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/member/get_profile'
,
params
).
then
(
res
=>
{
console
.
log
(
"INI DATANYA : "
+
JSON
.
stringify
(
res
))
const
dataCard
=
res
.
data
console
.
log
(
dataCard
)
let
email
=
dataCard
.
email
let
point
=
dataCard
.
kaspro_point
let
balance
=
dataCard
.
kaspro_balance
let
img_card
=
dataCard
.
card_series_image
let
member_since
=
dataCard
.
member_since
let
expire
=
dataCard
.
expire_date
let
premium
=
dataCard
.
kaspro_is_premium
let
kaspro
=
dataCard
.
kaspro_account_number
let
full_name
=
dataCard
.
name
let
old_balance_claimed
=
dataCard
.
old_balance_claimed
let
old_balance
=
dataCard
.
old_balance
let
is_expired
=
dataCard
.
is_expired
let
card_number
=
dataCard
.
card_number
let
account_number
=
dataCard
.
account_number
if
(
kaspro
===
""
)
{
let
cardProps
=
{
set_card
:
false
}
this
.
props
.
setCardactive
(
cardProps
)
}
else
{
let
cardProps
=
{
set_card
:
true
}
this
.
props
.
setCardactive
(
cardProps
)
}
this
.
props
.
setCardactive
(
cardProps
)
}
else
{
let
cardProps
=
{
set_card
:
true
this
.
setState
({
email
:
email
,
points
:
point
,
img_card
:
img_card
,
member_since
:
member_since
,
balance
:
balance
,
account_number
:
account_number
,
img_card
:
img_card
,
expire_date
:
expire
,
premium
:
premium
,
full_name
:
full_name
,
indicator
:
false
,
old_balance_claimed
:
old_balance_claimed
,
old_balance
:
old_balance
,
is_expired
:
is_expired
,
card_number
:
card_number
})
let
setCardNumberProps
=
{
card_number
:
this
.
state
.
card_number
}
this
.
props
.
setCardactive
(
cardProps
)
}
this
.
setState
({
email
:
email
,
points
:
point
,
img_card
:
img_card
,
member_since
:
member_since
,
balance
:
balance
,
account_number
:
account_number
,
img_card
:
img_card
,
expire_date
:
expire
,
premium
:
premium
,
full_name
:
full_name
,
indicator
:
false
,
old_balance_claimed
:
old_balance_claimed
,
old_balance
:
old_balance
,
is_expired
:
is_expired
,
card_number
:
card_number
this
.
props
.
setCardNumber
(
setCardNumberProps
)
}).
catch
(
error
=>
{
// const { navigation } = this.props
// let response = error.response.data
// session(response, navigation)
let
response
=
error
.
response
.
data
// Alert.alert('',response.msg);
Toast
.
show
(
response
.
msg
)
})
let
setCardNumberProps
=
{
card_number
:
this
.
state
.
card_number
}
this
.
props
.
setCardNumber
(
setCardNumberProps
)
}).
catch
(
error
=>
{
// const { navigation } = this.props
// let response = error.response.data
// session(response, navigation)
let
response
=
error
.
response
.
data
// Alert.alert('',response.msg);
Toast
.
show
(
response
.
msg
)
})
}
catch
(
error
)
{
Alert
.
alert
(
'Error :'
+
error
)
}
}
TransferBalance
()
{
if
(
this
.
state
.
premium
===
false
)
{
Alert
.
alert
(
'Akun Belum Premium'
,
'Apakah anda ingin Upgrade Premium ?'
,
[{
text
:
'Cancel'
},
{
text
:
'OK'
,
onPress
:
()
=>
this
.
props
.
navigation
.
navigate
(
'Upgrade Premium'
)
}
]
)
}
else
{
this
.
props
.
navigation
.
navigate
(
'Transfer Balance'
);
try
{
if
(
this
.
state
.
premium
===
false
)
{
Alert
.
alert
(
'Akun Belum Premium'
,
'Apakah anda ingin Upgrade Premium ?'
,
[{
text
:
'Cancel'
},
{
text
:
'OK'
,
onPress
:
()
=>
this
.
props
.
navigation
.
navigate
(
'Upgrade Premium'
)
}
]
)
}
else
{
this
.
props
.
navigation
.
navigate
(
'Transfer Balance'
);
}
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
)
}
}
handleuseBalance
()
{
let
params
=
Object
.
assign
(
requestParams
,{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/point/check'
,
params
).
then
(
res
=>
{
if
(
res
.
data
.
in_process_redeem
==
false
)
{
this
.
props
.
navigation
.
navigate
(
'UseBalance'
)
}
else
{
this
.
props
.
navigation
.
navigate
(
'Redeem Code'
)
}
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
Alert
.
alert
(
error
,
response
.
msg
)
})
try
{
let
params
=
Object
.
assign
(
requestParams
,
{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/point/check'
,
params
).
then
(
res
=>
{
if
(
res
.
data
.
in_process_redeem
==
false
)
{
this
.
props
.
navigation
.
navigate
(
'UseBalance'
)
}
else
{
this
.
props
.
navigation
.
navigate
(
'Redeem Code'
)
}
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
Alert
.
alert
(
error
,
response
.
msg
)
})
}
catch
(
error
)
{
Alert
.
alert
(
'Error:'
+
error
)
}
}
render
()
{
const
navigation
=
this
.
props
.
navigation
return
(
<
View
style
=
{
styles
.
container
}
>
<
ScrollView
style
=
{{
paddingTop
:
StatusBar
.
currentHeight
}}
>
<
View
style
=
{{
flex
:
1
,
height
:
90
}}
>
<
View
style
=
{{
alignSelf
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Image
style
=
{{
height
:
70
,
width
:
70
,
justifyContent
:
'center'
,
top
:
20
}}
source
=
{
require
(
'../assets/images/people-actv.png'
)}
/
>
<
/TouchableOpacity
>
<
/View
>
<
View
style
=
{{
height
:
90
,
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'#CFB368'
,
fontSize
:
20
,
textAlign
:
'center'
}}
>
{
this
.
state
.
full_name
}
<
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
,
fontSize
:
12
,
textAlign
:
'center'
,
top
:
2
}}
>
{
i18n
.
t
(
'Viewprofil'
)}
<
/Text
>
<
/TouchableOpacity
>
try
{
const
navigation
=
this
.
props
.
navigation
return
(
<
View
style
=
{
styles
.
container
}
>
<
ScrollView
style
=
{{
paddingTop
:
StatusBar
.
currentHeight
}}
>
<
View
style
=
{{
flex
:
1
,
height
:
90
}}
>
<
View
style
=
{{
alignSelf
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Image
style
=
{{
height
:
70
,
width
:
70
,
justifyContent
:
'center'
,
top
:
20
}}
source
=
{
require
(
'../assets/images/people-actv.png'
)}
/
>
<
/TouchableOpacity
>
<
/View
>
<
View
style
=
{{
height
:
90
,
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'#CFB368'
,
fontSize
:
20
,
textAlign
:
'center'
}}
>
{
this
.
state
.
full_name
}
<
/Text
>
<
/TouchableOpacity
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Profile'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
,
fontSize
:
12
,
textAlign
:
'center'
,
top
:
2
}}
>
{
i18n
.
t
(
'Viewprofil'
)}
<
/Text
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
/View
>
{
this
.
props
.
set_card
===
false
?
(
<
View
style
=
{{
marginTop
:
65
}}
>
<
View
style
=
{{
flex
:
1
,
backgroundColor
:
'grey'
,
height
:
250
,
borderRadius
:
20
,
marginRight
:
10
,
marginLeft
:
10
,
justifyContent
:
'center'
}}
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Card Activation'
,
{
cardNumber
:
this
.
state
.
card_number
})}
>
<
View
style
=
{{
height
:
50
,
borderRadius
:
20
,
backgroundColor
:
'white'
,
marginRight
:
20
,
marginLeft
:
20
,
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'#CFB368'
,
fontSize
:
20
,
textAlign
:
'center'
,
margin
:
15
}}
>
{
i18n
.
t
(
'Acitvatecard'
)}
<
/Text
>
{
this
.
props
.
set_card
===
false
?
(
<
View
style
=
{{
marginTop
:
65
}}
>
<
View
style
=
{{
flex
:
1
,
backgroundColor
:
'grey'
,
height
:
250
,
borderRadius
:
20
,
marginRight
:
10
,
marginLeft
:
10
,
justifyContent
:
'center'
}}
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Card Activation'
,
{
cardNumber
:
this
.
state
.
card_number
})}
>
<
View
style
=
{{
height
:
50
,
borderRadius
:
20
,
backgroundColor
:
'white'
,
marginRight
:
20
,
marginLeft
:
20
,
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'#CFB368'
,
fontSize
:
20
,
textAlign
:
'center'
,
margin
:
15
}}
>
{
i18n
.
t
(
'Acitvatecard'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
height
:
250
}}
>
<
TouchableOpacity
style
=
{{
top
:
10
,
marginLeft
:
15
,
marginRight
:
15
,
justifyContent
:
'center'
}}
onPress
=
{()
=>
this
.
logout
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
20
,
backgroundColor
:
'#CFB368'
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'logout'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
height
:
250
}}
>
<
TouchableOpacity
style
=
{{
top
:
10
,
marginLeft
:
15
,
marginRight
:
15
,
justifyContent
:
'center'
}}
onPress
=
{()
=>
this
.
logout
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
20
,
backgroundColor
:
'#CFB368'
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'logout'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
View
style
=
{
styles
.
v_logo
}
>
<
View
style
=
{{
flex
:
1
,
alignSelf
:
'flex-start'
,
marginTop
:
20
}}
>
<
Image
resizeMode
=
"contain"
source
=
{
require
(
'../assets/images/daun.png'
)}
style
=
{
styles
.
logo
}
><
/Image
>
<
/View
>
<
View
style
=
{{
flex
:
1
}}
>
<
View
style
=
{
styles
.
v_logo
}
>
<
View
style
=
{{
flex
:
1
,
alignSelf
:
'flex-start'
,
marginTop
:
20
}}
>
<
Image
resizeMode
=
"contain"
source
=
{
require
(
'../assets/images/daun.png'
)}
style
=
{
styles
.
logo
}
><
/Image
>
<
/View
>
<
View
style
=
{{
flex
:
1
}}
>
<
/View
>
<
/View
>
<
/View
>
<
/View
>
<
/View
>
)
:
(
<
View
>
<
View
style
=
{
styles
.
Card
}
>
<
View
style
=
{
styles
.
card
}
>
)
:
(
<
View
>
<
View
style
=
{
styles
.
Card
}
>
<
View
style
=
{
styles
.
card
}
>
{
this
.
state
.
indicator
?
(
<
Card
style
=
{{
padding
:
50
,
alignContent
:
'center'
}}
>
<
ActivityIndicator
style
=
{{
justifyContent
:
"center"
}}
size
=
"large"
color
=
"#c9af6d"
/>
<
/Card
>
)
:
(
<>
<
Card
style
=
{{
padding
:
20
,
alignContent
:
'center'
}}
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
,
paddingBottom
:
5
}}
>
<
View
style
=
{{
flex
:
0.5
}}
>
<
Text
style
=
{{
fontSize
:
10
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'cardnumber'
)}
<
/Text
>
<
/View
>
<
View
style
=
{{
flex
:
0.5
}}
>
{
this
.
state
.
is_expired
?
(
<
Text
style
=
{{
fontSize
:
10
,
textAlign
:
'right'
,
fontFamily
:
'Gotham-Light'
,
color
:
'#d34343'
}}
>
Expired
{
this
.
state
.
expire_date
}
<
/Text
>
)
:
(
<
Text
style
=
{{
fontSize
:
10
,
textAlign
:
'right'
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'expired'
)}
{
this
.
state
.
expire_date
}
<
/Text
>
)
}
<
/View
>
<
/View
>
<
View
style
=
{{
paddingHorizontal
:
10
}}
>
<
Text
style
=
{{
textAlign
:
"center"
,
fontSize
:
30
,
color
:
'#c9af6d'
,
fontFamily
:
'Gotham-Black'
}}
>
{
this
.
state
.
account_number
}
<
/Text
>
<
/View
>
<
View
style
=
{
styles
.
line
}
><
/View
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
}}
>
<
View
style
=
{{
flex
:
0.3
,
justifyContent
:
'center'
}}
>
{
/* <Text>{i18n.t('balance')}</Text> */
}
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'balance'
)}
<
/Text
>
<
View
style
=
{
styles
.
card
}
>
{
this
.
state
.
indicator
?
(
<
Card
style
=
{{
padding
:
50
,
alignContent
:
'center'
}}
>
<
ActivityIndicator
style
=
{{
justifyContent
:
"center"
}}
size
=
"large"
color
=
"#c9af6d"
/>
<
/Card
>
)
:
(
<>
<
Card
style
=
{{
padding
:
20
,
alignContent
:
'center'
}}
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
,
paddingBottom
:
5
}}
>
<
View
style
=
{{
flex
:
0.5
}}
>
<
Text
style
=
{{
fontSize
:
10
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'cardnumber'
)}
<
/Text
>
<
/View
>
<
View
style
=
{{
flex
:
0.5
}}
>
{
this
.
state
.
is_expired
?
(
<
Text
style
=
{{
fontSize
:
10
,
textAlign
:
'right'
,
fontFamily
:
'Gotham-Light'
,
color
:
'#d34343'
}}
>
Expired
{
this
.
state
.
expire_date
}
<
/Text
>
)
:
(
<
Text
style
=
{{
fontSize
:
10
,
textAlign
:
'right'
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'expired'
)}
{
this
.
state
.
expire_date
}
<
/Text
>
)
}
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
0.7
,
alignItems
:
'center'
}}
>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Black'
,
color
:
'gray'
}}
>
IDR
{
this
.
state
.
balance
}
<
/Text
>
<
View
style
=
{{
paddingHorizontal
:
10
}}
>
<
Text
style
=
{{
textAlign
:
"center"
,
fontSize
:
30
,
color
:
'#c9af6d'
,
fontFamily
:
'Gotham-Black'
}}
>
{
this
.
state
.
account_number
}
<
/Text
>
<
/View
>
<
/View
>
<
View
style
=
{
styles
.
line2
}
><
/View
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
}}
>
<
View
style
=
{{
flex
:
0.3
,
justifyContent
:
'center'
}}
>
{
/* <Text>{i18n.t('balance')}</Text> */
}
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'point'
)}
<
/Text
>
<
View
style
=
{
styles
.
line
}
><
/View
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
}}
>
<
View
style
=
{{
flex
:
0.3
,
justifyContent
:
'center'
}}
>
{
/* <Text>{i18n.t('balance')}</Text> */
}
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'balance'
)}
<
/Text
>
<
/View
>
<
View
style
=
{{
flex
:
0.7
,
alignItems
:
'center'
}}
>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Black'
,
color
:
'gray'
}}
>
IDR
{
this
.
state
.
balance
}
<
/Text
>
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
0.7
,
alignItems
:
'center'
}}
>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Black'
,
color
:
'gray'
}}
>
IDR
{
this
.
state
.
points
}
<
/Text
>
<
View
style
=
{
styles
.
line2
}
><
/View
>
<
View
style
=
{{
flexDirection
:
'row'
,
flex
:
1
}}
>
<
View
style
=
{{
flex
:
0.3
,
justifyContent
:
'center'
}}
>
{
/* <Text>{i18n.t('balance')}</Text> */
}
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
}}
>
{
i18n
.
t
(
'point'
)}
<
/Text
>
<
/View
>
<
View
style
=
{{
flex
:
0.7
,
alignItems
:
'center'
}}
>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Black'
,
color
:
'gray'
}}
>
IDR
{
this
.
state
.
points
}
<
/Text
>
<
/View
>
<
/View
>
<
/View
>
{
this
.
state
.
is_expired
?
(
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Renewal'
)}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
marginRight
:
20
,
marginLeft
:
20
,
marginTop
:
20
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
,
margin
:
15
}}
>
RENEWAL
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
)
:
null
}
<
/Card
>
{
this
.
state
.
old_balance_claimed
==
false
?
(
<
Card
style
=
{{
padding
:
10
,
margin
:
10
,
alignContent
:
'center'
}}
>
<
View
style
=
{{
flex
:
1
,
height
:
80
,
borderRadius
:
20
,
marginRight
:
10
,
marginLeft
:
10
,
justifyContent
:
'center'
}}
>
{
/* <Text style={{ fontSize: 14, fontFamily: 'Gotham-Light', textAlign: 'center', marginBottom: 10 }}>CREDIT : {this.state.old_balance} </Text> */
}
<
NumberFormat
decimalScale
=
{
0
}
value
=
{
this
.
state
.
old_balance
}
renderText
=
{
value
=>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
,
textAlign
:
'center'
,
marginBottom
:
10
,
color
:
'#838383'
}}
>
CREDIT
:
Rp
.
{
value
}
<
/Text>} displayType={'text'} thousandSeparator={true} prefix={''} /
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
onClickClaimCredit
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
marginRight
:
20
,
marginLeft
:
20
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
,
margin
:
15
}}
>
CLAIM
CREDIT
<
/Text
>
{
this
.
state
.
is_expired
?
(
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Renewal'
)}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
marginRight
:
20
,
marginLeft
:
20
,
marginTop
:
20
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
,
margin
:
15
}}
>
RENEWAL
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
)
:
null
}
<
/Card
>
{
this
.
state
.
old_balance_claimed
==
false
?
(
<
Card
style
=
{{
padding
:
10
,
margin
:
10
,
alignContent
:
'center'
}}
>
<
View
style
=
{{
flex
:
1
,
height
:
80
,
borderRadius
:
20
,
marginRight
:
10
,
marginLeft
:
10
,
justifyContent
:
'center'
}}
>
{
/* <Text style={{ fontSize: 14, fontFamily: 'Gotham-Light', textAlign: 'center', marginBottom: 10 }}>CREDIT : {this.state.old_balance} </Text> */
}
<
NumberFormat
decimalScale
=
{
0
}
value
=
{
this
.
state
.
old_balance
}
renderText
=
{
value
=>
<
Text
style
=
{{
fontSize
:
14
,
fontFamily
:
'Gotham-Light'
,
textAlign
:
'center'
,
marginBottom
:
10
,
color
:
'#838383'
}}
>
CREDIT
:
Rp
.
{
value
}
<
/Text>} displayType={'text'} thousandSeparator={true} prefix={''} /
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
onClickClaimCredit
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
marginRight
:
20
,
marginLeft
:
20
,
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
,
margin
:
15
}}
>
CLAIM
CREDIT
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
/View
>
<
/Card>
)
:
(
null
)
}
<
/
>
)
}
<
/View
>
<
/View
>
<
/View
>
<
TouchableOpacity
style
=
{
styles
.
submitTopUp
}
activeOpacity
=
{.
5
}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'TopUpInfo'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'topup'
)}
<
/Text
>
<
/TouchableOpacity
>
<
View
style
=
{{
padding
:
10
,
height
:
200
,
top
:
10
,
margin
:
10
}}
>
<
ImageBackground
style
=
{{
width
:
'100%'
,
height
:
'100%'
,
padding
:
0
,
margin
:
0
}}
resizeMode
=
'stretch'
source
=
{
this
.
state
.
img_card
?
{
uri
:
this
.
state
.
img_card
}
:
null
}
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
margin
:
15
,
fontSize
:
14
,
color
:
'#c9af6d'
,
top
:
120
}}
>
{
this
.
state
.
account_number
}
<
/Text
>
<
/Card>
)
:
(
null
)
}
<
/
>
)
}
<
/View
>
<
/View
>
<
/ImageBackground
>
<
/View
>
<
View
style
=
{{
marginLeft
:
20
,
marginRight
:
20
,
padding
:
5
}}
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'center'
,
margin
:
5
}}
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
3
}}
onPress
=
{()
=>
this
.
TransferBalance
()}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/4.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Transferbalance'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
View
style
=
{{
width
:
5
}}
><
/View
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
3
}}
onPress
=
{()
=>
this
.
handleuseBalance
()}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/2.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Usebalancepoint'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
marginBottom
:
10
,
justifyContent
:
'center'
}}
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
4
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Transaction History'
)}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/1.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
flexDirection
:
'row'
,
textAlign
:
'center'
,
flexWrap
:
'wrap'
,
margin
:
5
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Transactionhistory'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
View
style
=
{{
width
:
5
}}
><
/View
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
4
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Renewal'
)}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/3.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
margin
:
5
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Renewal'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
TouchableOpacity
style
=
{
styles
.
submitTopUp
}
activeOpacity
=
{.
5
}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'TopUpInfo'
)}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'topup'
)}
<
/Text
>
<
/TouchableOpacity
>
<
View
style
=
{{
padding
:
10
,
height
:
200
,
top
:
10
,
margin
:
10
}}
>
<
ImageBackground
style
=
{{
width
:
'100%'
,
height
:
'100%'
,
padding
:
0
,
margin
:
0
}}
resizeMode
=
'stretch'
source
=
{
this
.
state
.
img_card
?
{
uri
:
this
.
state
.
img_card
}
:
null
}
>
<
View
style
=
{{
justifyContent
:
'center'
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
margin
:
15
,
fontSize
:
14
,
color
:
'#c9af6d'
,
top
:
120
}}
>
{
this
.
state
.
account_number
}
<
/Text
>
<
/View
>
<
/ImageBackground
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'center'
}}
>
{
this
.
state
.
premium
===
false
?
(
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Upgrade Premium'
)}
style
=
{{
marginBottom
:
20
,
marginRight
:
5
,
marginLeft
:
5
}}
>
<
Card
style
=
{{
width
:
200
,
paddingHorizontal
:
10
,
paddingTop
:
20
,
paddingBottom
:
20
}}
>
<
View
style
=
{{
flex
:
1
,
alignItems
:
'center'
}}
>
<
MaterialIcons
name
=
"autorenew"
size
=
{
30
}
color
=
"gray"
style
=
{{
marginBottom
:
10
}}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'upgradePremium'
)}
<
/Text
>
<
View
style
=
{{
marginLeft
:
20
,
marginRight
:
20
,
padding
:
5
}}
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'center'
,
margin
:
5
}}
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
3
}}
onPress
=
{()
=>
this
.
TransferBalance
()}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/4.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Transferbalance'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
View
style
=
{{
width
:
5
}}
><
/View
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
3
}}
onPress
=
{()
=>
this
.
handleuseBalance
()}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/2.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Usebalancepoint'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
)
:
(
null
)}
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
1
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
logout
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
justifyContent
:
'center'
,
marginLeft
:
20
,
marginRight
:
20
,
marginBottom
:
20
,
padding
:
5
,
bottom
:
5
,
top
:
1
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'logout'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
marginBottom
:
10
,
justifyContent
:
'center'
}}
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
4
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Transaction History'
)}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/1.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
flexDirection
:
'row'
,
textAlign
:
'center'
,
flexWrap
:
'wrap'
,
margin
:
5
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Transactionhistory'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
View
style
=
{{
width
:
5
}}
><
/View
>
<
TouchableOpacity
style
=
{{
marginBottom
:
5
,
margin
:
4
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Renewal'
)}
>
<
Card
style
=
{{
height
:
120
,
width
:
155
}}
>
<
View
style
=
{{
height
:
50
,
alignItems
:
'center'
,
padding
:
10
,
flex
:
1
}}
>
<
Image
style
=
{{
height
:
50
,
width
:
50
,
justifyContent
:
'center'
}}
source
=
{
require
(
'../assets/icon/3.png'
)}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
top
:
5
,
fontSize
:
14
,
margin
:
5
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'Renewal'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'center'
}}
>
{
this
.
state
.
premium
===
false
?
(
<
TouchableOpacity
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Upgrade Premium'
)}
style
=
{{
marginBottom
:
20
,
marginRight
:
5
,
marginLeft
:
5
}}
>
<
Card
style
=
{{
width
:
200
,
paddingHorizontal
:
10
,
paddingTop
:
20
,
paddingBottom
:
20
}}
>
<
View
style
=
{{
flex
:
1
,
alignItems
:
'center'
}}
>
<
MaterialIcons
name
=
"autorenew"
size
=
{
30
}
color
=
"gray"
style
=
{{
marginBottom
:
10
}}
/
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
textAlign
:
'center'
,
fontSize
:
14
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'upgradePremium'
)}
<
/Text
>
<
/View
>
<
/Card
>
<
/TouchableOpacity
>
)
:
(
null
)}
<
/View
>
<
/View
>
<
View
style
=
{{
flex
:
1
}}
>
<
TouchableOpacity
onPress
=
{()
=>
this
.
logout
()}
>
<
View
style
=
{{
height
:
40
,
borderRadius
:
10
,
backgroundColor
:
'#CFB368'
,
justifyContent
:
'center'
,
marginLeft
:
20
,
marginRight
:
20
,
marginBottom
:
20
,
padding
:
5
,
bottom
:
5
,
top
:
1
}}
>
<
Text
style
=
{{
fontFamily
:
'Gotham-Black'
,
color
:
'white'
,
fontSize
:
16
,
textAlign
:
'center'
}}
>
{
i18n
.
t
(
'logout'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
<
/View
>
<
/View
>
<
/View
>
)
}
<
View
style
=
{{
flex
:
1
,
marginBottom
:
20
,
marginTop
:
25
}}
>
<
Text
style
=
{{
color
:
'grey'
,
fontSize
:
12
,
textAlign
:
'center'
}}
>
Version
{
Constants
.
manifest
.
version
}
Build
{
Constants
.
manifest
.
extra
.
buildNumber
}
<
/Text
>
<
Text
style
=
{{
color
:
'grey'
,
fontSize
:
12
,
textAlign
:
'center'
}}
>
{
Constants
.
manifest
.
extra
.
remarks
}
<
/Text
>
<
/View
>
<
/ScrollView
>
<
/View
>
)
)
}
<
View
style
=
{{
flex
:
1
,
marginBottom
:
20
,
marginTop
:
25
}}
>
<
Text
style
=
{{
color
:
'grey'
,
fontSize
:
12
,
textAlign
:
'center'
}}
>
Version
{
Constants
.
manifest
.
version
}
Build
{
Constants
.
manifest
.
extra
.
buildNumber
}
<
/Text
>
<
Text
style
=
{{
color
:
'grey'
,
fontSize
:
12
,
textAlign
:
'center'
}}
>
{
Constants
.
manifest
.
extra
.
remarks
}
<
/Text
>
<
/View
>
<
/ScrollView
>
<
/View
>
)
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
)
}
}
}
...
...
@@ -627,9 +687,9 @@ const mapDispatchToProps = (dispacth) => {
type
:
ActionType
.
SET_ACCOUNT_NUMBER
,
data
:
{
card_number
:
setCardNumberProps
.
card_number
,
card_number
:
setCardNumberProps
.
card_number
,
}
}),
}),
}
}
export
default
connect
(
mapStateToProps
,
mapDispatchToProps
)(
Account
);
...
...
view/NewsDetail.js
View file @
c4940e3f
import
React
from
'react'
;
import
{
View
,
Text
,
StyleSheet
,
Dimensions
}
from
'react-native'
;
import
{
View
,
Text
,
StyleSheet
,
Dimensions
,
Alert
}
from
'react-native'
;
import
{
Image
}
from
'react-native-elements'
;
import
Axios
from
'axios'
;
import
{
TouchableOpacity
,
ScrollView
}
from
'react-native-gesture-handler'
;
...
...
@@ -20,53 +20,68 @@ export default class NewsDetail extends React.Component {
}
componentDidMount
()
{
const
screenWidth
=
Math
.
round
(
Dimensions
.
get
(
'window'
).
width
);
const
statusBarHeight
=
getStatusBarHeight
();
this
.
setState
({
image_height
:
screenWidth
,
statusbar_height
:
statusBarHeight
})
this
.
get_news_detail
(
this
.
props
.
route
.
params
.
slug
)
try
{
const
screenWidth
=
Math
.
round
(
Dimensions
.
get
(
'window'
).
width
);
const
statusBarHeight
=
getStatusBarHeight
();
this
.
setState
({
image_height
:
screenWidth
,
statusbar_height
:
statusBarHeight
})
this
.
get_news_detail
(
this
.
props
.
route
.
params
.
slug
)
}
catch
(
error
)
{
Alert
.
alert
(
'Error'
,
+
error
)
}
}
get_news_detail
(
slug
)
{
Axios
.
get
(
'https://excelsocrm.ravintoladev.com/cms/v2/detail/'
+
slug
).
then
(
res
=>
{
const
detail
=
res
.
data
;
this
.
setState
({
title
:
detail
.
title
,
subtitle
:
detail
.
subtitle
,
image
:
detail
.
content_image
,
content
:
detail
.
content
,
})
})
try
{
Axios
.
get
(
'https://excelsocrm.ravintoladev.com/cms/v2/detail/'
+
slug
).
then
(
res
=>
{
const
detail
=
res
.
data
;
this
.
setState
({
title
:
detail
.
title
,
subtitle
:
detail
.
subtitle
,
image
:
detail
.
content_image
,
content
:
detail
.
content
,
})
})
}
catch
(
error
)
{
Alert
.
alert
(
'Error:'
+
error
)
}
}
render
()
{
// console.log(this.state.content)
return
(
<
View
style
=
{
styles
.
container
}
>
<
MyStatusBar
/>
<
ScrollView
style
=
{
styles
.
body
}
>
<
View
style
=
{
styles
.
image_container
(
this
.
state
.
image_height
)}
>
<
Image
style
=
{
styles
.
image
(
this
.
state
.
image_height
)}
source
=
{
this
.
state
.
image
?
{
uri
:
this
.
state
.
image
}
:
null
}
/
>
<
/View
>
<
View
style
=
{
styles
.
content
}
>
<
Text
style
=
{
styles
.
title
}
>
{
this
.
state
.
title
}
<
/Text
>
<
View
style
=
{{
backgroundColor
:
'#adadad'
,
height
:
1.5
,
flex
:
1
,
marginBottom
:
5
}}
/
>
<
HTML
html
=
{
this
.
state
.
content
}
tagsStyles
=
{{
p
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
},
blockquote
:
{
backgroundColor
:
"#f1f1f1"
,
padding
:
12
,
paddingBottom
:
0
,
marginTop
:
0
},
li
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
,
marginBottom
:
0
},
ul
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
,
marginVertical
:
5
,
marginBottom
:
-
10
},
}}
ignoredTags
=
{[
'br'
]}
ignoredStyles
=
{[
'font-family'
,
' '
,
'&'
]}
/
>
<
/View
>
<
/ScrollView
>
<
/View
>
)
try
{
return
(
<
View
style
=
{
styles
.
container
}
>
<
MyStatusBar
/>
<
ScrollView
style
=
{
styles
.
body
}
>
<
View
style
=
{
styles
.
image_container
(
this
.
state
.
image_height
)}
>
<
Image
style
=
{
styles
.
image
(
this
.
state
.
image_height
)}
source
=
{
this
.
state
.
image
?
{
uri
:
this
.
state
.
image
}
:
null
}
/
>
<
/View
>
<
View
style
=
{
styles
.
content
}
>
<
Text
style
=
{
styles
.
title
}
>
{
this
.
state
.
title
}
<
/Text
>
<
View
style
=
{{
backgroundColor
:
'#adadad'
,
height
:
1.5
,
flex
:
1
,
marginBottom
:
5
}}
/
>
<
HTML
html
=
{
this
.
state
.
content
}
tagsStyles
=
{{
p
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
},
blockquote
:
{
backgroundColor
:
"#f1f1f1"
,
padding
:
12
,
paddingBottom
:
0
,
marginTop
:
0
},
li
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
,
marginBottom
:
0
},
ul
:
{
fontSize
:
12
,
color
:
'#838383'
,
fontFamily
:
'Gotham-Light'
,
marginVertical
:
5
,
marginBottom
:
-
10
},
}}
ignoredTags
=
{[
'br'
]}
ignoredStyles
=
{[
'font-family'
,
' '
,
'&'
]}
/
>
<
/View
>
<
/ScrollView
>
<
/View
>
)
}
catch
(
error
)
{
Alert
.
alert
(
'Error'
+
error
)
}
}
}
...
...
view/RewardsList.js
View file @
c4940e3f
...
...
@@ -18,91 +18,111 @@ class RewardsList extends React.Component {
componentDidMount
()
{
// console.log("INI YA REWARD URL :"+this.props.BASE_URL)
this
.
getRewardsList
()
this
.
_unsubscribe
=
this
.
props
.
navigation
.
addListener
(
'focus'
,
()
=>
{
this
.
setState
({
indicator
:
true
})
this
.
getRewardsList
()
});
try
{
this
.
getRewardsList
()
this
.
_unsubscribe
=
this
.
props
.
navigation
.
addListener
(
'focus'
,
()
=>
{
this
.
setState
({
indicator
:
true
})
this
.
getRewardsList
()
});
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
,
+
error
)
}
}
componentWillUnmount
()
{
try
{
this
.
_unsubscribe
()
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
);
}
}
getRewardsList
()
{
let
params
=
Object
.
assign
(
requestParams
,{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/reward/get_list'
,
params
).
then
(
res
=>
{
let
data
=
res
.
data
.
rewards
// console.log(data)
data
.
map
((
item
,
key
)
=>
{
// console.log(item.expire_time)
item
.
expire_time
=
moment
(
item
.
expire_time
).
format
(
"DD MMMM YYYY"
)
})
// console.log(data)
this
.
setState
({
rewardsList
:
data
,
indicator
:
false
try
{
let
params
=
Object
.
assign
(
requestParams
,{
session_id
:
this
.
props
.
session_id
,
})
Axios
.
post
(
this
.
props
.
BASE_URL
+
'crm/v2/reward/get_list'
,
params
).
then
(
res
=>
{
let
data
=
res
.
data
.
rewards
// console.log(data)
data
.
map
((
item
,
key
)
=>
{
// console.log(item.expire_time)
item
.
expire_time
=
moment
(
item
.
expire_time
).
format
(
"DD MMMM YYYY"
)
})
// console.log(data)
this
.
setState
({
rewardsList
:
data
,
indicator
:
false
})
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
;
Alert
.
alert
(
response
.
status
,
response
.
msg
);
})
}).
catch
(
error
=>
{
let
response
=
error
.
response
.
data
;
Alert
.
alert
(
response
.
status
,
response
.
msg
);
})
}
catch
(
error
)
{
Alert
.
alert
(
'Error : '
+
error
);
}
}
render
()
{
return
(
<
View
style
=
{
styles
.
container
}
>
<
StatusBar
backgroundColor
=
'#CFB368'
/>
<
View
style
=
{
styles
.
header
}
>
<
Text
style
=
{{
color
:
'white'
,
textAlign
:
'center'
,
fontSize
:
20
,
fontFamily
:
'Gotham-Black'
}}
>
{
i18n
.
t
(
'titlerewardhistory'
)}
<
/Text
>
<
/View
>
<
ScrollView
style
=
{
styles
.
body
}
>
{
this
.
state
.
indicator
?
(
<
ActivityIndicator
style
=
{{
top
:
20
,
justifyContent
:
"center"
}}
size
=
"large"
color
=
"#c9af6d"
/>
)
:
(
this
.
state
.
rewardsList
.
length
?
(
this
.
state
.
rewardsList
.
map
((
item
,
key
)
=>
(
<
TouchableOpacity
key
=
{
key
}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Reward Detail'
,
{
rewardId
:
item
.
id
})}
>
<
View
style
=
{{
alignItems
:
'center'
}}
>
<
Card
style
=
{{
padding
:
5
,
margin
:
5
}}
>
<
View
>
<
Image
source
=
{{
uri
:
item
.
reward
.
title_image
}}
resizeMethod
=
"resize"
resizeMode
=
'cover'
style
=
{{
height
:
100
,
width
:
'100%'
}}
/
>
<
/View
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'space-between'
,
padding
:
10
}}
>
<
View
style
=
{{
flex
:
0.6
}}
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Black'
,
color
:
'#838383'
}}
>
{
item
.
reward
.
title
}
<
/Text
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
item
.
reward
.
subtitle
}
<
/Text
>
try
{
return
(
<
View
style
=
{
styles
.
container
}
>
<
StatusBar
backgroundColor
=
'#CFB368'
/>
<
View
style
=
{
styles
.
header
}
>
<
Text
style
=
{{
color
:
'white'
,
textAlign
:
'center'
,
fontSize
:
20
,
fontFamily
:
'Gotham-Black'
}}
>
{
i18n
.
t
(
'titlerewardhistory'
)}
<
/Text
>
<
/View
>
<
ScrollView
style
=
{
styles
.
body
}
>
{
this
.
state
.
indicator
?
(
<
ActivityIndicator
style
=
{{
top
:
20
,
justifyContent
:
"center"
}}
size
=
"large"
color
=
"#c9af6d"
/>
)
:
(
this
.
state
.
rewardsList
.
length
?
(
this
.
state
.
rewardsList
.
map
((
item
,
key
)
=>
(
<
TouchableOpacity
key
=
{
key
}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Reward Detail'
,
{
rewardId
:
item
.
id
})}
>
<
View
style
=
{{
alignItems
:
'center'
}}
>
<
Card
style
=
{{
padding
:
5
,
margin
:
5
}}
>
<
View
>
<
Image
source
=
{{
uri
:
item
.
reward
.
title_image
}}
resizeMethod
=
"resize"
resizeMode
=
'cover'
style
=
{{
height
:
100
,
width
:
'100%'
}}
/
>
<
/View
>
<
View
style
=
{{
flex
:
0.4
}}
>
<
Text
style
=
{{
textAlign
:
'right'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'expired'
)}
<
/Text
>
<
Text
style
=
{{
textAlign
:
'right'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
item
.
expire_time
}
<
/Text
>
<
View
style
=
{{
flex
:
1
,
flexDirection
:
'row'
,
justifyContent
:
'space-between'
,
padding
:
10
}}
>
<
View
style
=
{{
flex
:
0.6
}}
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Black'
,
color
:
'#838383'
}}
>
{
item
.
reward
.
title
}
<
/Text
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
item
.
reward
.
subtitle
}
<
/Text
>
<
/View
>
<
View
style
=
{{
flex
:
0.4
}}
>
<
Text
style
=
{{
textAlign
:
'right'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
i18n
.
t
(
'expired'
)}
<
/Text
>
<
Text
style
=
{{
textAlign
:
'right'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'#838383'
}}
>
{
item
.
expire_time
}
<
/Text
>
<
/View
>
<
/View
>
<
/View
>
<
/Card
>
<
/Card
>
<
/View
>
<
/TouchableOpacity
>
))
)
:
(
<
View
style
=
{{
justifyContent
:
'center'
,
alignItems
:
'center'
,
height
:
100
}}
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'grey'
}}
>
{
i18n
.
t
(
'emptyvoucherlist'
)}
<
/Text
>
<
/View
>
<
/TouchableOpacity
>
))
)
:
(
<
View
style
=
{{
justifyContent
:
'center'
,
alignItems
:
'center'
,
height
:
100
}}
>
<
Text
style
=
{{
textAlign
:
'left'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Light'
,
color
:
'grey'
}}
>
{
i18n
.
t
(
'emptyvoucherlist'
)}
<
/Text
>
<
/View
>
))
}
<
TouchableOpacity
style
=
{{
marginVertical
:
20
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Reward History'
)}
>
<
Text
style
=
{{
textAlign
:
'center'
,
color
:
'#CFB368'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Black'
}}
>
{
i18n
.
t
(
'rewardhistory'
)}
<
/Text
>
<
/TouchableOpacity
>
<
View
style
=
{{
height
:
15
}}
/
>
<
/ScrollView
>
<
/View
>
)
))
}
<
TouchableOpacity
style
=
{{
marginVertical
:
20
}}
onPress
=
{()
=>
this
.
props
.
navigation
.
navigate
(
'Reward History'
)}
>
<
Text
style
=
{{
textAlign
:
'center'
,
color
:
'#CFB368'
,
fontSize
:
12
,
fontFamily
:
'Gotham-Black'
}}
>
{
i18n
.
t
(
'rewardhistory'
)}
<
/Text
>
<
/TouchableOpacity
>
<
View
style
=
{{
height
:
15
}}
/
>
<
/ScrollView
>
<
/View
>
)
}
catch
(
error
)
{
Alert
.
alert
(
'ERROR :'
+
error
)
}
}
}
...
...
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