esoftplay-event 0.0.0-a → 0.0.0-c

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 (179) hide show
  1. package/event/additional.tsx +4 -4
  2. package/event/additional_input.tsx +15 -15
  3. package/event/alert.tsx +32 -0
  4. package/event/artist.tsx +166 -0
  5. package/event/artist_detail.tsx +521 -0
  6. package/event/artist_detail_multi.tsx +548 -0
  7. package/event/badge.tsx +22 -0
  8. package/event/button.tsx +40 -0
  9. package/event/config.ts +4 -0
  10. package/event/countdown.tsx +5 -5
  11. package/event/countdown_base.tsx +83 -0
  12. package/event/counter_cashier.tsx +13 -13
  13. package/event/counter_cashier_report.tsx +6 -6
  14. package/event/counter_cashier_sell.tsx +7 -7
  15. package/event/counter_eo.tsx +21 -21
  16. package/event/counter_history.tsx +4 -4
  17. package/event/counter_lm.tsx +18 -18
  18. package/event/counter_report.tsx +4 -4
  19. package/event/counter_report_breakdown.tsx +2 -2
  20. package/event/counter_report_detail.tsx +15 -15
  21. package/event/counter_report_detail_list.tsx +4 -4
  22. package/event/counter_request.tsx +4 -4
  23. package/event/counter_request_detail.tsx +6 -6
  24. package/event/counter_send.tsx +9 -9
  25. package/event/counter_user_list.tsx +15 -15
  26. package/event/coupon.tsx +4 -4
  27. package/event/coupon_claim.tsx +4 -4
  28. package/event/coupon_claim_detail.tsx +8 -7
  29. package/event/coupon_claim_history.tsx +9 -9
  30. package/event/coupon_claim_reimburse.tsx +7 -8
  31. package/event/coupon_claim_reimburse_history.tsx +4 -4
  32. package/event/coupon_claim_reimburse_history_detail.tsx +4 -4
  33. package/event/coupon_claim_staff.tsx +10 -10
  34. package/event/coupon_detail.tsx +3 -3
  35. package/event/coupon_event_list.tsx +4 -4
  36. package/event/coupon_generate.tsx +4 -4
  37. package/event/coupon_generate_event.tsx +4 -4
  38. package/event/coupon_generate_list.tsx +2 -2
  39. package/event/date_picker.tsx +5 -5
  40. package/event/detail.tsx +12 -15
  41. package/event/entrance.tsx +17 -17
  42. package/event/entrance_again.tsx +22 -23
  43. package/event/entrance_failed.tsx +15 -15
  44. package/event/entrance_idcard.tsx +23 -23
  45. package/event/entrance_list.tsx +24 -24
  46. package/event/entrance_list_item.tsx +6 -6
  47. package/event/entrance_log.tsx +24 -24
  48. package/event/entrance_success.tsx +8 -8
  49. package/event/entrance_warning.tsx +14 -14
  50. package/event/exchange_reward.tsx +2 -2
  51. package/event/exchange_reward_result.tsx +7 -8
  52. package/event/exchange_ticket.tsx +11 -12
  53. package/event/exchange_ticket_list.tsx +10 -12
  54. package/event/exchange_ticket_result.tsx +11 -12
  55. package/event/exit.tsx +9 -9
  56. package/event/exit_failed.tsx +12 -12
  57. package/event/exit_list.tsx +15 -15
  58. package/event/exit_log.tsx +22 -22
  59. package/event/exit_success.tsx +8 -8
  60. package/event/exit_temporary.tsx +21 -21
  61. package/event/expander.tsx +36 -0
  62. package/event/fab.tsx +24 -0
  63. package/event/firebase_socket.ts +365 -0
  64. package/event/hall_in.tsx +13 -13
  65. package/event/hall_in_failed.tsx +22 -22
  66. package/event/hall_in_list.tsx +17 -17
  67. package/event/hall_in_log.tsx +24 -24
  68. package/event/hall_in_success.tsx +8 -8
  69. package/event/hall_out.tsx +13 -13
  70. package/event/hall_out_failed.tsx +11 -11
  71. package/event/hall_out_list.tsx +17 -17
  72. package/event/hall_out_log.tsx +24 -24
  73. package/event/hall_out_success.tsx +8 -8
  74. package/event/header.tsx +119 -0
  75. package/event/header_home.tsx +108 -0
  76. package/event/index.tsx +270 -0
  77. package/event/input_rectangle.tsx +208 -0
  78. package/event/item.tsx +40 -0
  79. package/event/label_input.tsx +23 -0
  80. package/event/list.tsx +20 -21
  81. package/event/list_filter.tsx +12 -13
  82. package/event/list_item.tsx +76 -0
  83. package/event/list_item2.tsx +78 -0
  84. package/event/loading_page.tsx +248 -0
  85. package/event/log.tsx +54 -54
  86. package/event/message.tsx +32 -0
  87. package/event/notice.tsx +41 -0
  88. package/event/order.tsx +323 -0
  89. package/event/order_detail.tsx +813 -0
  90. package/event/order_detail_payment.tsx +153 -0
  91. package/event/order_detail_upgrade.tsx +164 -0
  92. package/event/order_detail_upgrade_button.tsx +60 -0
  93. package/event/order_detail_upgrade_payment.tsx +221 -0
  94. package/event/order_detail_visitor.tsx +196 -0
  95. package/event/order_detail_waiting.tsx +520 -0
  96. package/event/order_history.tsx +101 -0
  97. package/event/order_item.tsx +118 -0
  98. package/event/order_lottery.tsx +172 -0
  99. package/event/order_reschedule.tsx +439 -0
  100. package/event/order_reschedule_list.tsx +85 -0
  101. package/event/order_share_to.tsx +219 -0
  102. package/event/order_share_to_detail.tsx +181 -0
  103. package/event/order_status.tsx +66 -0
  104. package/event/order_waiting.tsx +143 -0
  105. package/event/pending_trx.tsx +50 -0
  106. package/event/qc_idcard.tsx +12 -12
  107. package/event/qc_idcard_failed.tsx +4 -4
  108. package/event/qc_idcard_success.tsx +4 -4
  109. package/event/qr_bg.tsx +22 -0
  110. package/event/queue_out.tsx +3 -3
  111. package/event/queue_pricing.tsx +2 -3
  112. package/event/rating.tsx +49 -0
  113. package/event/rating_mini.tsx +35 -0
  114. package/event/refresh_button.tsx +40 -0
  115. package/event/review.tsx +3 -3
  116. package/event/review_add.tsx +8 -8
  117. package/event/review_detail.tsx +4 -4
  118. package/event/review_item.tsx +4 -4
  119. package/event/scan_item.tsx +2 -2
  120. package/event/schedule.tsx +8 -9
  121. package/event/seat.tsx +16 -18
  122. package/event/seat_autopick.tsx +4 -4
  123. package/event/seat_map.tsx +4 -4
  124. package/event/seat_map_test.tsx +2 -2
  125. package/event/section.tsx +35 -0
  126. package/event/section_menu.tsx +40 -0
  127. package/event/sheet.tsx +73 -0
  128. package/event/slider.tsx +46 -0
  129. package/event/step.tsx +29 -0
  130. package/event/ticket_list.tsx +15 -16
  131. package/event/ticket_list2.tsx +16 -17
  132. package/event/tms.tsx +4 -4
  133. package/event/tms_add.tsx +7 -8
  134. package/event/tms_add_result.tsx +4 -4
  135. package/event/tms_check_code.tsx +160 -0
  136. package/event/tms_check_ticket.tsx +72 -0
  137. package/event/tms_check_ticket_result.tsx +384 -0
  138. package/event/tms_dashboard.tsx +7 -7
  139. package/event/tms_event_list.tsx +46 -43
  140. package/event/tms_gate.tsx +96 -0
  141. package/event/tms_home.tsx +639 -0
  142. package/event/tms_idcard.tsx +203 -0
  143. package/event/tms_in.tsx +215 -0
  144. package/event/tms_in_again.tsx +199 -0
  145. package/event/tms_in_failed.tsx +190 -0
  146. package/event/tms_in_hall.tsx +148 -0
  147. package/event/tms_in_hall_failed.tsx +270 -0
  148. package/event/tms_in_hall_list.tsx +222 -0
  149. package/event/tms_in_hall_log.tsx +134 -0
  150. package/event/tms_in_hall_success.tsx +132 -0
  151. package/event/tms_in_list.tsx +264 -0
  152. package/event/tms_in_log.tsx +130 -0
  153. package/event/tms_in_success.tsx +155 -0
  154. package/event/tms_in_warning.tsx +91 -0
  155. package/event/tms_list_item.tsx +88 -0
  156. package/event/tms_log.tsx +435 -0
  157. package/event/tms_out.tsx +91 -0
  158. package/event/tms_out_failed.tsx +135 -0
  159. package/event/tms_out_hall.tsx +143 -0
  160. package/event/tms_out_hall_failed.tsx +133 -0
  161. package/event/tms_out_hall_list.tsx +215 -0
  162. package/event/tms_out_hall_log.tsx +133 -0
  163. package/event/tms_out_hall_success.tsx +130 -0
  164. package/event/tms_out_list.tsx +118 -0
  165. package/event/tms_out_log.tsx +131 -0
  166. package/event/tms_out_success.tsx +143 -0
  167. package/event/tms_out_temporary.tsx +226 -0
  168. package/event/toggle.tsx +30 -0
  169. package/event/transaction.ts +34 -0
  170. package/event/turnstile_event_gate.tsx +2 -2
  171. package/event/turnstile_event_list.tsx +4 -4
  172. package/event/turnstile_event_ticket.tsx +4 -4
  173. package/event/turnstile_settings.tsx +11 -11
  174. package/event/turnstile_settings_otp.tsx +4 -4
  175. package/event/turnstile_settings_status.tsx +2 -2
  176. package/event/voucher.tsx +9 -10
  177. package/event/voucher_multi.tsx +4 -5
  178. package/id.json +644 -0
  179. package/package.json +1 -1
