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
ff6fbf64
Commit
ff6fbf64
authored
May 19, 2021
by
Nguyễn Thị Thúy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
integrate convert unit api
parent
ff0a6cfa
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
227 additions
and
155 deletions
+227
-155
RootView.js
src/RootView.js
+12
-2
CaculatedStopLoss.js
src/Screens/Tool/CaculatedStopLoss.js
+1
-1
CalculatorProfitLoss.js
...Screens/Tool/CalculatorProfitLoss/CalculatorProfitLoss.js
+1
-1
CalculatorProfitLossView.js
...ens/Tool/CalculatorProfitLoss/CalculatorProfitLossView.js
+1
-1
ConvertUnit.js
src/Screens/Tool/ConvertUnit.js
+202
-148
ExchangeRate.js
src/Screens/Tool/ExchangeRate.js
+1
-1
Transaction.js
src/apis/Functions/Transaction.js
+5
-0
url.js
src/apis/url.js
+2
-0
TabNavigation.js
src/routers/TabNavigation.js
+2
-1
No files found.
src/RootView.js
View file @
ff6fbf64
...
...
@@ -14,6 +14,11 @@ import DeviceInfo from 'react-native-device-info';
import
R
from
'./assets/R'
;
import
{
WIDTHXD
,
HEIGHTXD
}
from
'./Config/Functions'
;
import
DropdownManager
from
'./components/DropdownAlert/DropdownManager'
;
import
AsyncStorage
from
'@react-native-community/async-storage'
;
import
KEY
from
'./assets/AsynStorage'
;
import
I18n
,
{
setLocation
}
from
'./helper/i18/i18n'
;
import
{
changeLanguage
}
from
'./actions/language'
;
enableScreens
();
...
...
@@ -23,11 +28,16 @@ const RootView = (props) => {
dropDownAlertRef
.
current
,
dropDownAlertLongTimeRef
.
current
,
);
setInitLanguage
()
},
[]);
const
dropDownAlertRef
=
useRef
(
null
);
const
dropDownAlertLongTimeRef
=
useRef
(
null
);
const
setInitLanguage
=
async
()
=>
{
const
laguage
=
await
AsyncStorage
.
getItem
(
KEY
.
LANGUAGE
);
if
(
laguage
)
props
.
changeLanguage
(
laguage
);
setLocation
(
I18n
,
laguage
);
};
return
(
<>
<
View
style
=
{{
flex
:
1
}}
>
...
...
@@ -85,4 +95,4 @@ const mapStateToProps = (state) => {
};
};
export
default
connect
(
mapStateToProps
,
{})(
RootView
);
export
default
connect
(
mapStateToProps
,
{
changeLanguage
})(
RootView
);
src/Screens/Tool/CaculatedStopLoss.js
View file @
ff6fbf64
...
...
@@ -79,7 +79,7 @@ const CaculatedStopLoss = (props) => {
if
(
res
.
status
==
200
&&
res
.
data
.
code
==
200
)
{
setDataProduct
(
res
.
data
.
data
);
}
else
{
showAlert
(
TYPE
.
ERROR
,
I18n
.
t
(
'Notification'
,
I18n
.
t
(
'Can_not_get_data'
)
));
showAlert
(
TYPE
.
ERROR
,
I18n
.
t
(
'Notification'
),
I18n
.
t
(
'Can_not_get_data'
));
}
};
...
...
src/Screens/Tool/CalculatorProfitLoss/CalculatorProfitLoss.js
View file @
ff6fbf64
...
...
@@ -67,7 +67,7 @@ const CalculatorProfitLoss = (props) => {
});
props
.
hideLoading
();
if
(
res
.
status
==
200
&&
res
.
data
.
code
==
200
)
{
const
newList
=
[
res
.
data
.
data
].
concat
(
dataCalculator
);
const
newList
=
[
res
.
data
.
data
].
concat
(
[...
dataCalculator
]
);
setDataCalculator
(
newList
);
setLotTransactionNumber
(
null
);
setOpenPrice
(
null
);
...
...
src/Screens/Tool/CalculatorProfitLoss/CalculatorProfitLossView.js
View file @
ff6fbf64
...
...
@@ -112,7 +112,7 @@ const CalculatorProfitLossView = (props) => {
<
/View
>
<
FlatList
style
=
{{
paddingBottom
:
HEIGHTXD
(
15
),
backgroundColor
:
R
.
colors
.
white
}}
keyExtractor
=
{(
item
)
=>
item
.
id
}
keyExtractor
=
{(
item
)
=>
item
}
data
=
{
props
.
dataCalculator
}
renderItem
=
{({
item
,
index
})
=>
(
<
ItemCalculator
...
...
src/Screens/Tool/ConvertUnit.js
View file @
ff6fbf64
import
React
,
{
Component
,
useState
}
from
'react'
;
import
{
View
,
Text
,
StyleSheet
,
TextInput
,
TouchableOpacity
,
}
from
'react-native'
;
import
React
,
{
useEffect
,
useState
}
from
'react'
;
import
{
Platform
,
StyleSheet
,
Text
,
TextInput
,
View
}
from
'react-native'
;
import
HeaderBack
from
'../../components/Header/HeaderBack'
;
import
PickerItem
from
'../../components/Picker/PickerItem'
;
import
I18n
from
'../../helper/i18/i18n'
;
import
AppText
from
'../../components/AppText'
;
import
TextField
from
'../../components/Input/TextField'
;
import
{
getFontXD
,
HEIGHTXD
,
WIDTHXD
}
from
'../../Config/Functions'
;
import
{
getFontXD
,
HEIGHTXD
,
toPriceVnd
,
WIDTHXD
}
from
'../../Config/Functions'
;
import
R
from
'../../assets/R'
;
import
Icon
from
'react-native-vector-icons/FontAwesome'
;
const
dataType
=
[
{
value
:
'0'
,
name
:
'KG'
,
},
{
value
:
'1'
,
name
:
'Pound'
,
},
];
import
{
getUnitList
}
from
'../../apis/Functions/Transaction'
;
import
{
showAlert
,
TYPE
}
from
'../../components/DropdownAlert'
;
import
{
hideLoading
,
showLoading
}
from
'../../actions/loadingAction'
;
import
{
connect
}
from
'react-redux'
;
const
ConvertUnit
=
(
props
)
=>
{
const
[
typeOne
,
setTypeOne
]
=
useState
();
const
[
typeTwo
,
setTypeTwo
]
=
useState
();
const
[
valueOne
,
setValueOne
]
=
useState
();
const
[
valueTwo
,
setValueTwo
]
=
useState
();
const
[
result
,
setResult
]
=
useState
();
const
onClick
=
()
=>
{
console
.
log
(
'Heloo'
,
typeOne
,
typeTwo
,
valueOne
,
valueTwo
);
};
return
(
<
View
style
=
{{
flex
:
1
}}
>
<
HeaderBack
title
=
{
'ConvertUnit'
}
/
>
<
View
style
=
{{
flex
:
1
,
paddingTop
:
20
,
paddingHorizontal
:
20
}}
>
<
AppText
style
=
{
styles
.
txtTitle
}
i18nKey
=
{
'Count'
}
/
>
<
View
style
=
{
styles
.
Item
}
>
<
View
style
=
{
styles
.
wrap
}
>
<
TextInput
onChangeText
=
{(
val
)
=>
setValueOne
(
val
)}
keyboardType
=
{
'number-pad'
}
style
=
{
styles
.
wrapInput
}
maxLength
=
{
12
}
/
>
<
/View
>
<
/View
>
const
[
fromUnitList
,
setFromUnitList
]
=
useState
([]);
const
[
toUnitList
,
setToUnitList
]
=
useState
([]);
const
[
toUnit
,
setToUnit
]
=
useState
();
const
[
fromUnit
,
setFromUnit
]
=
useState
();
const
[
number
,
setNumber
]
=
useState
(
null
);
const
[
rateItem
,
setRateItem
]
=
useState
({
value_one
:
0.025000000373
,
value_two
:
0
,
name
:
'Kg,'
,
});
const
[
result
,
setResult
]
=
useState
();
useEffect
(()
=>
{
getDataUnit
();
},
[]);
<
View
style
=
{
styles
.
Item
}
>
<
View
style
=
{
styles
.
wrap
}
>
<
PickerItem
width
=
{
WIDTHXD
(
400
)}
data
=
{
dataType
}
onValueChange
=
{(
value
,
items
)
=>
{
setTypeTwo
(
items
);
}}
/
>
<
TouchableOpacity
>
<
Icon
name
=
{
'exchange'
}
size
=
{
30
}
color
=
{
R
.
colors
.
black
}
/
>
<
/TouchableOpacity
>
<
PickerItem
width
=
{
WIDTHXD
(
400
)}
data
=
{
dataType
}
onValueChange
=
{(
value
,
items
)
=>
{
setTypeOne
(
items
);
}}
/
>
<
/View
>
<
/View
>
useEffect
(()
=>
{
calcultorResult
();
},
[
number
,
fromUnit
,
toUnit
]);
const
getDataUnit
=
async
()
=>
{
props
.
showLoading
();
const
res
=
await
getUnitList
({
platform
:
Platform
.
OS
,
});
if
(
res
.
status
==
200
&&
res
.
data
.
code
==
200
)
{
setFromUnitList
(
res
.
data
.
data
);
setFromUnit
(
res
.
data
.
data
[
0
]);
onChangeFromUnit
(
''
,
res
.
data
.
data
[
0
])
}
else
{
showAlert
(
TYPE
.
ERROR
,
I18n
.
t
(
'Notification'
),
I18n
.
t
(
'Can_not_get_data'
));
}
props
.
hideLoading
();
};
const
onChangeNumber
=
(
string
)
=>
{
let
number
=
string
.
toString
().
split
(
','
).
join
(
''
);
setNumber
(
number
);
};
<
Text
style
=
{
styles
.
txtResult
}
>
K
ế
t
qu
ả
:
{
result
}
<
/Text
>
const
onChangeFromUnit
=
(
value
,
item
)
=>
{
setFromUnit
(
item
);
let
toUnit
=
[];
item
.
rates
.
map
((
rateItem
)
=>
{
toUnit
.
push
({
id
:
rateItem
.
to_unit_id
,
value
:
rateItem
.
to_unit
.
name
,
name
:
rateItem
.
to_unit
.
name
,
rate
:
rateItem
.
value_one
>
0
?
rateItem
.
value_one
:
rateItem
.
value_two
,
});
});
setToUnitList
(
toUnit
);
setToUnit
(
toUnit
[
0
]);
};
<
View
style
=
{
styles
.
footer
}
>
<
TouchableOpacity
onPress
=
{
onClick
}
style
=
{
styles
.
btnContainer
}
>
<
AppText
style
=
{
styles
.
txtBtn
}
i18nKey
=
{
'Caculate'
}
/
>
<
/TouchableOpacity
>
const
onChangeToUnit
=
(
value
,
item
)
=>
{
setToUnit
(
item
);
if
(
number
&&
number
!=
''
&&
parseFloat
(
number
)
>
0
)
{
let
result
=
parseFloat
(
number
)
*
item
.
rate
;
setResult
(
`
${
parseFloat
(
number
)}
${
fromUnit
.
name
}
=
${
result
}
${
item
.
name
}
`
);
}
};
const
calcultorResult
=
()
=>
{
if
(
number
&&
number
!=
''
&&
parseFloat
(
number
)
>
0
)
{
let
result
=
parseFloat
(
number
)
*
toUnit
.
rate
;
setResult
(
`
${
parseFloat
(
number
)}
${
fromUnit
.
name
}
=
${
result
}
${
toUnit
.
name
}
`
);
}
else
{
setResult
(
''
)
}
};
return
(
<
View
style
=
{{
flex
:
1
}}
>
<
HeaderBack
title
=
{
'ConvertUnit'
}
/
>
<
View
style
=
{{
flex
:
1
,
paddingTop
:
20
,
paddingHorizontal
:
20
}}
>
<
AppText
style
=
{
styles
.
txtTitle
}
i18nKey
=
{
'Count'
}
/
>
<
View
style
=
{
styles
.
Item
}
>
<
View
style
=
{
styles
.
wrap
}
>
<
TextInput
onChangeText
=
{(
val
)
=>
onChangeNumber
(
val
)}
keyboardType
=
{
'number-pad'
}
style
=
{
styles
.
wrapInput
}
maxLength
=
{
12
}
value
=
{
toPriceVnd
(
number
)}
/
>
<
/View
>
<
/View
>
<
View
style
=
{
styles
.
Item
}
>
<
View
style
=
{
styles
.
wrap
}
>
<
PickerItem
width
=
{
WIDTHXD
(
480
)}
data
=
{
fromUnitList
}
defaultValue
=
{
fromUnit
?.
name
}
value
=
{
fromUnit
?.
name
}
onValueChange
=
{(
value
,
item
)
=>
{
onChangeFromUnit
(
value
,
item
);
}}
/
>
{
/*<TouchableOpacity>*/
}
{
/* <Icon name={'exchange'} size={30} color={R.colors.black} />*/
}
{
/*</TouchableOpacity>*/
}
<
PickerItem
width
=
{
WIDTHXD
(
480
)}
data
=
{
toUnitList
}
defaultValue
=
{
toUnit
?.
name
}
value
=
{
toUnit
?.
name
}
onValueChange
=
{(
value
,
item
)
=>
{
onChangeToUnit
(
value
,
item
);
}}
/
>
<
/View
>
<
/View
>
<
Text
style
=
{
styles
.
txtResult
}
>
{
result
}
<
/Text
>
<
/View
>
<
/View
>
<
/View
>
<
/View
>
);
);
};
const
styles
=
StyleSheet
.
create
({
txtTitle
:
{
fontSize
:
getFontXD
(
42
),
color
:
R
.
colors
.
color777
,
marginBottom
:
5
,
},
note
:
{
fontSize
:
getFontXD
(
36
),
fontStyle
:
'italic'
,
marginTop
:
10
,
},
row
:
{
height
:
HEIGHTXD
(
109
),
width
:
'80%'
,
justifyContent
:
'space-between'
,
marginVertical
:
5
,
paddingHorizontal
:
10
,
},
footer
:
{
alignItems
:
'center'
,
justifyContent
:
'center'
,
marginTop
:
40
,
},
btnContainer
:
{
width
:
WIDTHXD
(
428
),
height
:
HEIGHTXD
(
120
),
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
R
.
colors
.
main
,
borderRadius
:
10
,
},
txtBtn
:
{
fontSize
:
getFontXD
(
48
),
color
:
R
.
colors
.
white
,
fontWeight
:
'600'
,
},
wrapInput
:
{
width
:
'100%'
,
backgroundColor
:
R
.
colors
.
white
,
height
:
HEIGHTXD
(
109
),
fontSize
:
getFontXD
(
42
),
borderRadius
:
5
,
paddingHorizontal
:
10
,
shadowColor
:
'#000'
,
shadowOffset
:
{
width
:
0
,
height
:
1
,
txtTitle
:
{
fontSize
:
getFontXD
(
42
),
color
:
R
.
colors
.
color777
,
marginBottom
:
5
,
},
note
:
{
fontSize
:
getFontXD
(
36
),
fontStyle
:
'italic'
,
marginTop
:
10
,
},
row
:
{
height
:
HEIGHTXD
(
109
),
width
:
'80%'
,
justifyContent
:
'space-between'
,
marginVertical
:
5
,
paddingHorizontal
:
10
,
},
footer
:
{
alignItems
:
'center'
,
justifyContent
:
'center'
,
marginTop
:
40
,
},
btnContainer
:
{
width
:
WIDTHXD
(
428
),
height
:
HEIGHTXD
(
120
),
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
R
.
colors
.
main
,
borderRadius
:
10
,
},
txtBtn
:
{
fontSize
:
getFontXD
(
48
),
color
:
R
.
colors
.
white
,
fontWeight
:
'600'
,
},
wrapInput
:
{
width
:
'100%'
,
backgroundColor
:
R
.
colors
.
white
,
height
:
HEIGHTXD
(
109
),
fontSize
:
getFontXD
(
42
),
borderRadius
:
5
,
paddingHorizontal
:
10
,
shadowColor
:
'#000'
,
shadowOffset
:
{
width
:
0
,
height
:
1
,
},
shadowOpacity
:
0.2
,
shadowRadius
:
1.41
,
elevation
:
2
,
},
wrap
:
{
flexDirection
:
'row'
,
alignItems
:
'center'
,
justifyContent
:
'space-between'
,
},
Item
:
{
marginBottom
:
20
,
},
txtNote
:
{
fontSize
:
getFontXD
(
36
),
textAlign
:
'right'
,
marginTop
:
10
,
},
txtResult
:
{
fontSize
:
getFontXD
(
52
),
color
:
R
.
colors
.
black
,
fontWeight
:
'600'
,
textAlign
:
'center'
,
marginTop
:
20
,
},
shadowOpacity
:
0.2
,
shadowRadius
:
1.41
,
elevation
:
2
,
},
wrap
:
{
flexDirection
:
'row'
,
alignItems
:
'center'
,
justifyContent
:
'space-between'
,
},
Item
:
{
marginBottom
:
20
,
},
txtNote
:
{
fontSize
:
getFontXD
(
36
),
textAlign
:
'right'
,
marginTop
:
10
,
},
txtResult
:
{
fontSize
:
getFontXD
(
52
),
color
:
R
.
colors
.
black
,
fontWeight
:
'600'
,
textAlign
:
'center'
,
marginTop
:
20
,
},
});
export
default
ConvertUnit
;
const
mapStateToProps
=
(
state
)
=>
{
return
{};
};
export
default
connect
(
mapStateToProps
,
{
showLoading
,
hideLoading
,
})(
ConvertUnit
);
src/Screens/Tool/ExchangeRate.js
View file @
ff6fbf64
...
...
@@ -41,7 +41,7 @@ const ExchangeRate = (props) => {
if
(
res
.
status
==
200
&&
res
.
data
.
code
==
200
)
{
setDataProduct
(
res
.
data
.
data
);
}
else
{
showAlert
(
TYPE
.
ERROR
,
I18n
.
t
(
'Notification'
,
I18n
.
t
(
'Can_not_get_data'
)
));
showAlert
(
TYPE
.
ERROR
,
I18n
.
t
(
'Notification'
),
I18n
.
t
(
'Can_not_get_data'
));
}
};
...
...
src/apis/Functions/Transaction.js
View file @
ff6fbf64
...
...
@@ -26,3 +26,8 @@ export const getListExchangeRate = async (body) =>
GetData
(
url
.
urlGetListExchangeRate
,
body
)
.
then
((
res
)
=>
res
)
.
catch
((
err
)
=>
err
);
export
const
getUnitList
=
async
(
body
)
=>
GetData
(
url
.
urlGetUnitList
,
body
)
.
then
((
res
)
=>
res
)
.
catch
((
err
)
=>
err
);
src/apis/url.js
View file @
ff6fbf64
...
...
@@ -57,4 +57,6 @@ export default {
urlProfitLost
:
root
+
'api/v1/customers/calculate-profit'
,
urlGetListExchangeRate
:
root
+
'api/v1/customers/get-list-exchange-rate'
,
urlGetUnitList
:
`
${
root
}
api/v1/customers/get-list-unit`
,
};
src/routers/TabNavigation.js
View file @
ff6fbf64
...
...
@@ -18,7 +18,7 @@ import Test from '../Screens/NewFeed/Test';
import
{
useNavigation
}
from
'@react-navigation/native'
;
import
Transaction
from
'../Screens/Transaction/Transaction'
;
import
{
AccountVerification
,
PACKETCQG
}
from
'../routers/ScreenNames'
;
import
I18n
from
'../helper/i18/i18n'
;
import
I18n
,
{
setLocation
}
from
'../helper/i18/i18n'
;
import
{
changeLanguage
}
from
'../actions/language'
;
import
KEY
from
'../assets/AsynStorage'
;
import
AsyncStorage
from
'@react-native-community/async-storage'
;
...
...
@@ -77,6 +77,7 @@ const TabNavigator = (props) => {
const
setInitLanguage
=
async
()
=>
{
const
laguage
=
await
AsyncStorage
.
getItem
(
KEY
.
LANGUAGE
);
if
(
laguage
)
props
.
changeLanguage
(
laguage
);
setLocation
(
I18n
,
laguage
);
};
const
showPopUp
=
()
=>
{
...
...
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