react-native-timacare 3.3.45 → 3.3.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/lib/commonjs/assets/svgs/question.svg +1 -7
  2. package/lib/commonjs/components/ItemTimaOneV3.js +1 -1
  3. package/lib/commonjs/components/ItemTimaOneV3.js.flow +29 -29
  4. package/lib/commonjs/components/ItemTimaOneV3.js.map +1 -1
  5. package/lib/commonjs/components/SkeletonLoanCard.js +1 -1
  6. package/lib/commonjs/components/SkeletonLoanCard.js.flow +58 -0
  7. package/lib/commonjs/components/SkeletonLoanCard.js.map +1 -1
  8. package/lib/commonjs/navigation/navigationRef.js +1 -1
  9. package/lib/commonjs/navigation/navigationRef.js.flow +65 -33
  10. package/lib/commonjs/navigation/navigationRef.js.map +1 -1
  11. package/lib/commonjs/navigation/primary-navigator.js +1 -1
  12. package/lib/commonjs/navigation/primary-navigator.js.flow +46 -7
  13. package/lib/commonjs/navigation/primary-navigator.js.map +1 -1
  14. package/lib/commonjs/screens/detail-loan-tima/InforLoan.js +2 -0
  15. package/lib/commonjs/screens/detail-loan-tima/InforLoan.js.flow +199 -0
  16. package/lib/commonjs/screens/detail-loan-tima/InforLoan.js.map +1 -0
  17. package/lib/commonjs/screens/detail-loan-tima/PaymentSchedule.js +2 -0
  18. package/lib/commonjs/screens/{detail-loan/DetailLoanTima.js.flow → detail-loan-tima/PaymentSchedule.js.flow} +107 -118
  19. package/lib/commonjs/screens/detail-loan-tima/PaymentSchedule.js.map +1 -0
  20. package/lib/commonjs/screens/detail-loan-tima/index.js +2 -0
  21. package/lib/commonjs/screens/detail-loan-tima/index.js.flow +109 -0
  22. package/lib/commonjs/screens/detail-loan-tima/index.js.map +1 -0
  23. package/lib/commonjs/screens/home/DigitalTopupItem.js +1 -1
  24. package/lib/commonjs/screens/home/DigitalTopupItem.js.flow +2 -2
  25. package/lib/commonjs/screens/home/DigitalTopupItem.js.map +1 -1
  26. package/lib/commonjs/screens/home/ItemMotoBikeLoan.js +1 -1
  27. package/lib/commonjs/screens/home/ItemMotoBikeLoan.js.flow +2 -2
  28. package/lib/commonjs/services/api/api.js +1 -1
  29. package/lib/commonjs/services/api/api.js.flow +33 -7
  30. package/lib/commonjs/services/api/api.js.map +1 -1
  31. package/lib/module/assets/svgs/question.svg +1 -7
  32. package/lib/module/components/ItemTimaOneV3.js +1 -1
  33. package/lib/module/components/ItemTimaOneV3.js.map +1 -1
  34. package/lib/module/components/SkeletonLoanCard.js +1 -1
  35. package/lib/module/components/SkeletonLoanCard.js.map +1 -1
  36. package/lib/module/navigation/navigationRef.js +1 -1
  37. package/lib/module/navigation/navigationRef.js.map +1 -1
  38. package/lib/module/navigation/primary-navigator.js +1 -1
  39. package/lib/module/navigation/primary-navigator.js.map +1 -1
  40. package/lib/module/screens/detail-loan-tima/InforLoan.js +2 -0
  41. package/lib/module/screens/detail-loan-tima/InforLoan.js.map +1 -0
  42. package/lib/module/screens/detail-loan-tima/PaymentSchedule.js +2 -0
  43. package/lib/module/screens/detail-loan-tima/PaymentSchedule.js.map +1 -0
  44. package/lib/module/screens/detail-loan-tima/index.js +2 -0
  45. package/lib/module/screens/detail-loan-tima/index.js.map +1 -0
  46. package/lib/module/screens/home/DigitalTopupItem.js +1 -1
  47. package/lib/module/screens/home/DigitalTopupItem.js.map +1 -1
  48. package/lib/module/screens/home/ItemMotoBikeLoan.js +1 -1
  49. package/lib/module/services/api/api.js +1 -1
  50. package/lib/module/services/api/api.js.map +1 -1
  51. package/lib/typescript/components/SkeletonLoanCard.d.ts +3 -0
  52. package/lib/typescript/components/SkeletonLoanCard.d.ts.map +1 -1
  53. package/lib/typescript/navigation/navigationRef.d.ts +47 -8
  54. package/lib/typescript/navigation/navigationRef.d.ts.map +1 -1
  55. package/lib/typescript/navigation/primary-navigator.d.ts +9 -2
  56. package/lib/typescript/navigation/primary-navigator.d.ts.map +1 -1
  57. package/lib/typescript/screens/detail-loan-tima/InforLoan.d.ts +4 -0
  58. package/lib/typescript/screens/detail-loan-tima/InforLoan.d.ts.map +1 -0
  59. package/lib/typescript/screens/detail-loan-tima/PaymentSchedule.d.ts +2 -0
  60. package/lib/typescript/screens/detail-loan-tima/PaymentSchedule.d.ts.map +1 -0
  61. package/lib/typescript/screens/detail-loan-tima/index.d.ts +2 -0
  62. package/lib/typescript/screens/detail-loan-tima/index.d.ts.map +1 -0
  63. package/lib/typescript/services/api/api.d.ts +16 -0
  64. package/lib/typescript/services/api/api.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/src/assets/svgs/question.svg +1 -7
  67. package/src/components/ItemTimaOneV3.tsx +29 -29
  68. package/src/components/SkeletonLoanCard.tsx +58 -0
  69. package/src/navigation/navigationRef.ts +65 -33
  70. package/src/navigation/primary-navigator.tsx +46 -7
  71. package/src/screens/detail-loan-tima/InforLoan.tsx +199 -0
  72. package/src/screens/{detail-loan/DetailLoanTima.tsx → detail-loan-tima/PaymentSchedule.tsx} +107 -118
  73. package/src/screens/detail-loan-tima/index.tsx +109 -0
  74. package/src/screens/home/DigitalTopupItem.tsx +2 -2
  75. package/src/screens/home/ItemMotoBikeLoan.tsx +2 -2
  76. package/src/services/api/api.ts +33 -7
  77. package/lib/commonjs/screens/detail-loan/DetailLoanTima.js +0 -2
  78. package/lib/commonjs/screens/detail-loan/DetailLoanTima.js.map +0 -1
  79. package/lib/module/screens/detail-loan/DetailLoanTima.js +0 -2
  80. package/lib/module/screens/detail-loan/DetailLoanTima.js.map +0 -1
  81. package/lib/typescript/screens/detail-loan/DetailLoanTima.d.ts +0 -2
  82. package/lib/typescript/screens/detail-loan/DetailLoanTima.d.ts.map +0 -1