@@ -0,0 +1,384 @@
1
+ // withHooks
2
+ import { useEffect } from 'react';
3
+
4
+ import { EventHeader } from 'esoftplay/cache/event/header/import';
5
+ import { LibCurl } from 'esoftplay/cache/lib/curl/import';
6
+ import { LibCurl_view } from 'esoftplay/cache/lib/curl_view/import';
7
+ import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
8
+ import { LibIcon } from 'esoftplay/cache/lib/icon/import';
9
+ import { LibLoading } from 'esoftplay/cache/lib/loading/import';
10
+ import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
11
+ import { LibObject } from 'esoftplay/cache/lib/object/import';
12
+ import { LibPicture } from 'esoftplay/cache/lib/picture/import';
13
+ import { LibProgress } from 'esoftplay/cache/lib/progress/import';
14
+ import { LibStyle } from 'esoftplay/cache/lib/style/import';
15
+ import { LibUtils } from 'esoftplay/cache/lib/utils/import';
16
+ import { UseCondition } from 'esoftplay/cache/use/condition/import';
17
+ import esp from 'esoftplay/esp';
18
+ import useSafeState from 'esoftplay/state';
19
+ import React from 'react';
20
+ import { Pressable, RefreshControl, ScrollView, Text, TouchableOpacity, View } from 'react-native';
21
+
22
+
23
+ export interface EventTms_check_ticket_resultArgs {
24
+
25
+ }
26
+ export interface EventTms_check_ticket_resultProps {
27
+
28
+ }
29
+ export default function m(props: EventTms_check_ticket_resultProps): any {
30
+ const { qr, event_id, selectGate } = LibNavigation.getArgsAll(props)
31
+ const [data, setData] = useSafeState<any>()
32
+ const [refreshing, setRefreshing] = useSafeState<boolean>(false);
33
+
34
+ useEffect(() => {
35
+ loadData()
36
+ }, [])
37
+
38
+ function loadData() {
39
+ var post = {
40
+ user_qr: encodeURIComponent(qr),
41
+ event_id: event_id,
42
+ gate_id: selectGate?.id
43
+ }
44
+ LibProgress.show(esp.lang("visitor/index", "waiting_msg"))
45
+ new LibCurl('event_tms_check', post, (res, msg) => {
46
+ // esp.log(res);
47
+ let a = res?.bookings?.map((item: any) => ({
48
+ ...item,
49
+ show_history_ticket: false,
50
+ show_history_hall: false,
51
+ show_history_share: false,
52
+ show_additional_info: false
53
+ }))
54
+ let b = {
55
+ ...res,
56
+ bookings: a
57
+ }
58
+ esp.log(b);
59
+ setData(b)
60
+ setRefreshing(false)
61
+ LibProgress.hide();
62
+ }, (error) => {
63
+ LibProgress.hide();
64
+ setRefreshing(false)
65
+ LibDialog.warningConfirm(esp.lang("event/tms_check_ticket_result", "error"), error?.message, esp.lang("event/tms_check_ticket_result", "back"), () => LibNavigation.back(), "", () => { })
66
+ }, 1)
67
+ }
68
+
69
+ function onRefresh() {
70
+ setRefreshing(true)
71
+ loadData()
72
+ }
73
+
74
+ function renderTmsIn(item: any, i: number) {
75
+ return (
76
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
77
+ {
78
+ item.tms_name != "" &&
79
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item.tms_name}</Text>
80
+ }
81
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.scanned_in != "0000-00-00 00:00:00" ? LibUtils.moment(item.scanned_in).serverFormat("DD MMM HH:mm:ss ") : esp.lang("event/tms_check_ticket_result", "not_scan_in")}</Text>
82
+
83
+ </View>
84
+ )
85
+ }
86
+
87
+ function renderTmsOut(item: any, i: number) {
88
+ return (
89
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
90
+ {
91
+ item.tms_name_out != null && item.tms_name_out != "" &&
92
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item.tms_name_out}</Text>
93
+ }
94
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.scanned_out != "0000-00-00 00:00:00" ? LibUtils.moment(item.scanned_out).serverFormat("DD MMM HH:mm:ss ") : esp.lang("event/tms_check_ticket_result", "not_scan_out")}</Text>
95
+ </View>
96
+ )
97
+ }
98
+
99
+ function renderTempOut(item: any, i: number) {
100
+ return (
101
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
102
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item.hasOwnProperty("scanned_out_temporary") && item?.scanned_out_temporary != "0000-00-00 00:00:00" ? LibUtils.moment(item.scanned_out_temporary).serverFormat("DD MMM HH:mm:ss ") : "Belum pernah scan keluar sementara"}</Text>
103
+ </View>
104
+ )
105
+ }
106
+
107
+ function renderGate(item: any, i: number) {
108
+ return (
109
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
110
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.gate_name == "" ? "-" : item.gate_name}</Text>
111
+ </View>
112
+ )
113
+ }
114
+
115
+ function renderHallIn(item: any, i: number) {
116
+ return (
117
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
118
+ {
119
+ item.tms_name != "" &&
120
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item.tms_name}</Text>
121
+ }
122
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.scanned_in != "0000-00-00 00:00:00" ? LibUtils.moment(item.scanned_in).serverFormat("DD MMM HH:mm:ss ") : esp.lang("event/tms_check_ticket_result", "not_scan_in")}</Text>
123
+
124
+ </View>
125
+ )
126
+ }
127
+
128
+ function renderHallOut(item: any, i: number) {
129
+ return (
130
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
131
+ {
132
+ item.tms_name_out != "" &&
133
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item.tms_name_out}</Text>
134
+ }
135
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.scanned_out != "0000-00-00 00:00:00" ? LibUtils.moment(item.scanned_out).serverFormat("DD MMM HH:mm:ss ") : esp.lang("event/tms_check_ticket_result", "not_scan_out")}</Text>
136
+
137
+ </View>
138
+ )
139
+ }
140
+
141
+ function renderHall(item: any, i: number) {
142
+ return (
143
+ <View key={i} style={{ borderRadius: 5, margin: 2, padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
144
+ <Text allowFontScaling={false} style={{ paddingHorizontal: 5, fontSize: 14 }}>{item?.hall_name == "" ? "-" : item.hall_name}</Text>
145
+ </View>
146
+ )
147
+ }
148
+
149
+ function renderShared(item: any, i: number) {
150
+ return (
151
+ <View key={i} style={{ borderRadius: 5, margin: 2, flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center', padding: 5, backgroundColor: i % 2 ? '#fff' : LibStyle.colorGrey, borderBottomWidth: 1, borderBottomColor: LibStyle.colorBgGrey }}>
152
+ <Text allowFontScaling={false} numberOfLines={2} ellipsizeMode='tail' style={{ flex: 1, paddingHorizontal: 5, fontSize: 14 }}>{item.email}</Text>
153
+ <View style={{ width: 1, height: 15, backgroundColor: LibStyle.colorBrownLight }} />
154
+ <Text allowFontScaling={false} style={{ textAlign: 'center', flex: 1, paddingHorizontal: 5, fontSize: 14 }}>{LibUtils.number(item?.qty)}</Text>
155
+ </View>
156
+ )
157
+ }
158
+
159
+ function resetTicket(url: string) {
160
+ LibDialog.confirm(esp.lang("event/tms_check_ticket_result", "title"), esp.lang("event/tms_check_ticket_result", "message"), esp.lang("event/tms_check_ticket_result", "confirm"), () => {
161
+ LibProgress.show(esp.lang("visitor/index", "waiting_msg"))
162
+ new LibCurl().custom(url + "&t=" + new Date().getTime(), null, (res, msg) => {
163
+ LibProgress.hide()
164
+ if (res?.ok == 1) {
165
+ LibDialog.confirm(esp.lang("event/tms_check_ticket_result", "info"), res?.message, "Ok", () => {
166
+ LibNavigation.back()
167
+ }, "", () => { })
168
+ } else if (res?.ok == 0) {
169
+ LibDialog.warning(esp.lang("event/tms_check_ticket_result", "error_reset"), res?.message)
170
+ }
171
+
172
+ }, 1)
173
+ }, esp.lang("event/tms_check_ticket_result", "cancel"), () => { })
174
+ }
175
+
176
+ return (
177
+ <View style={{ flex: 1, backgroundColor: '#fff' }}>
178
+ <EventHeader title={qr} subtitle={data ? data?.event_name : ''} />
179
+ <ScrollView refreshControl={<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />}>
180
+ {
181
+ data?.bookings?.length > 0 && data?.bookings?.map((item: any, i: number) => {
182
+ return (
183
+ <View key={i} style={{ margin: 10, marginBottom: 0, backgroundColor: LibStyle.colorBgGrey, borderRadius: 10, padding: 10 }}>
184
+ {/* header */}
185
+ <View style={{ flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center' }}>
186
+ <Text allowFontScaling={false} numberOfLines={2} ellipsizeMode='tail' style={{ fontSize: 16, fontWeight: 'bold', flex: 1 }}>{item?.tickets?.[0]?.price_name || item?.price_name}</Text>
187
+ {
188
+ data?.allowed_reset == 1 && item?.qty_used > 0 &&
189
+ <Pressable onPress={() => { resetTicket(item?.reset) }} style={{ ...LibStyle.elevation(3), justifyContent: 'center', marginLeft: 10, paddingVertical: 5, paddingHorizontal: 10, backgroundColor: LibStyle.colorRed, borderRadius: 5 }}>
190
+ <Text allowFontScaling={false} style={{ fontWeight: 'bold', color: '#fff' }}>{esp.lang("event/tms_check_ticket_result", "reset")}</Text>
191
+ </Pressable>
192
+ }
193
+ </View>
194
+
195
+ <View style={{ marginTop: 10, backgroundColor: '#fff', borderRadius: 10, paddingHorizontal: 10 }}>
196
+ <View style={{ flexDirection: 'row', alignContent: 'center', alignItems: 'center', justifyContent: 'space-between' }}>
197
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{item?.code}</Text>
198
+
199
+ <View style={{ flexDirection: 'row', alignContent: 'center', alignItems: 'center' }}>
200
+ <Text allowFontScaling={false} style={{ marginLeft: 20, fontSize: 14, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, color: "#484848" }}>{"("}</Text>
201
+ <Text allowFontScaling={false} style={{ marginLeft: 4, fontSize: 30, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, color: "#484848" }}>{item?.qty}</Text>
202
+ <Text allowFontScaling={false} style={{ marginLeft: 4, fontSize: 14, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, color: "#484848" }}>{esp.lang("event/tms_check_ticket_result", "ticket")}{")"}</Text>
203
+ </View>
204
+ </View>
205
+
206
+ <UseCondition if={Boolean(item?.exhibitor?.title)} >
207
+ <Text allowFontScaling={false} style={{ fontSize: 12 }}>Exhibitor : {item?.exhibitor?.title}</Text>
208
+ </UseCondition>
209
+ <UseCondition if={Boolean(item?.exhibitor?.code)} >
210
+ <Text allowFontScaling={false} style={{ fontSize: 10 }}>CODE : {item?.exhibitor?.code}</Text>
211
+ </UseCondition>
212
+
213
+ <View style={{ flexDirection: 'row', alignItems: 'center', alignContent: 'center', marginTop: 5, marginBottom: 10 }}>
214
+ <LibIcon name='calendar-blank' size={18} style={{ marginRight: 5 }} />
215
+ {
216
+ item?.ondate == "0000-00-00" ?
217
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{esp.lang("event/tms_check_ticket_result", "all_date")}</Text>
218
+ :
219
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{LibUtils.moment(item?.ondate).localeFormat('DD MMMM YYYY')}</Text>
220
+ }
221
+ </View>
222
+ <View style={{ marginBottom: 10, flexDirection: 'row', flexWrap: 'wrap', marginLeft: -10 }}>
223
+ {
224
+ item?.tickets?.map((x: any, i: number) => {
225
+ if (x.seat_name != "") {
226
+ return (
227
+ <View key={i} style={{ marginLeft: 10, paddingVertical: 5, marginBottom: 7, paddingHorizontal: 7, borderWidth: 1, borderColor: '#000', backgroundColor: '#fff', borderRadius: 5 }}>
228
+ <Text allowFontScaling={false} style={{ fontWeight: 'bold', fontSize: 20, color: '#000' }}>{x.seat_name}</Text>
229
+ </View>
230
+
231
+ )
232
+ } else {
233
+ return null
234
+ }
235
+ })
236
+ }
237
+ </View>
238
+ <Text allowFontScaling={false} style={{ fontSize: 12, fontWeight: 'bold', color: item.is_available == 0 ? LibStyle.colorRed : LibStyle.colorGreen }}>{item.is_available == 0 ? "Not Available" : "Available"}</Text>
239
+ <View style={{ marginBottom: 10, flexDirection: 'row', alignContent: 'center', alignItems: 'center', justifyContent: 'space-between' }}>
240
+ <View style={{ flexDirection: 'row', justifyContent: 'space-between', flex: 1 }}>
241
+ <TouchableOpacity onPress={() => {
242
+ setData(LibObject.set(data, item.show_history_ticket ? false : true)("bookings", i, "show_history_ticket"))
243
+ }} style={{ flexDirection: 'row', alignContent: 'center', alignItems: 'center' }}>
244
+ <Text allowFontScaling={false} style={{ fontSize: 12, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, color: item?.qty_used == 0 ? "#484848" : LibStyle.colorBlue, textDecorationStyle: 'solid', textDecorationLine: item?.qty_used == 0 ? "none" : 'underline' }}>{item?.qty_used == 0 ? esp.lang("event/order", "have_not_been_used") : item?.qty_used + " " + esp.lang("event/order_detail", "used")}</Text>
245
+ </TouchableOpacity>
246
+ {
247
+ item?.tickets_share?.length > 0 &&
248
+ <TouchableOpacity onPress={() => {
249
+ setData(LibObject.set(data, item.show_history_share ? false : true)("bookings", i, "show_history_share"))
250
+ }}>
251
+ <Text allowFontScaling={false} style={{ fontSize: 12, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, color: LibStyle.colorBlue, textDecorationStyle: 'solid', textDecorationLine: 'underline' }}>{item?.tickets_share.reduce((acc: any, { qty = 0 }: any) => acc + qty, 0) + " Tiket dishare"}</Text>
252
+ </TouchableOpacity>
253
+ }
254
+ </View>
255
+ </View>
256
+
257
+ </View>
258
+
259
+ <View style={{ marginTop: 10, backgroundColor: '#fff', borderRadius: 10, paddingHorizontal: 10, padding: 10, }}>
260
+ <TouchableOpacity onPress={() => setData(LibObject.set(data, item.show_additional_info ? false : true)("bookings", i, "show_additional_info"))} style={{ flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center' }}>
261
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{"Additional Info"}</Text>
262
+ <LibIcon name={item?.show_additional_info ? 'chevron-up' : 'chevron-down'} />
263
+ </TouchableOpacity >
264
+ {
265
+ item.show_additional_info &&
266
+ <LibCurl_view
267
+ url='event_tms_check_additional'
268
+ post={{
269
+ event_id: event_id,
270
+ code: item.code
271
+ }}
272
+ onSuccess={(res, msg) => {
273
+ return (
274
+ <View>
275
+ {
276
+ res?.map((item: any, i: number) => {
277
+ return (
278
+ <View key={i} style={{ marginTop: 7, paddingHorizontal: 10, paddingVertical: 5, borderRadius: 5, backgroundColor: LibStyle.colorBgGrey }}>
279
+ <Text allowFontScaling={false} numberOfLines={2} ellipsizeMode='tail' style={{ fontSize: 14, color: "#009688", fontWeight: 'bold', letterSpacing: 0.5, marginBottom: 5 }}>{item.question}</Text>
280
+ <Text allowFontScaling={false} style={{ fontSize: 12, color: '#000', marginRight: 6 }}>{item.answer}</Text>
281
+ </View>
282
+ )
283
+ })
284
+ }
285
+ </View>
286
+ )
287
+ }}
288
+ onLoading={<LibLoading />}
289
+ onError={(err: any) => {
290
+ return (
291
+ <View style={{ justifyContent: 'center', alignItems: 'center', padding: 10 }}>
292
+ <LibPicture source={esp.assets('img_failed_msg.png')} style={{ width: LibStyle.width / 3, height: 100, resizeMode: 'contain' }} />
293
+ <Text allowFontScaling={false} style={{ flexWrap: 'wrap', fontSize: 14, fontWeight: "bold", marginBottom: 5, color: "#4a4a4a", textAlign: "center" }}>{err?.message}</Text>
294
+ </View>
295
+ // <EventMessage message={err?.message} />
296
+ )
297
+ }}
298
+ />
299
+ }
300
+ </View>
301
+
302
+ <View style={{ marginTop: 10, backgroundColor: '#fff', borderRadius: 10, paddingHorizontal: 10, padding: 10, }}>
303
+ <TouchableOpacity onPress={() => setData(LibObject.set(data, item.show_history_ticket ? false : true)("bookings", i, "show_history_ticket"))} style={{ flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center' }}>
304
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{esp.lang("event/tms_check_ticket_result", "history_ticket")}</Text>
305
+ <LibIcon name={item?.show_history_ticket ? 'chevron-up' : 'chevron-down'} />
306
+ </TouchableOpacity >
307
+ {
308
+ item.show_history_ticket &&
309
+ <View style={{ marginTop: 10, }}>
310
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#37c2d0", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
311
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "tms_in")}</Text>
312
+ {item?.tickets?.map(renderTmsIn)}
313
+ </View>
314
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#37c2d0", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
315
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "tms_out")}</Text>
316
+ {item?.tickets?.map(renderTmsOut)}
317
+ </View>
318
+
319
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#37c2d0", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
320
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "scan_temp_out")}</Text>
321
+ {item?.tickets?.map(renderTempOut)}
322
+ </View>
323
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#37c2d0", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
324
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "gate_title")}</Text>
325
+ {item?.tickets?.map(renderGate)}
326
+ </View>
327
+ </View>
328
+ }
329
+ </View>
330
+
331
+ {
332
+ item.hall_history?.length > 0 &&
333
+ <View style={{ marginTop: 10, backgroundColor: '#fff', borderRadius: 10, paddingHorizontal: 10, padding: 10, }}>
334
+ <TouchableOpacity onPress={() => setData(LibObject.set(data, item.show_history_hall ? false : true)("bookings", i, "show_history_hall"))} style={{ flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center' }}>
335
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{esp.lang("event/tms_check_ticket_result", "history_hall")}</Text>
336
+ <LibIcon name={item.show_history_hall ? 'chevron-up' : 'chevron-down'} />
337
+ </TouchableOpacity >
338
+ {
339
+ item.show_history_hall &&
340
+ <View style={{ marginTop: 10, }}>
341
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#FFC523", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
342
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "hall_in")}</Text>
343
+ {item?.hall_history?.map(renderHallIn)}
344
+ </View>
345
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#FFC523", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
346
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "hall_out")}</Text>
347
+ {item?.hall_history?.map(renderHallOut)}
348
+ </View>
349
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#FFC523", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
350
+ <Text allowFontScaling={false} style={{ marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "hall")}</Text>
351
+ {item?.hall_history?.map(renderHall)}
352
+ </View>
353
+ </View>
354
+ }
355
+ </View>
356
+ }
357
+ {
358
+ item?.tickets_share?.length > 0 &&
359
+ <View style={{ marginTop: 10, backgroundColor: '#fff', borderRadius: 10, paddingHorizontal: 10, padding: 10, }}>
360
+ <TouchableOpacity onPress={() => setData(LibObject.set(data, item.show_history_share ? false : true)("bookings", i, "show_history_share"))} style={{ flexDirection: 'row', justifyContent: 'space-between', alignContent: 'center', alignItems: 'center' }}>
361
+ <Text allowFontScaling={false} style={{ fontSize: 14 }}>{esp.lang("event/tms_check_ticket_result", "history_share_ticket")}</Text>
362
+ <LibIcon name={item.show_history_share ? 'chevron-up' : 'chevron-down'} />
363
+ </TouchableOpacity >
364
+ {
365
+ item.show_history_share &&
366
+ <View style={{ marginTop: 10, }}>
367
+ <View style={{ marginBottom: 5, flex: 1, padding: 10, backgroundColor: "#007BFF", borderWidth: 1, borderColor: LibStyle.colorBgGrey, borderRadius: 10 }}>
368
+ <Text allowFontScaling={false} style={{ color: '#fff', marginBottom: 5, fontSize: 13, fontWeight: 'bold' }}>{esp.lang("event/tms_check_ticket_result", "shared_to")}</Text>
369
+ {item?.tickets_share?.map(renderShared)}
370
+ </View>
371
+ </View>
372
+ }
373
+ </View>
374
+ }
375
+
376
+ </View>
377
+ )
378
+ })
379
+ }
380
+
381
+ </ScrollView>
382
+ </View>
383
+ )
384
+ }
@@ -1,5 +1,5 @@
1
1
  // withHooks