@@ -124,10 +124,15 @@ export class Api {
124
124
  text: 'Đồng ý',
125
125
  onPress: () => {
126
126
  try {
127
- if (this.config.logout && typeof this.config.logout === 'function') {
127
+ if (
128
+ this.config.logout &&
129
+ typeof this.config.logout === 'function'
130
+ ) {
128
131
  this.config.logout();
129
132
  } else {
130
- myLog('[API] Warning: logout function not configured in SDKConfig');
133
+ myLog(
134
+ '[API] Warning: logout function not configured in SDKConfig'
135
+ );
131
136
  }
132
137
  } catch (error) {
133
138
  myLog('[API] Error during logout:', error);
@@ -222,14 +227,14 @@ export class Api {
222
227
  // Seed current state, then listen for changes.
223
228
  netInfo
224
229
  .fetch()
225
- .then(state => {
230
+ .then((state) => {
226
231
  this.isConnected = state.isConnected !== false;
227
232
  })
228
233
  .catch(() => {
229
234
  this.isConnected = true;
230
235
  });
231
236
 
232
- this.netInfoUnsubscribe = netInfo.addEventListener(state => {
237
+ this.netInfoUnsubscribe = netInfo.addEventListener((state) => {
233
238
  this.isConnected = state.isConnected !== false;
234
239
  });
235
240
  }
@@ -241,7 +246,10 @@ export class Api {
241
246
  * 2. Shortens the timeout for idempotent GETs on the main instance so reads
242
247
  * fail fast and hand off to the retry interceptor.
243
248
  */
244
- private attachRequestGuards(instance: ApisauceInstance, splitGetTimeout: boolean) {
249
+ private attachRequestGuards(
250
+ instance: ApisauceInstance,
251
+ splitGetTimeout: boolean
252
+ ) {
245
253
  const getTimeout = this.config.getTimeout || DEFAULT_GET_TIMEOUT;
246
254
 
247
255
  instance.axiosInstance.interceptors.request.use((config: any) => {
@@ -276,7 +284,7 @@ export class Api {
276
284
  */
277
285
  private attachRetryInterceptor(instance: ApisauceInstance) {
278
286
  instance.axiosInstance.interceptors.response.use(
279
- response => response,
287
+ (response) => response,
280
288
  async (error: any) => {
281
289
  const config = error?.config;
282
290
 
@@ -305,7 +313,7 @@ export class Api {
305
313
  `[API] Retry ${config.__retryCount}/${MAX_RETRIES} in ${delay}ms: ${config.url}`
306
314
  );
307
315
 
308
- await new Promise(resolve => setTimeout(resolve, delay));
316
+ await new Promise((resolve) => setTimeout(resolve, delay));
309
317
  return instance.axiosInstance(config);
310
318
  }
311
319
  );
@@ -4161,4 +4169,22 @@ export class Api {
4161
4169
  return { kind: 'bad-data' };
4162
4170
  }
4163
4171
  }
4172
+
4173
+ async get_detail_loan_tima(id) {
4174
+ // make the api call
4175
+ const response: ApiResponse<any> = await this.apisauce.get(
4176
+ `api/v2.0/loanbrief/get_loan_detail_tima?loanBriefId=${id}`
4177
+ );
4178
+ // the typical ways to die when calling an api
4179
+ if (!response.ok) {
4180
+ const problem = getGeneralApiProblem(response);
4181
+ if (problem) return problem;
4182
+ }
4183
+ // transform the data into the format we are expecting
4184
+ try {
4185
+ return { kind: 'ok', data: response.data };
4186
+ } catch {
4187
+ return { kind: 'bad-data' };
4188
+ }
4189
+ }
4164
4190
  }
@@ -1,2 +0,0 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.DetailLoanTima=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _mobxReactLite=require("mobx-react-lite");var _native=require("@react-navigation/native");var _reactNative=require("react-native");var _icons=require("../../assets/icons");var _MText=require("../../components/MText");var _utils=require("../../utils");var _api=require("../../services/api");var _theme=require("../../theme");var _Loading=_interopRequireDefault(require("../../components/Loading"));var _MHeader=_interopRequireDefault(require("../../components/MHeader"));var _reactNativeSafeAreaContext=require("react-native-safe-area-context");var _jsxFileName="/Users/tima/Tima/react-native-timacare/src/screens/detail-loan/DetailLoanTima.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t2 in e)"default"!==_t2&&{}.hasOwnProperty.call(e,_t2)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t2))&&(i.get||i.set)?o(f,_t2,i):f[_t2]=e[_t2]);return f;})(e,t);}var DetailLoanTima=exports.DetailLoanTima=(0,_mobxReactLite.observer)(function DetailLoanTima(props){var _props$route3,_props$route3$params,_props$route3$params$,_data$paymentSchedule,_this=this;var insets=(0,_reactNativeSafeAreaContext.useSafeAreaInsets)();var navigation=(0,_native.useNavigation)();var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isLoading=_useState2[0],setIsLoading=_useState2[1];var _useState3=(0,_react.useState)(),_useState4=(0,_slicedToArray2.default)(_useState3,2),data=_useState4[0],setData=_useState4[1];var _useState5=(0,_react.useState)(0),_useState6=(0,_slicedToArray2.default)(_useState5,2),moneyCloseLoan=_useState6[0],setMoneyCloseLoan=_useState6[1];var getData=function _callee(){var _props$route,_props$route$params,_props$route$params$l;return _regenerator.default.async(function(_context){while(1)switch(_context.prev=_context.next){case 0:setIsLoading(true);_api.Api.getInstance().getPaymentScheduleTima((_props$route=props.route)==null?void 0:(_props$route$params=_props$route.params)==null?void 0:(_props$route$params$l=_props$route$params.loan)==null?void 0:_props$route$params$l.id).then(function(response){setIsLoading(false);if(response.kind==='ok'){if(response.data.meta.errorCode===200){var _response$data;setData((_response$data=response.data)==null?void 0:_response$data.data);}else{var _response$data2,_response$data2$meta;_reactNative.Alert.alert('Thông báo',response==null?void 0:(_response$data2=response.data)==null?void 0:(_response$data2$meta=_response$data2.meta)==null?void 0:_response$data2$meta.errorMessage);}}else{_reactNative.Alert.alert('Thông báo','Có lỗi xảy ra. Vui lòng thử lại sau');}}).catch(function(err){setIsLoading(false);_reactNative.Alert.alert('Thông báo','Có lỗi xảy ra. Vui lòng thử lại sau');});case 1:case"end":return _context.stop();}},null,null,null,Promise);};var getMoneyCloseLoan=function _callee2(){var _props$route2,_props$route2$params,_props$route2$params$,response,_response$data3,_response$data3$data,_t;return _regenerator.default.async(function(_context2){while(1)switch(_context2.prev=_context2.next){case 0:_context2.prev=0;setIsLoading(true);_context2.next=1;return _regenerator.default.awrap(_api.Api.getInstance().getMoneyCloseLoan((_props$route2=props.route)==null?void 0:(_props$route2$params=_props$route2.params)==null?void 0:(_props$route2$params$=_props$route2$params.loan)==null?void 0:_props$route2$params$.id));case 1:response=_context2.sent;if(response.kind==='ok'&&response.data.meta.errorCode===200){setMoneyCloseLoan((_response$data3=response.data)==null?void 0:(_response$data3$data=_response$data3.data)==null?void 0:_response$data3$data.totalMoneyCloseLoan);}else{}_context2.next=3;break;case 2:_context2.prev=2;_t=_context2["catch"](0);case 3:_context2.prev=3;setIsLoading(false);return _context2.finish(3);case 4:case"end":return _context2.stop();}},null,null,[[0,2,3,4]],Promise);};(0,_react.useEffect)(function(){getData();getMoneyCloseLoan();},[]);return _react.default.createElement(_reactNative.View,{style:{flex:1,backgroundColor:'#FDFDFD'},__self:this,__source:{fileName:_jsxFileName,lineNumber:73,columnNumber:5}},_react.default.createElement(_MHeader.default,{title:"Vay tr\u1EF1c tuy\u1EBFn 24/7",__self:this,__source:{fileName:_jsxFileName,lineNumber:74,columnNumber:7}}),_react.default.createElement(_reactNative.View,{style:{flex:1},__self:this,__source:{fileName:_jsxFileName,lineNumber:75,columnNumber:7}},_react.default.createElement(_reactNative.View,{style:$header,__self:this,__source:{fileName:_jsxFileName,lineNumber:76,columnNumber:9}},_react.default.createElement(_reactNative.TouchableOpacity,{style:$backButton,onPress:function onPress(){return navigation.goBack();},__self:this,__source:{fileName:_jsxFileName,lineNumber:77,columnNumber:11}},_react.default.createElement(_icons.IconBack,{__self:this,__source:{fileName:_jsxFileName,lineNumber:81,columnNumber:13}})),_react.default.createElement(_MText.MText,{style:{fontSize:16,fontWeight:'600',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:83,columnNumber:11}},"HD-",(_props$route3=props.route)==null?void 0:(_props$route3$params=_props$route3.params)==null?void 0:(_props$route3$params$=_props$route3$params.loan)==null?void 0:_props$route3$params$.id)),_react.default.createElement(_reactNative.View,{style:{backgroundColor:'#ECFFE8',flexDirection:'row',alignItems:'center',paddingHorizontal:16,paddingVertical:8,justifyContent:'space-between'},__self:this,__source:{fileName:_jsxFileName,lineNumber:93,columnNumber:9}},_react.default.createElement(_MText.MText,{style:{fontSize:12},__self:this,__source:{fileName:_jsxFileName,lineNumber:103,columnNumber:11}},"M\xE3 H\u0110 gi\u1EA3i ng\xE2n"),_react.default.createElement(_MText.MText,{style:{fontSize:12,fontWeight:'600',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:110,columnNumber:11}},"TC-",data==null?void 0:data.codeId)),_react.default.createElement(_reactNative.View,{style:{flexDirection:'row',alignItems:'center',paddingHorizontal:16,marginTop:16},__self:this,__source:{fileName:_jsxFileName,lineNumber:120,columnNumber:9}},_react.default.createElement(_MText.MText,{style:{color:'black',fontWeight:'600',width:'35%',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:128,columnNumber:11}},"Ng\xE0y thanh to\xE1n"),_react.default.createElement(_MText.MText,{style:{color:'black',fontWeight:'600',width:'40%',textAlign:'center',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:138,columnNumber:11}},"S\u1ED1 ti\u1EC1n thanh to\xE1n")),_react.default.createElement(_reactNative.ScrollView,{style:{flex:1,paddingHorizontal:16,marginTop:16},__self:this,__source:{fileName:_jsxFileName,lineNumber:150,columnNumber:9}},data==null?void 0:(_data$paymentSchedule=data.paymentSchedule)==null?void 0:_data$paymentSchedule.map(function(item,index){return _react.default.createElement(_reactNative.View,{key:index,style:{flexDirection:'row',paddingVertical:16,borderBottomWidth:1,borderColor:_theme.color.border},__self:_this,__source:{fileName:_jsxFileName,lineNumber:152,columnNumber:13}},_react.default.createElement(_MText.MText,{style:[{width:'35%'}],__self:_this,__source:{fileName:_jsxFileName,lineNumber:161,columnNumber:15}},item!=null&&item.daysPayable?(0,_utils.formatDDMMYYY)(item==null?void 0:item.daysPayable):''),_react.default.createElement(_reactNative.View,{style:{width:'40%',alignItems:'center'},__self:_this,__source:{fileName:_jsxFileName,lineNumber:170,columnNumber:15}},_react.default.createElement(_MText.MText,{__self:_this,__source:{fileName:_jsxFileName,lineNumber:176,columnNumber:17}},(0,_utils.formatMoney)(item==null?void 0:item.payMoney)," VN\u0110"),_react.default.createElement(_MText.MText,{style:[{color:!(item!=null&&item.done)?'#F05123':'#27AE60',marginTop:4,fontSize:12}],__self:_this,__source:{fileName:_jsxFileName,lineNumber:177,columnNumber:17}},!(item!=null&&item.done)?'Chưa thanh toán':'Đã thanh toán')),_react.default.createElement(_reactNative.View,{style:{flexDirection:'row',justifyContent:'flex-end'},__self:_this,__source:{fileName:_jsxFileName,lineNumber:190,columnNumber:15}},!(item!=null&&item.done)&&_react.default.createElement(_reactNative.TouchableOpacity,{disabled:item==null?void 0:item.done,style:{borderRadius:8,height:30,paddingHorizontal:8,alignItems:'center',justifyContent:'center',borderWidth:1,borderColor:!(item!=null&&item.done)?_theme.color.primary:'#333333'},onPress:function onPress(){var _props$route4,_props$route4$params,_props$route4$params$;return navigation.navigate('ShowQrCode',{item:item,data:data,id:(_props$route4=props.route)==null?void 0:(_props$route4$params=_props$route4.params)==null?void 0:(_props$route4$params$=_props$route4$params.loan)==null?void 0:_props$route4$params$.id});},__self:_this,__source:{fileName:_jsxFileName,lineNumber:197,columnNumber:19}},_react.default.createElement(_MText.MText,{style:{color:!(item!=null&&item.done)?_theme.color.primary:'#333333',fontSize:12},__self:_this,__source:{fileName:_jsxFileName,lineNumber:216,columnNumber:21}},"Thanh to\xE1n"))));}),_react.default.createElement(_reactNative.TouchableOpacity,{onPress:function onPress(){var _props$route5,_props$route5$params,_props$route5$params$;return navigation.navigate('ShowQrCode',{data:data,id:(_props$route5=props.route)==null?void 0:(_props$route5$params=_props$route5.params)==null?void 0:(_props$route5$params$=_props$route5$params.loan)==null?void 0:_props$route5$params$.id,isFullPayment:true,totalMoney:moneyCloseLoan});},style:{backgroundColor:'#FFEAD8',marginTop:24,borderRadius:24,height:40,alignItems:'center',justifyContent:'center',borderWidth:1,borderColor:'#F05123',marginBottom:insets.bottom+24},__self:this,__source:{fileName:_jsxFileName,lineNumber:229,columnNumber:11}},_react.default.createElement(_MText.MText,{style:{color:'#F05123',fontWeight:'500',fontFamily:'BeVietnamPro-Medium'},__self:this,__source:{fileName:_jsxFileName,lineNumber:250,columnNumber:13}},"Xem th\xF4ng tin t\u1EA5t to\xE1n"))),_react.default.createElement(_Loading.default,{isLoading:isLoading,__self:this,__source:{fileName:_jsxFileName,lineNumber:261,columnNumber:9}})));});var $backButton={position:'absolute',left:16};var $header={flexDirection:'row',alignItems:'center',paddingVertical:16,justifyContent:'center'};
2
- //# sourceMappingURL=DetailLoanTima.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_mobxReactLite","_native","_reactNative","_icons","_MText","_utils","_api","_theme","_Loading","_interopRequireDefault","_MHeader","_reactNativeSafeAreaContext","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t2","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DetailLoanTima","exports","observer","props","_props$route3","_props$route3$params","_props$route3$params$","_data$paymentSchedule","_this","insets","useSafeAreaInsets","navigation","useNavigation","_useState","useState","_useState2","_slicedToArray2","isLoading","setIsLoading","_useState3","_useState4","data","setData","_useState5","_useState6","moneyCloseLoan","setMoneyCloseLoan","getData","_callee","_props$route","_props$route$params","_props$route$params$l","_regenerator","async","_context","prev","next","Api","getInstance","getPaymentScheduleTima","route","params","loan","id","then","response","kind","meta","errorCode","_response$data","_response$data2","_response$data2$meta","Alert","alert","errorMessage","catch","err","stop","Promise","getMoneyCloseLoan","_callee2","_props$route2","_props$route2$params","_props$route2$params$","_response$data3","_response$data3$data","_t","_context2","awrap","sent","totalMoneyCloseLoan","finish","useEffect","createElement","View","style","flex","backgroundColor","__self","__source","fileName","lineNumber","columnNumber","title","$header","TouchableOpacity","$backButton","onPress","goBack","IconBack","MText","fontSize","fontWeight","fontFamily","flexDirection","alignItems","paddingHorizontal","paddingVertical","justifyContent","codeId","marginTop","color","width","textAlign","ScrollView","paymentSchedule","map","item","index","key","borderBottomWidth","borderColor","border","daysPayable","formatDDMMYYY","formatMoney","payMoney","done","disabled","borderRadius","height","borderWidth","primary","_props$route4","_props$route4$params","_props$route4$params$","navigate","_props$route5","_props$route5$params","_props$route5$params$","isFullPayment","totalMoney","marginBottom","bottom","position","left"],"sourceRoot":"../../../../src","sources":["screens/detail-loan/DetailLoanTima.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,2 +0,0 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.DetailLoanTima=void 0;var _regenerator=_interopRequireDefault(require("@babel/runtime/regenerator"));var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _react=_interopRequireWildcard(require("react"));var _mobxReactLite=require("mobx-react-lite");var _native=require("@react-navigation/native");var _reactNative=require("react-native");var _icons=require("../../assets/icons");var _MText=require("../../components/MText");var _utils=require("../../utils");var _api=require("../../services/api");var _theme=require("../../theme");var _Loading=_interopRequireDefault(require("../../components/Loading"));var _MHeader=_interopRequireDefault(require("../../components/MHeader"));var _reactNativeSafeAreaContext=require("react-native-safe-area-context");var _jsxFileName="/Users/tima/Tima/react-native-timacare/src/screens/detail-loan/DetailLoanTima.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t2 in e)"default"!==_t2&&{}.hasOwnProperty.call(e,_t2)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t2))&&(i.get||i.set)?o(f,_t2,i):f[_t2]=e[_t2]);return f;})(e,t);}var DetailLoanTima=exports.DetailLoanTima=(0,_mobxReactLite.observer)(function DetailLoanTima(props){var _props$route3,_props$route3$params,_props$route3$params$,_data$paymentSchedule,_this=this;var insets=(0,_reactNativeSafeAreaContext.useSafeAreaInsets)();var navigation=(0,_native.useNavigation)();var _useState=(0,_react.useState)(false),_useState2=(0,_slicedToArray2.default)(_useState,2),isLoading=_useState2[0],setIsLoading=_useState2[1];var _useState3=(0,_react.useState)(),_useState4=(0,_slicedToArray2.default)(_useState3,2),data=_useState4[0],setData=_useState4[1];var _useState5=(0,_react.useState)(0),_useState6=(0,_slicedToArray2.default)(_useState5,2),moneyCloseLoan=_useState6[0],setMoneyCloseLoan=_useState6[1];var getData=function _callee(){var _props$route,_props$route$params,_props$route$params$l;return _regenerator.default.async(function(_context){while(1)switch(_context.prev=_context.next){case 0:setIsLoading(true);_api.Api.getInstance().getPaymentScheduleTima((_props$route=props.route)==null?void 0:(_props$route$params=_props$route.params)==null?void 0:(_props$route$params$l=_props$route$params.loan)==null?void 0:_props$route$params$l.id).then(function(response){setIsLoading(false);if(response.kind==='ok'){if(response.data.meta.errorCode===200){var _response$data;setData((_response$data=response.data)==null?void 0:_response$data.data);}else{var _response$data2,_response$data2$meta;_reactNative.Alert.alert('Thông báo',response==null?void 0:(_response$data2=response.data)==null?void 0:(_response$data2$meta=_response$data2.meta)==null?void 0:_response$data2$meta.errorMessage);}}else{_reactNative.Alert.alert('Thông báo','Có lỗi xảy ra. Vui lòng thử lại sau');}}).catch(function(err){setIsLoading(false);_reactNative.Alert.alert('Thông báo','Có lỗi xảy ra. Vui lòng thử lại sau');});case 1:case"end":return _context.stop();}},null,null,null,Promise);};var getMoneyCloseLoan=function _callee2(){var _props$route2,_props$route2$params,_props$route2$params$,response,_response$data3,_response$data3$data,_t;return _regenerator.default.async(function(_context2){while(1)switch(_context2.prev=_context2.next){case 0:_context2.prev=0;setIsLoading(true);_context2.next=1;return _regenerator.default.awrap(_api.Api.getInstance().getMoneyCloseLoan((_props$route2=props.route)==null?void 0:(_props$route2$params=_props$route2.params)==null?void 0:(_props$route2$params$=_props$route2$params.loan)==null?void 0:_props$route2$params$.id));case 1:response=_context2.sent;if(response.kind==='ok'&&response.data.meta.errorCode===200){setMoneyCloseLoan((_response$data3=response.data)==null?void 0:(_response$data3$data=_response$data3.data)==null?void 0:_response$data3$data.totalMoneyCloseLoan);}else{}_context2.next=3;break;case 2:_context2.prev=2;_t=_context2["catch"](0);case 3:_context2.prev=3;setIsLoading(false);return _context2.finish(3);case 4:case"end":return _context2.stop();}},null,null,[[0,2,3,4]],Promise);};(0,_react.useEffect)(function(){getData();getMoneyCloseLoan();},[]);return _react.default.createElement(_reactNative.View,{style:{flex:1,backgroundColor:'#FDFDFD'},__self:this,__source:{fileName:_jsxFileName,lineNumber:73,columnNumber:5}},_react.default.createElement(_MHeader.default,{title:"Vay tr\u1EF1c tuy\u1EBFn 24/7",__self:this,__source:{fileName:_jsxFileName,lineNumber:74,columnNumber:7}}),_react.default.createElement(_reactNative.View,{style:{flex:1},__self:this,__source:{fileName:_jsxFileName,lineNumber:75,columnNumber:7}},_react.default.createElement(_reactNative.View,{style:$header,__self:this,__source:{fileName:_jsxFileName,lineNumber:76,columnNumber:9}},_react.default.createElement(_reactNative.TouchableOpacity,{style:$backButton,onPress:function onPress(){return navigation.goBack();},__self:this,__source:{fileName:_jsxFileName,lineNumber:77,columnNumber:11}},_react.default.createElement(_icons.IconBack,{__self:this,__source:{fileName:_jsxFileName,lineNumber:81,columnNumber:13}})),_react.default.createElement(_MText.MText,{style:{fontSize:16,fontWeight:'600',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:83,columnNumber:11}},"HD-",(_props$route3=props.route)==null?void 0:(_props$route3$params=_props$route3.params)==null?void 0:(_props$route3$params$=_props$route3$params.loan)==null?void 0:_props$route3$params$.id)),_react.default.createElement(_reactNative.View,{style:{backgroundColor:'#ECFFE8',flexDirection:'row',alignItems:'center',paddingHorizontal:16,paddingVertical:8,justifyContent:'space-between'},__self:this,__source:{fileName:_jsxFileName,lineNumber:93,columnNumber:9}},_react.default.createElement(_MText.MText,{style:{fontSize:12},__self:this,__source:{fileName:_jsxFileName,lineNumber:103,columnNumber:11}},"M\xE3 H\u0110 gi\u1EA3i ng\xE2n"),_react.default.createElement(_MText.MText,{style:{fontSize:12,fontWeight:'600',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:110,columnNumber:11}},"TC-",data==null?void 0:data.codeId)),_react.default.createElement(_reactNative.View,{style:{flexDirection:'row',alignItems:'center',paddingHorizontal:16,marginTop:16},__self:this,__source:{fileName:_jsxFileName,lineNumber:120,columnNumber:9}},_react.default.createElement(_MText.MText,{style:{color:'black',fontWeight:'600',width:'35%',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:128,columnNumber:11}},"Ng\xE0y thanh to\xE1n"),_react.default.createElement(_MText.MText,{style:{color:'black',fontWeight:'600',width:'40%',textAlign:'center',fontFamily:'BeVietnamPro-SemiBold'},__self:this,__source:{fileName:_jsxFileName,lineNumber:138,columnNumber:11}},"S\u1ED1 ti\u1EC1n thanh to\xE1n")),_react.default.createElement(_reactNative.ScrollView,{style:{flex:1,paddingHorizontal:16,marginTop:16},__self:this,__source:{fileName:_jsxFileName,lineNumber:150,columnNumber:9}},data==null?void 0:(_data$paymentSchedule=data.paymentSchedule)==null?void 0:_data$paymentSchedule.map(function(item,index){return _react.default.createElement(_reactNative.View,{key:index,style:{flexDirection:'row',paddingVertical:16,borderBottomWidth:1,borderColor:_theme.color.border},__self:_this,__source:{fileName:_jsxFileName,lineNumber:152,columnNumber:13}},_react.default.createElement(_MText.MText,{style:[{width:'35%'}],__self:_this,__source:{fileName:_jsxFileName,lineNumber:161,columnNumber:15}},item!=null&&item.daysPayable?(0,_utils.formatDDMMYYY)(item==null?void 0:item.daysPayable):''),_react.default.createElement(_reactNative.View,{style:{width:'40%',alignItems:'center'},__self:_this,__source:{fileName:_jsxFileName,lineNumber:170,columnNumber:15}},_react.default.createElement(_MText.MText,{__self:_this,__source:{fileName:_jsxFileName,lineNumber:176,columnNumber:17}},(0,_utils.formatMoney)(item==null?void 0:item.payMoney)," VN\u0110"),_react.default.createElement(_MText.MText,{style:[{color:!(item!=null&&item.done)?'#F05123':'#27AE60',marginTop:4,fontSize:12}],__self:_this,__source:{fileName:_jsxFileName,lineNumber:177,columnNumber:17}},!(item!=null&&item.done)?'Chưa thanh toán':'Đã thanh toán')),_react.default.createElement(_reactNative.View,{style:{flexDirection:'row',justifyContent:'flex-end'},__self:_this,__source:{fileName:_jsxFileName,lineNumber:190,columnNumber:15}},!(item!=null&&item.done)&&_react.default.createElement(_reactNative.TouchableOpacity,{disabled:item==null?void 0:item.done,style:{borderRadius:8,height:30,paddingHorizontal:8,alignItems:'center',justifyContent:'center',borderWidth:1,borderColor:!(item!=null&&item.done)?_theme.color.primary:'#333333'},onPress:function onPress(){var _props$route4,_props$route4$params,_props$route4$params$;return navigation.navigate('ShowQrCode',{item:item,data:data,id:(_props$route4=props.route)==null?void 0:(_props$route4$params=_props$route4.params)==null?void 0:(_props$route4$params$=_props$route4$params.loan)==null?void 0:_props$route4$params$.id});},__self:_this,__source:{fileName:_jsxFileName,lineNumber:197,columnNumber:19}},_react.default.createElement(_MText.MText,{style:{color:!(item!=null&&item.done)?_theme.color.primary:'#333333',fontSize:12},__self:_this,__source:{fileName:_jsxFileName,lineNumber:216,columnNumber:21}},"Thanh to\xE1n"))));}),_react.default.createElement(_reactNative.TouchableOpacity,{onPress:function onPress(){var _props$route5,_props$route5$params,_props$route5$params$;return navigation.navigate('ShowQrCode',{data:data,id:(_props$route5=props.route)==null?void 0:(_props$route5$params=_props$route5.params)==null?void 0:(_props$route5$params$=_props$route5$params.loan)==null?void 0:_props$route5$params$.id,isFullPayment:true,totalMoney:moneyCloseLoan});},style:{backgroundColor:'#FFEAD8',marginTop:24,borderRadius:24,height:40,alignItems:'center',justifyContent:'center',borderWidth:1,borderColor:'#F05123',marginBottom:insets.bottom+24},__self:this,__source:{fileName:_jsxFileName,lineNumber:229,columnNumber:11}},_react.default.createElement(_MText.MText,{style:{color:'#F05123',fontWeight:'500',fontFamily:'BeVietnamPro-Medium'},__self:this,__source:{fileName:_jsxFileName,lineNumber:250,columnNumber:13}},"Xem th\xF4ng tin t\u1EA5t to\xE1n"))),_react.default.createElement(_Loading.default,{isLoading:isLoading,__self:this,__source:{fileName:_jsxFileName,lineNumber:261,columnNumber:9}})));});var $backButton={position:'absolute',left:16};var $header={flexDirection:'row',alignItems:'center',paddingVertical:16,justifyContent:'center'};
2
- //# sourceMappingURL=DetailLoanTima.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_react","_interopRequireWildcard","require","_mobxReactLite","_native","_reactNative","_icons","_MText","_utils","_api","_theme","_Loading","_interopRequireDefault","_MHeader","_reactNativeSafeAreaContext","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t2","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DetailLoanTima","exports","observer","props","_props$route3","_props$route3$params","_props$route3$params$","_data$paymentSchedule","_this","insets","useSafeAreaInsets","navigation","useNavigation","_useState","useState","_useState2","_slicedToArray2","isLoading","setIsLoading","_useState3","_useState4","data","setData","_useState5","_useState6","moneyCloseLoan","setMoneyCloseLoan","getData","_callee","_props$route","_props$route$params","_props$route$params$l","_regenerator","async","_context","prev","next","Api","getInstance","getPaymentScheduleTima","route","params","loan","id","then","response","kind","meta","errorCode","_response$data","_response$data2","_response$data2$meta","Alert","alert","errorMessage","catch","err","stop","Promise","getMoneyCloseLoan","_callee2","_props$route2","_props$route2$params","_props$route2$params$","_response$data3","_response$data3$data","_t","_context2","awrap","sent","totalMoneyCloseLoan","finish","useEffect","createElement","View","style","flex","backgroundColor","__self","__source","fileName","lineNumber","columnNumber","title","$header","TouchableOpacity","$backButton","onPress","goBack","IconBack","MText","fontSize","fontWeight","fontFamily","flexDirection","alignItems","paddingHorizontal","paddingVertical","justifyContent","codeId","marginTop","color","width","textAlign","ScrollView","paymentSchedule","map","item","index","key","borderBottomWidth","borderColor","border","daysPayable","formatDDMMYYY","formatMoney","payMoney","done","disabled","borderRadius","height","borderWidth","primary","_props$route4","_props$route4$params","_props$route4$params$","navigate","_props$route5","_props$route5$params","_props$route5$params$","isFullPayment","totalMoney","marginBottom","bottom","position","left"],"sourceRoot":"../../../../src","sources":["screens/detail-loan/DetailLoanTima.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,2 +0,0 @@
1
- export declare const DetailLoanTima: any;
2
- //# sourceMappingURL=DetailLoanTima.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DetailLoanTima.d.ts","sourceRoot":"","sources":["../../../../src/screens/detail-loan/DetailLoanTima.tsx"],"names":[],"mappings":"AAqBA,eAAO,MAAM,cAAc,KAmPzB,CAAC"}