2
- import { ComponentHeader } from 'esoftplay/cache/component/header/import';
2
+ import { EventHeader } from 'esoftplay/cache/event/header/import';
3
3
  import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
4
4
  import { LibPicture } from 'esoftplay/cache/lib/picture/import';
5
5
  import { LibStyle } from 'esoftplay/cache/lib/style/import';
@@ -26,8 +26,8 @@ export default function m(props: EventTms_dashboardProps): any {
26
26
  active: 1,
27
27
  color_accent: '#FFC523',
28
28
  onPress: () => {
29
- LibNavigation.navigateForResult('user/profile_tms_list', { data: user?.is_tms }).then((value) => {
30
- LibNavigation.navigate('bigbang/gate', { is_scanner: value, typeScanner: 'tms' })
29
+ LibNavigation.navigateForResult('event/tms_event_list', { data: user?.is_tms }).then((value) => {
30
+ LibNavigation.navigate('event/tms_gate', { is_scanner: value, typeScanner: 'tms' })
31
31
  })
32
32
  }
33
33
  },
@@ -38,8 +38,8 @@ export default function m(props: EventTms_dashboardProps): any {
38
38
  active: 1,
39
39
  color_accent: '#01D0FB',
40
40
  onPress: () => {
41
- LibNavigation.navigateForResult('user/profile_tms_list', { data: user?.is_tms }).then((value) => {
42
- LibNavigation.navigate('bigbang/gate', { is_scanner: value, typeScanner: 'hall' })
41
+ LibNavigation.navigateForResult('event/tms_event_list', { data: user?.is_tms }).then((value) => {
42
+ LibNavigation.navigate('event/tms_gate', { is_scanner: value, typeScanner: 'hall' })
43
43
  })
44
44
  }
45
45
  },
@@ -50,7 +50,7 @@ export default function m(props: EventTms_dashboardProps): any {
50
50
  active: 1,
51
51
  color_accent: '#D0004F',
52
52
  onPress: () => {
53
- LibNavigation.navigateForResult('user/profile_tms_list', { data: user?.is_tms }).then((value) => {
53
+ LibNavigation.navigateForResult('event/tms_event_list', { data: user?.is_tms }).then((value) => {
54
54
  LibNavigation.navigate('event/exchange_ticket', { dataEvent: value })
55
55
  })
56
56
  }
@@ -76,7 +76,7 @@ export default function m(props: EventTms_dashboardProps): any {
76
76
 
77
77
  return (
78
78
  <View style={{ flex: 1, backgroundColor: LibStyle.colorBgGrey }}>
79
- <ComponentHeader title={'Dashboard TMS'} />
79
+ <EventHeader title={'Dashboard TMS'} />
80
80
 
81
81
  <ScrollView>
82
82
  {
@@ -1,66 +1,69 @@
1
1
  // withHooks
2
-
3
- import { ComponentHeader } from 'esoftplay/cache/component/header/import';
2
+ import { applyStyle } from 'esoftplay';
3
+ import { EventHeader } from 'esoftplay/cache/event/header/import';
4
+ import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
5
+ import { LibLoading } from 'esoftplay/cache/lib/loading/import';
4
6
  import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
5
7
  import { LibPicture } from 'esoftplay/cache/lib/picture/import';
8
+ import { LibStyle } from 'esoftplay/cache/lib/style/import';
6
9
  import { LibUtils } from 'esoftplay/cache/lib/utils/import';
7
10
  import esp from 'esoftplay/esp';
11
+ import { useEffect } from 'react';
12
+
8
13
  import React from 'react';
9
14
  import { ScrollView, Text, TouchableOpacity, View } from 'react-native';
10
15
 
11
16
 
12
- export interface EventTms_event_listArgs {
13
-
14
- }
15
17
  export interface EventTms_event_listProps {
16
18
 
17
19
  }
18
20
  export default function m(props: EventTms_event_listProps): any {
19
- const { is_eo } = LibNavigation.getArgsAll(props)
21
+ const { data } = LibNavigation.getArgsAll(props)
20
22
 
21
- if (is_eo?.length == 1) {
22
- LibNavigation.back()
23
- LibNavigation.navigate('event/tms', { dataEO: is_eo[0] })
24
- }
23
+ useEffect(() => {
24
+ if (data?.length == 1) {
25
+ LibNavigation.sendBackResult(data[0])
26
+ }
27
+ return () => LibNavigation.cancelBackResult(LibNavigation.getResultKey(props))
28
+ }, [])
25
29
 
26
30
  function renderItem(item: any, i: number) {
31
+ const widthImg = LibStyle?.width - 20
32
+ const sliderHeight = widthImg / 1920 * 1080
33
+
27
34
  return (
28
35
  <TouchableOpacity onPress={() => {
29
- LibNavigation.navigate('event/tms', { dataEO: item })
30
- }} key={i} >
31
- <View style={styleId_8oX1o}>
32
- {
33
- item.image != "" && item.image != null ?
34
- <LibPicture source={{ uri: item.image }} style={styleId_P1YdJ} />
35
- :
36
- <View style={styleId_Z1FsLgN} />
37
- }
38
- <View style={styleId_Z1B8TCk}>
39
- <Text allowFontScaling={false} style={styleId_Z2mC6aP}>{item.name || ""}</Text>
40
- <Text allowFontScaling={false} style={styleId_Z1R4k1n} >{LibUtils.getDateRange(item.start_date, item.end_date, esp.lang("event/tms_event_list", "until"))}</Text>
41
- </View>
36
+ LibNavigation.sendBackResult(item)
37
+ }} key={i} style={{ margin: 10, marginBottom: 0, backgroundColor: '#fff', borderRadius: 10 }}>
38
+ <View style={{ ...LibStyle.elevation(2), backgroundColor: '#fff', borderRadius: 10 }}>
39
+ <LibPicture source={{ uri: item.image }} style={{ width: widthImg, height: sliderHeight, borderRadius: 10 }} />
40
+ </View>
41
+ <View style={{ padding: 10 }}>
42
+ <Text allowFontScaling={false} numberOfLines={2} ellipsizeMode='tail' style={applyStyle({ fontSize: 18 })}>{item.name || ""}</Text>
43
+ <Text allowFontScaling={false} style={applyStyle({ fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, color: "#f39c12" })} >{LibUtils.getDateRange(item.start_date, item.end_date, esp.lang("event/tms_event_list", "until"))}</Text>
42
44
  </View>
43
45
  </TouchableOpacity>
44
-
45
46
  )
46
47
  }
47
48
 
48
- return (
49
- <View style={{ flex: 1 }}>
50
- <ComponentHeader title={esp.lang("user/profile_tms_list", "title_list_event")} />
51
- <ScrollView showsVerticalScrollIndicator={false} >
52
- {/* untuk scanner */}
53
- {
54
- is_eo?.map?.(renderItem)
55
- }
56
- </ScrollView>
57
- </View>
58
- )
59
- }
60
-
61
- const styleId_8oX1o: any = { marginTop: 10, backgroundColor: 'white', marginHorizontal: 15, flexDirection: 'row', padding: 10, alignItems: 'center', justifyContent: 'center' }
62
- const styleId_P1YdJ: any = { borderRadius: 30, width: 60, height: 60 }
63
- const styleId_Z1FsLgN: any = { borderRadius: 30, width: 60, height: 60, backgroundColor: 'grey' }
64
- const styleId_Z1B8TCk: any = { paddingLeft: 10, paddingRight: 10, flex: 1 }
65
- const styleId_Z2mC6aP: any = { fontSize: 16 }
66
- const styleId_Z1R4k1n: any = { paddingTop: 10, fontFamily: "Arial", fontSize: 12, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, color: "#f39c12" }
49
+ if (data?.length == 0) {
50
+ LibDialog.warning("Oops", "Daftar event kosong.")
51
+ LibNavigation.back()
52
+ } else if (data?.length == 1) {
53
+ return (
54
+ <LibLoading />
55
+ )
56
+ } else {
57
+ return (
58
+ <View style={{ flex: 1, backgroundColor: LibStyle.colorBgGrey }}>
59
+ <EventHeader title={esp.lang("event/tms_event_list", "title_list_event")} />
60
+ <ScrollView showsVerticalScrollIndicator={false} >
61
+ {/* untuk scanner */}
62
+ {
63
+ data?.map(renderItem)
64
+ }
65
+ </ScrollView>
66
+ </View>
67
+ )
68
+ }
69
+ }
@@ -0,0 +1,96 @@
1
+ // withHooks
2
+ import { EventHeader } from 'esoftplay/cache/event/header/import';
3
+ import { LibCurl } from 'esoftplay/cache/lib/curl/import';
4
+ import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
5
+ import { LibIcon } from 'esoftplay/cache/lib/icon/import';
6
+ import { LibLoading } from 'esoftplay/cache/lib/loading/import';
7
+ import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
8
+ import { LibStyle } from 'esoftplay/cache/lib/style/import';
9
+ import esp from 'esoftplay/esp';
10
+ import useSafeState from 'esoftplay/state';
11
+
12
+ import React, { useEffect } from 'react';
13
+ import { Pressable, ScrollView, Text, View } from 'react-native';
14
+
15
+
16
+ export interface EventTms_gateArgs {
17
+
18
+ }
19
+ export interface EventTms_gateProps {
20
+
21
+ }
22
+ export default function m(props: EventTms_gateProps): any {
23
+ const { is_scanner, typeScanner } = LibNavigation.getArgsAll(props)
24
+
25
+ const [selectGate, setSelectGate] = useSafeState<any>()
26
+ const [gates, setGates] = useSafeState<any>()
27
+
28
+ useEffect(() => {
29
+ if (typeScanner == "tms") {
30
+ loadDataGates()
31
+ } else {
32
+ loadDataHall()
33
+ }
34
+ }, [])
35
+
36
+ function loadDataGates() {
37
+ let post = {
38
+ event_id: is_scanner?.id
39
+ }
40
+ new LibCurl('event_gate', post, (res, msg) => {
41
+ setGates(res)
42
+ if (res.length == 1) {
43
+ LibNavigation.back()
44
+ LibNavigation.navigate('event/tms_home', { is_scanner: is_scanner, selectedGate: res[0], typeScanner: typeScanner })
45
+ }
46
+ }, (error) => {
47
+ LibDialog.warning(esp.lang("event/tms_gate", "warning_load"), error?.message)
48
+ LibNavigation.back()
49
+ }, 1)
50
+ }
51
+
52
+ function loadDataHall() {
53
+ let post = {
54
+ event_id: is_scanner?.id
55
+ }
56
+ new LibCurl('event_hall', post, (res, msg) => {
57
+ setGates(res)
58
+ if (res.length == 1) {
59
+ LibNavigation.back()
60
+ LibNavigation.navigate('event/tms_home', { is_scanner: is_scanner, selectedGate: res[0], typeScanner: typeScanner })
61
+ }
62
+ }, (error) => {
63
+ LibDialog.warning(esp.lang("event/tms_gate", "warning_loadhall"), error?.message)
64
+ LibNavigation.back()
65
+ }, 1)
66
+ }
67
+
68
+ function renderGates(item: any, i: number) {
69
+ let _selectGate = item.id == selectGate?.id
70
+ return (
71
+ <Pressable key={i} onPress={() => {
72
+ setSelectGate(item)
73
+ LibNavigation.navigate('event/tms_home', { is_scanner: is_scanner, selectedGate: item, typeScanner: typeScanner })
74
+ }} style={{ flexDirection: 'row', alignContent: 'center', alignItems: 'center', backgroundColor: _selectGate ? LibStyle.colorGrey : '#fff', ...LibStyle.elevation(2), padding: 16, marginBottom: 10, marginHorizontal: 15, borderRadius: 5, flex: 1 }}>
75
+ <LibIcon name={_selectGate ? "radiobox-marked" : "radiobox-blank"} size={18} color={_selectGate ? "#3ea4dc" : "#434343"} />
76
+ <Text allowFontScaling={false} style={{ marginLeft: 10, fontSize: 17, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, textAlign: "center", color: '#9e9e9e', paddingLeft: 3, paddingRight: 3 }}>{item.name}</Text>
77
+ </Pressable>
78
+ )
79
+ }
80
+
81
+ if (!gates) {
82
+ return <LibLoading />
83
+ }
84
+
85
+ return (
86
+ <View style={{ flex: 1 }}>
87
+ <EventHeader title={typeScanner == "tms" ? esp.lang("event/tms_gate", "header_title1") : esp.lang("event/tms_gate", "header_title2")} subtitle={esp.lang("event/tms_gate", "gate_sub")} />
88
+ <ScrollView style={{}}>
89
+ <Text allowFontScaling={false} style={{ margin: 20, marginBottom: 10, fontFamily: "Arial", fontSize: 16, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, paddingLeft: 3, paddingRight: 3 }}>{esp.lang("event/tms_gate", "text_select", typeScanner == "tms" ? esp.lang("event/tms_gate", "gate") : esp.lang("event/tms_gate", "hall"))}</Text>
90
+ {
91
+ gates?.length > 1 && gates?.map(renderGates)
92
+ }
93
+ </ScrollView>
94
+ </View>
95
+ )
96
+ }