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.
- package/event/additional.tsx +4 -4
- package/event/additional_input.tsx +15 -15
- package/event/alert.tsx +32 -0
- package/event/artist.tsx +166 -0
- package/event/artist_detail.tsx +521 -0
- package/event/artist_detail_multi.tsx +548 -0
- package/event/badge.tsx +22 -0
- package/event/button.tsx +40 -0
- package/event/config.ts +4 -0
- package/event/countdown.tsx +5 -5
- package/event/countdown_base.tsx +83 -0
- package/event/counter_cashier.tsx +13 -13
- package/event/counter_cashier_report.tsx +6 -6
- package/event/counter_cashier_sell.tsx +7 -7
- package/event/counter_eo.tsx +21 -21
- package/event/counter_history.tsx +4 -4
- package/event/counter_lm.tsx +18 -18
- package/event/counter_report.tsx +4 -4
- package/event/counter_report_breakdown.tsx +2 -2
- package/event/counter_report_detail.tsx +15 -15
- package/event/counter_report_detail_list.tsx +4 -4
- package/event/counter_request.tsx +4 -4
- package/event/counter_request_detail.tsx +6 -6
- package/event/counter_send.tsx +9 -9
- package/event/counter_user_list.tsx +15 -15
- package/event/coupon.tsx +4 -4
- package/event/coupon_claim.tsx +4 -4
- package/event/coupon_claim_detail.tsx +8 -7
- package/event/coupon_claim_history.tsx +9 -9
- package/event/coupon_claim_reimburse.tsx +7 -8
- package/event/coupon_claim_reimburse_history.tsx +4 -4
- package/event/coupon_claim_reimburse_history_detail.tsx +4 -4
- package/event/coupon_claim_staff.tsx +10 -10
- package/event/coupon_detail.tsx +3 -3
- package/event/coupon_event_list.tsx +4 -4
- package/event/coupon_generate.tsx +4 -4
- package/event/coupon_generate_event.tsx +4 -4
- package/event/coupon_generate_list.tsx +2 -2
- package/event/date_picker.tsx +5 -5
- package/event/detail.tsx +12 -15
- package/event/entrance.tsx +17 -17
- package/event/entrance_again.tsx +22 -23
- package/event/entrance_failed.tsx +15 -15
- package/event/entrance_idcard.tsx +23 -23
- package/event/entrance_list.tsx +24 -24
- package/event/entrance_list_item.tsx +6 -6
- package/event/entrance_log.tsx +24 -24
- package/event/entrance_success.tsx +8 -8
- package/event/entrance_warning.tsx +14 -14
- package/event/exchange_reward.tsx +2 -2
- package/event/exchange_reward_result.tsx +7 -8
- package/event/exchange_ticket.tsx +11 -12
- package/event/exchange_ticket_list.tsx +10 -12
- package/event/exchange_ticket_result.tsx +11 -12
- package/event/exit.tsx +9 -9
- package/event/exit_failed.tsx +12 -12
- package/event/exit_list.tsx +15 -15
- package/event/exit_log.tsx +22 -22
- package/event/exit_success.tsx +8 -8
- package/event/exit_temporary.tsx +21 -21
- package/event/expander.tsx +36 -0
- package/event/fab.tsx +24 -0
- package/event/firebase_socket.ts +365 -0
- package/event/hall_in.tsx +13 -13
- package/event/hall_in_failed.tsx +22 -22
- package/event/hall_in_list.tsx +17 -17
- package/event/hall_in_log.tsx +24 -24
- package/event/hall_in_success.tsx +8 -8
- package/event/hall_out.tsx +13 -13
- package/event/hall_out_failed.tsx +11 -11
- package/event/hall_out_list.tsx +17 -17
- package/event/hall_out_log.tsx +24 -24
- package/event/hall_out_success.tsx +8 -8
- package/event/header.tsx +119 -0
- package/event/header_home.tsx +108 -0
- package/event/index.tsx +270 -0
- package/event/input_rectangle.tsx +208 -0
- package/event/item.tsx +40 -0
- package/event/label_input.tsx +23 -0
- package/event/list.tsx +20 -21
- package/event/list_filter.tsx +12 -13
- package/event/list_item.tsx +76 -0
- package/event/list_item2.tsx +78 -0
- package/event/loading_page.tsx +248 -0
- package/event/log.tsx +54 -54
- package/event/message.tsx +32 -0
- package/event/notice.tsx +41 -0
- package/event/order.tsx +323 -0
- package/event/order_detail.tsx +813 -0
- package/event/order_detail_payment.tsx +153 -0
- package/event/order_detail_upgrade.tsx +164 -0
- package/event/order_detail_upgrade_button.tsx +60 -0
- package/event/order_detail_upgrade_payment.tsx +221 -0
- package/event/order_detail_visitor.tsx +196 -0
- package/event/order_detail_waiting.tsx +520 -0
- package/event/order_history.tsx +101 -0
- package/event/order_item.tsx +118 -0
- package/event/order_lottery.tsx +172 -0
- package/event/order_reschedule.tsx +439 -0
- package/event/order_reschedule_list.tsx +85 -0
- package/event/order_share_to.tsx +219 -0
- package/event/order_share_to_detail.tsx +181 -0
- package/event/order_status.tsx +66 -0
- package/event/order_waiting.tsx +143 -0
- package/event/pending_trx.tsx +50 -0
- package/event/qc_idcard.tsx +12 -12
- package/event/qc_idcard_failed.tsx +4 -4
- package/event/qc_idcard_success.tsx +4 -4
- package/event/qr_bg.tsx +22 -0
- package/event/queue_out.tsx +3 -3
- package/event/queue_pricing.tsx +2 -3
- package/event/rating.tsx +49 -0
- package/event/rating_mini.tsx +35 -0
- package/event/refresh_button.tsx +40 -0
- package/event/review.tsx +3 -3
- package/event/review_add.tsx +8 -8
- package/event/review_detail.tsx +4 -4
- package/event/review_item.tsx +4 -4
- package/event/scan_item.tsx +2 -2
- package/event/schedule.tsx +8 -9
- package/event/seat.tsx +16 -18
- package/event/seat_autopick.tsx +4 -4
- package/event/seat_map.tsx +4 -4
- package/event/seat_map_test.tsx +2 -2
- package/event/section.tsx +35 -0
- package/event/section_menu.tsx +40 -0
- package/event/sheet.tsx +73 -0
- package/event/slider.tsx +46 -0
- package/event/step.tsx +29 -0
- package/event/ticket_list.tsx +15 -16
- package/event/ticket_list2.tsx +16 -17
- package/event/tms.tsx +4 -4
- package/event/tms_add.tsx +7 -8
- package/event/tms_add_result.tsx +4 -4
- package/event/tms_check_code.tsx +160 -0
- package/event/tms_check_ticket.tsx +72 -0
- package/event/tms_check_ticket_result.tsx +384 -0
- package/event/tms_dashboard.tsx +7 -7
- package/event/tms_event_list.tsx +46 -43
- package/event/tms_gate.tsx +96 -0
- package/event/tms_home.tsx +639 -0
- package/event/tms_idcard.tsx +203 -0
- package/event/tms_in.tsx +215 -0
- package/event/tms_in_again.tsx +199 -0
- package/event/tms_in_failed.tsx +190 -0
- package/event/tms_in_hall.tsx +148 -0
- package/event/tms_in_hall_failed.tsx +270 -0
- package/event/tms_in_hall_list.tsx +222 -0
- package/event/tms_in_hall_log.tsx +134 -0
- package/event/tms_in_hall_success.tsx +132 -0
- package/event/tms_in_list.tsx +264 -0
- package/event/tms_in_log.tsx +130 -0
- package/event/tms_in_success.tsx +155 -0
- package/event/tms_in_warning.tsx +91 -0
- package/event/tms_list_item.tsx +88 -0
- package/event/tms_log.tsx +435 -0
- package/event/tms_out.tsx +91 -0
- package/event/tms_out_failed.tsx +135 -0
- package/event/tms_out_hall.tsx +143 -0
- package/event/tms_out_hall_failed.tsx +133 -0
- package/event/tms_out_hall_list.tsx +215 -0
- package/event/tms_out_hall_log.tsx +133 -0
- package/event/tms_out_hall_success.tsx +130 -0
- package/event/tms_out_list.tsx +118 -0
- package/event/tms_out_log.tsx +131 -0
- package/event/tms_out_success.tsx +143 -0
- package/event/tms_out_temporary.tsx +226 -0
- package/event/toggle.tsx +30 -0
- package/event/transaction.ts +34 -0
- package/event/turnstile_event_gate.tsx +2 -2
- package/event/turnstile_event_list.tsx +4 -4
- package/event/turnstile_event_ticket.tsx +4 -4
- package/event/turnstile_settings.tsx +11 -11
- package/event/turnstile_settings_otp.tsx +4 -4
- package/event/turnstile_settings_status.tsx +2 -2
- package/event/voucher.tsx +9 -10
- package/event/voucher_multi.tsx +4 -5
- package/id.json +644 -0
- package/package.json +1 -1
package/event/tms.tsx
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// withHooks
|
|
2
2
|
|
|
3
3
|
import { applyStyle } from 'esoftplay';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { EventHeader } from 'esoftplay/cache/event/header/import';
|
|
5
|
+
import { EventMessage } from 'esoftplay/cache/event/message/import';
|
|
6
6
|
import { LibCurl } from 'esoftplay/cache/lib/curl/import';
|
|
7
7
|
import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
|
|
8
8
|
import { LibIcon } from 'esoftplay/cache/lib/icon/import';
|
|
@@ -87,12 +87,12 @@ export default function m(props: EventTmsProps): any {
|
|
|
87
87
|
|
|
88
88
|
return (
|
|
89
89
|
<View style={{ flex: 1, backgroundColor: '#fff' }}>
|
|
90
|
-
<
|
|
90
|
+
<EventHeader title={esp.lang("event/tms", "header")} subtitle={dataEO?.name} />
|
|
91
91
|
<LibInfinite
|
|
92
92
|
ref={ref}
|
|
93
93
|
// isDebug={1}
|
|
94
94
|
url={'event_tms_list?event_id=' + dataEO?.id}
|
|
95
|
-
errorView={(error: any) => (<
|
|
95
|
+
errorView={(error: any) => (<EventMessage message={error} />)}
|
|
96
96
|
renderItem={renderItem}
|
|
97
97
|
/>
|
|
98
98
|
<Pressable onPress={() => { LibNavigation.navigate('event/tms_add', { dataEvent: dataEO }) }} style={{ ...LibStyle.elevation(2), position: 'absolute', bottom: 15, right: 15, height: 50, width: 50, borderRadius: 25, backgroundColor: LibStyle.colorGreen, alignContent: 'center', alignItems: 'center', justifyContent: 'center' }}>
|
package/event/tms_add.tsx
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
// withHooks
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
import { ComponentTouchable } from 'esoftplay/cache/component/touchable/import';
|
|
3
|
+
import { EventHeader } from 'esoftplay/cache/event/header/import';
|
|
5
4
|
import { LibInput_circle2 } from 'esoftplay/cache/lib/input_circle2/import';
|
|
6
5
|
import { LibKeyboard_avoid } from 'esoftplay/cache/lib/keyboard_avoid/import';
|
|
7
6
|
import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
|
|
@@ -10,7 +9,7 @@ import { LibStyle } from 'esoftplay/cache/lib/style/import';
|
|
|
10
9
|
import esp from 'esoftplay/esp';
|
|
11
10
|
import useSafeState from 'esoftplay/state';
|
|
12
11
|
import React from 'react';
|
|
13
|
-
import { ScrollView, Text, View } from 'react-native';
|
|
12
|
+
import { ScrollView, Text, TouchableOpacity, View } from 'react-native';
|
|
14
13
|
|
|
15
14
|
|
|
16
15
|
export interface EventTms_addArgs {
|
|
@@ -47,10 +46,10 @@ export default function m(props: EventTms_addProps): any {
|
|
|
47
46
|
|
|
48
47
|
return (
|
|
49
48
|
<LibKeyboard_avoid style={{ flex: 1 }}>
|
|
50
|
-
<
|
|
49
|
+
<EventHeader title={esp.lang("event/tms_add", "header")} />
|
|
51
50
|
<View style={{ flex: 1, margin: 15, backgroundColor: '#fff', borderRadius: 10, ...LibStyle.elevation(2) }}>
|
|
52
51
|
<ScrollView style={{ flex: 1 }}>
|
|
53
|
-
<
|
|
52
|
+
<TouchableOpacity onPress={() => {
|
|
54
53
|
LibNavigation.navigateForResult('component/scanner', { fromPage: "event/tms_add" }).then((value: any) => {
|
|
55
54
|
LibNavigation.navigate('event/tms_add_result', { dataEvent: dataEvent, email: email.trim(), is_add: true, qr_code: value.trim() })
|
|
56
55
|
// setQrcode(value)
|
|
@@ -60,7 +59,7 @@ export default function m(props: EventTms_addProps): any {
|
|
|
60
59
|
<LibPicture source={esp.assets('icons/ic_barcode_white.png')} style={{ height: 250, width: 250 }} />
|
|
61
60
|
<Text allowFontScaling={false} style={{ fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 10, color: '#fff' }}>{esp.lang("transfer/index", "klik_here")}</Text>
|
|
62
61
|
</View>
|
|
63
|
-
</
|
|
62
|
+
</TouchableOpacity>
|
|
64
63
|
<Text allowFontScaling={false} style={{ opacity: 0.7, fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 20 }}>{esp.lang("event/tms_add", "scan_qr")}</Text>
|
|
65
64
|
<Text allowFontScaling={false} style={{ opacity: 0.6, fontFamily: "Arial", fontSize: 12, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 17 }}>{esp.lang("transfer/index", "or")}</Text>
|
|
66
65
|
|
|
@@ -80,14 +79,14 @@ export default function m(props: EventTms_addProps): any {
|
|
|
80
79
|
|
|
81
80
|
</ScrollView>
|
|
82
81
|
|
|
83
|
-
<
|
|
82
|
+
<TouchableOpacity onPress={() => {
|
|
84
83
|
LibNavigation.navigate('event/tms_add_result', { dataEvent: dataEvent, email: email.trim(), is_add: true, qr_code: qrcode.trim() })
|
|
85
84
|
}}>
|
|
86
85
|
<View style={{ margin: 15, marginTop: 20, height: 35, backgroundColor: "#6c432c", justifyContent: 'center', alignItems: 'center', paddingHorizontal: 9 }} >
|
|
87
86
|
<Text allowFontScaling={false} style={{ fontFamily: "ArialBold", fontSize: 12, textAlign: "center", textAlignVertical: 'center', color: 'white', marginRight: 13, marginLeft: 10 }} >{esp.lang("visitor/index", "submit")}</Text>
|
|
88
87
|
</View>
|
|
89
88
|
|
|
90
|
-
</
|
|
89
|
+
</TouchableOpacity>
|
|
91
90
|
</View >
|
|
92
91
|
</LibKeyboard_avoid>
|
|
93
92
|
)
|
package/event/tms_add_result.tsx
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { useEffect } from 'react';
|
|
3
3
|
|
|
4
4
|
import { applyStyle } from 'esoftplay';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { EventButton } from 'esoftplay/cache/event/button/import';
|
|
6
|
+
import { EventHeader } from 'esoftplay/cache/event/header/import';
|
|
7
7
|
import { EventTmsProperty } from 'esoftplay/cache/event/tms/import';
|
|
8
8
|
import { LibCurl } from 'esoftplay/cache/lib/curl/import';
|
|
9
9
|
import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
|
|
@@ -124,7 +124,7 @@ export default function m(props: EventTms_add_resultProps): any {
|
|
|
124
124
|
|
|
125
125
|
return (
|
|
126
126
|
<View style={{ flex: 1 }}>
|
|
127
|
-
<
|
|
127
|
+
<EventHeader title={esp.lang("event/tms_add", "header")} />
|
|
128
128
|
<ScrollView style={{ padding: 15 }}>
|
|
129
129
|
<View style={{ flexDirection: 'row' }}>
|
|
130
130
|
<LibPicture
|
|
@@ -162,7 +162,7 @@ export default function m(props: EventTms_add_resultProps): any {
|
|
|
162
162
|
<LibIcon name={allowReset == 0 ? "checkbox-blank-outline" : "checkbox-marked"} color={allowReset == 0 ? "#000" : LibStyle.colorGreen} />
|
|
163
163
|
<Text allowFontScaling={false} style={applyStyle({ marginLeft: 8, color: allowReset == 0 ? "#000" : LibStyle.colorGreen, fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, paddingLeft: 3, paddingRight: 3 })}>{esp.lang("event/tms_add_result", "reset")}</Text>
|
|
164
164
|
</Pressable>
|
|
165
|
-
<
|
|
165
|
+
<EventButton
|
|
166
166
|
label={esp.lang("event/tms_add_result", "save")}
|
|
167
167
|
backgroundColor={LibStyle.colorGreen}
|
|
168
168
|
onPress={() => {
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
// withHooks
|
|
2
|
+
|
|
3
|
+
import { applyStyle } from 'esoftplay';
|
|
4
|
+
import { EventHeader } from 'esoftplay/cache/event/header/import';
|
|
5
|
+
import { EventLabel_input } from 'esoftplay/cache/event/label_input/import';
|
|
6
|
+
import { EventTms_check_ticket } from 'esoftplay/cache/event/tms_check_ticket/import';
|
|
7
|
+
import { LibCurl } from 'esoftplay/cache/lib/curl/import';
|
|
8
|
+
import { LibDialog } from 'esoftplay/cache/lib/dialog/import';
|
|
9
|
+
import { LibInput_circle2 } from 'esoftplay/cache/lib/input_circle2/import';
|
|
10
|
+
import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
|
|
11
|
+
import { LibProgress } from 'esoftplay/cache/lib/progress/import';
|
|
12
|
+
import { LibStyle } from 'esoftplay/cache/lib/style/import';
|
|
13
|
+
import { LibTextstyle } from 'esoftplay/cache/lib/textstyle/import';
|
|
14
|
+
import { LibToastProperty } from 'esoftplay/cache/lib/toast/import';
|
|
15
|
+
import esp from 'esoftplay/esp';
|
|
16
|
+
import useSafeState from 'esoftplay/state';
|
|
17
|
+
import React from 'react';
|
|
18
|
+
import { Text, TouchableOpacity, View } from 'react-native';
|
|
19
|
+
import { ScrollView } from 'react-native-gesture-handler';
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
export interface EventTms_check_codeArgs {
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
export interface EventTms_check_codeProps {
|
|
26
|
+
|
|
27
|
+
}
|
|
28
|
+
export default function m(props: EventTms_check_codeProps): any {
|
|
29
|
+
let inputAccessCode = React.useRef<LibInput_circle2>(null)
|
|
30
|
+
const { event_id, gate } = LibNavigation.getArgsAll(props)
|
|
31
|
+
const [result, setResult] = useSafeState<any>()
|
|
32
|
+
|
|
33
|
+
const [tab, setTab] = useSafeState<any>({
|
|
34
|
+
id: 1,
|
|
35
|
+
title: esp.lang("event/tms_check_code", "title")
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
function doSubmit(reSubmit?: boolean): void {
|
|
39
|
+
inputAccessCode.current?.blur()
|
|
40
|
+
if (inputAccessCode.current?.getText() == '') {
|
|
41
|
+
LibToastProperty.show(esp.lang("visitor/index", "alert_error_not_empty_code"))
|
|
42
|
+
inputAccessCode.current?.focus()
|
|
43
|
+
return
|
|
44
|
+
}
|
|
45
|
+
var post = {
|
|
46
|
+
code: inputAccessCode.current?.getText().toUpperCase(),
|
|
47
|
+
event_id: event_id,
|
|
48
|
+
gate_id: gate?.id
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (reSubmit) {
|
|
52
|
+
delete post.event_id
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
LibProgress.show(esp.lang("visitor/index", "waiting_msg"))
|
|
56
|
+
new LibCurl('code_check', post, (res, msg) => {
|
|
57
|
+
setResult(res)
|
|
58
|
+
LibProgress.hide();
|
|
59
|
+
}, (err) => {
|
|
60
|
+
setResult(undefined)
|
|
61
|
+
LibProgress.hide();
|
|
62
|
+
LibDialog.warningConfirm(esp.lang("event/tms_check_code", "error"), err?.message, "Ok", () => {
|
|
63
|
+
|
|
64
|
+
}, "Cari lebih lanjut", () => {
|
|
65
|
+
doSubmit(true)
|
|
66
|
+
})
|
|
67
|
+
}, 1)
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
let tabs = [
|
|
71
|
+
{
|
|
72
|
+
id: 1,
|
|
73
|
+
title: esp.lang("event/tms_check_code", "ticket")
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
id: 2,
|
|
77
|
+
title: esp.lang("event/tms_check_code", "code")
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
function renderTabs(item: any, i: number) {
|
|
82
|
+
let tabsLength = 2
|
|
83
|
+
return (
|
|
84
|
+
<TouchableOpacity key={i} onPress={() => {
|
|
85
|
+
setTab(item)
|
|
86
|
+
}}>
|
|
87
|
+
<View style={applyStyle({ height: 43, width: LibStyle.width / tabsLength, alignItems: 'center', overflow: 'visible', justifyContent: 'center', backgroundColor: '#fff' })}>
|
|
88
|
+
<Text allowFontScaling={false} style={{
|
|
89
|
+
width: LibStyle.width / tabsLength, fontFamily: "Arial", fontSize: tab?.id == item?.id ? 16 : 14,
|
|
90
|
+
fontWeight: tab?.id == item?.id ? "bold" : "normal",
|
|
91
|
+
fontStyle: "normal", letterSpacing: 0, textAlign: "center",
|
|
92
|
+
color: tab?.id == item.id ? "#51b596" : "#c5c5c5"
|
|
93
|
+
}}>{item.title}</Text>
|
|
94
|
+
<View style={{ marginTop: 2, width: 5, height: 5, borderRadius: 2.5, alignItems: 'center', justifyContent: 'center', backgroundColor: LibStyle.colorRed, opacity: item?.total > 0 ? 1 : 0 }} />
|
|
95
|
+
<View style={{ width: (LibStyle.width / tabsLength) - 20, height: 3, backgroundColor: tab?.id == item?.id ? "#51b596" : "#fff", position: 'absolute', bottom: 0 }} />
|
|
96
|
+
</View>
|
|
97
|
+
</TouchableOpacity>
|
|
98
|
+
)
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return (
|
|
102
|
+
<View style={{ flex: 1, backgroundColor: LibStyle.colorBgGrey }}>
|
|
103
|
+
<EventHeader title={tab?.title} />
|
|
104
|
+
<View style={{ flexDirection: 'row' }}>
|
|
105
|
+
{
|
|
106
|
+
tabs?.map(renderTabs)
|
|
107
|
+
}
|
|
108
|
+
</View>
|
|
109
|
+
{
|
|
110
|
+
tab?.id == 1 ?
|
|
111
|
+
<EventTms_check_ticket event_id={event_id} gate={gate} />
|
|
112
|
+
:
|
|
113
|
+
<ScrollView>
|
|
114
|
+
<View style={[{ margin: 15, backgroundColor: 'white', padding: 15, paddingTop: 8, borderRadius: 5 }, LibStyle.elevation(2)]}>
|
|
115
|
+
<EventLabel_input label={esp.lang("visitor/index", "label_input_code")} mandatory />
|
|
116
|
+
<LibInput_circle2
|
|
117
|
+
ref={inputAccessCode}
|
|
118
|
+
onSubmitEditing={() => doSubmit()}
|
|
119
|
+
blurOnSubmit
|
|
120
|
+
returnKeyType="done"
|
|
121
|
+
autoCapitalize='characters'
|
|
122
|
+
// autoFocus
|
|
123
|
+
style={{ borderColor: '#c4c4c4', height: 35, marginTop: 8, borderRadius: 5 }}
|
|
124
|
+
placeholder={esp.lang("visitor/index", "placeholder_input_code")}
|
|
125
|
+
/>
|
|
126
|
+
<TouchableOpacity onPress={() => { doSubmit() }}>
|
|
127
|
+
<View style={{ marginTop: 20, height: 35, borderRadius: 5, backgroundColor: "#6c432c", justifyContent: 'center', alignItems: 'center', paddingHorizontal: 9 }} >
|
|
128
|
+
<Text allowFontScaling={false} style={{ fontFamily: "ArialBold", fontSize: 12, textAlign: "center", textAlignVertical: 'center', color: 'white', marginRight: 13, marginLeft: 10 }} >{esp.lang("visitor/index", "submit")}</Text>
|
|
129
|
+
</View>
|
|
130
|
+
</TouchableOpacity>
|
|
131
|
+
</View>
|
|
132
|
+
{
|
|
133
|
+
result &&
|
|
134
|
+
<View style={[{ marginTop: 0, margin: 15, backgroundColor: 'white', padding: 15, paddingTop: 8, borderRadius: 5 }, LibStyle.elevation(2)]}>
|
|
135
|
+
<Text allowFontScaling={false} style={{ fontSize: 18, letterSpacing: 1.5, fontWeight: 'bold' }}>{esp.lang("event/tms_check_code", "input_code", String(inputAccessCode?.current?.getText?.()))}</Text>
|
|
136
|
+
{/* <LibTextstyle text={esp.lang("event/tms_check_code", "input_code", String(inputAccessCode?.current?.getText?.()))} textStyle="headline" style={{ fontWeight: 'bold' }} /> */}
|
|
137
|
+
{
|
|
138
|
+
result?.data?.hasOwnProperty("price_name") && result?.data?.price_name != "" &&
|
|
139
|
+
<Text allowFontScaling={false} style={{ fontSize: 16, letterSpacing: 1, marginTop: 4 }}>{result?.data?.price_name}</Text>
|
|
140
|
+
}
|
|
141
|
+
{
|
|
142
|
+
result?.data?.hasOwnProperty("title") && result?.data?.title != "" &&
|
|
143
|
+
<Text allowFontScaling={false} style={{ fontSize: 16, letterSpacing: 1, marginTop: 4 }}>{result?.data?.title}</Text>
|
|
144
|
+
}
|
|
145
|
+
{
|
|
146
|
+
result?.data?.hasOwnProperty("event_name") && result?.data?.event_name != "" &&
|
|
147
|
+
<LibTextstyle text={result?.data?.event_name} textStyle="m_overline" style={{ marginVertical: 5, fontSize: 12 }} />
|
|
148
|
+
}
|
|
149
|
+
{
|
|
150
|
+
result?.data?.hasOwnProperty("exhibitor_name") && result?.data?.exhibitor_name != "" &&
|
|
151
|
+
<LibTextstyle text={result?.data?.exhibitor_name} textStyle="headline" style={{ fontWeight: 'bold' }} />
|
|
152
|
+
}
|
|
153
|
+
<LibTextstyle text={result?.info} textStyle="m_body1" style={{ lineHeight: 20, marginTop: 10 }} />
|
|
154
|
+
</View>
|
|
155
|
+
}
|
|
156
|
+
</ScrollView>
|
|
157
|
+
}
|
|
158
|
+
</View>
|
|
159
|
+
)
|
|
160
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
// withHooks
|
|
2
|
+
|
|
3
|
+
import { LibInput_circle2 } from 'esoftplay/cache/lib/input_circle2/import';
|
|
4
|
+
import { LibKeyboard_avoid } from 'esoftplay/cache/lib/keyboard_avoid/import';
|
|
5
|
+
import { LibNavigation } from 'esoftplay/cache/lib/navigation/import';
|
|
6
|
+
import { LibPicture } from 'esoftplay/cache/lib/picture/import';
|
|
7
|
+
import { LibStyle } from 'esoftplay/cache/lib/style/import';
|
|
8
|
+
import { LibToastProperty } from 'esoftplay/cache/lib/toast/import';
|
|
9
|
+
import esp from 'esoftplay/esp';
|
|
10
|
+
import React from 'react';
|
|
11
|
+
import { ScrollView, Text, TouchableOpacity, View } from 'react-native';
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface EventTms_check_ticketArgs {
|
|
15
|
+
|
|
16
|
+
}
|
|
17
|
+
export interface EventTms_check_ticketProps {
|
|
18
|
+
event_id: string,
|
|
19
|
+
gate?: any
|
|
20
|
+
}
|
|
21
|
+
export default function m(props: EventTms_check_ticketProps): any {
|
|
22
|
+
let inputAccessCode = React.useRef<LibInput_circle2>(null)
|
|
23
|
+
|
|
24
|
+
function doSubmit() {
|
|
25
|
+
|
|
26
|
+
inputAccessCode.current?.blur()
|
|
27
|
+
if (inputAccessCode.current?.getText() == '') {
|
|
28
|
+
LibToastProperty.show(esp.lang("visitor/index", "alert_error_not_empty_code"))
|
|
29
|
+
inputAccessCode.current?.focus()
|
|
30
|
+
return
|
|
31
|
+
}
|
|
32
|
+
LibNavigation.navigate('event/tms_check_ticket_result', { selectGate: props?.gate, event_id: props?.event_id, qr: inputAccessCode.current?.getText().toUpperCase() })
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<LibKeyboard_avoid style={{ flex: 1 }}>
|
|
38
|
+
<View style={{ flex: 1, margin: 15, backgroundColor: '#fff', borderRadius: 10, ...LibStyle.elevation(2) }}>
|
|
39
|
+
<ScrollView style={{ flex: 1 }}>
|
|
40
|
+
<TouchableOpacity onPress={() => {
|
|
41
|
+
LibNavigation.navigate('component/scanner', { selectGate: props?.gate, event_id: props?.event_id, fromPage: "event/tms_check_ticket" })
|
|
42
|
+
}}>
|
|
43
|
+
<View style={{ width: LibStyle.width - 30, overflow: 'hidden', borderTopLeftRadius: 10, borderTopRightRadius: 10, height: LibStyle.height * 0.5, backgroundColor: '#b8b7bf', justifyContent: 'center', alignContent: 'center', alignItems: 'center' }}>
|
|
44
|
+
<LibPicture source={esp.assets('icons/ic_barcode_white.png')} style={{ height: 250, width: 250 }} />
|
|
45
|
+
<Text allowFontScaling={false} style={{ fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 10, color: '#fff' }}>{esp.lang("transfer/index", "klik_here")}</Text>
|
|
46
|
+
</View>
|
|
47
|
+
</TouchableOpacity>
|
|
48
|
+
<Text allowFontScaling={false} style={{ opacity: 0.7, fontFamily: "Arial", fontSize: 14, fontWeight: "bold", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 20 }}>{esp.lang("event/tms_check_ticket", "scan_qr_ticket")}</Text>
|
|
49
|
+
<Text allowFontScaling={false} style={{ opacity: 0.6, fontFamily: "Arial", fontSize: 12, fontWeight: "normal", fontStyle: "normal", letterSpacing: 0, textAlign: "center", marginTop: 17 }}>{esp.lang("transfer/index", "or")}</Text>
|
|
50
|
+
|
|
51
|
+
<LibInput_circle2
|
|
52
|
+
ref={inputAccessCode}
|
|
53
|
+
onSubmitEditing={() => doSubmit()}
|
|
54
|
+
blurOnSubmit
|
|
55
|
+
returnKeyType="done"
|
|
56
|
+
autoCapitalize='characters'
|
|
57
|
+
// autoFocus
|
|
58
|
+
style={{ borderColor: '#c4c4c4', height: 35, margin: 15, borderRadius: 5 }}
|
|
59
|
+
placeholder={esp.lang("event/tms_check_ticket", "input_code")}
|
|
60
|
+
/>
|
|
61
|
+
|
|
62
|
+
</ScrollView>
|
|
63
|
+
|
|
64
|
+
<TouchableOpacity onPress={() => { doSubmit() }}>
|
|
65
|
+
<View style={{ margin: 15, marginTop: 20, height: 35, borderRadius: 5, backgroundColor: "#6c432c", justifyContent: 'center', alignItems: 'center', paddingHorizontal: 9 }} >
|
|
66
|
+
<Text allowFontScaling={false} style={{ fontFamily: "ArialBold", fontSize: 12, textAlign: "center", textAlignVertical: 'center', color: 'white', marginRight: 13, marginLeft: 10 }} >{esp.lang("visitor/index", "submit")}</Text>
|
|
67
|
+
</View>
|
|
68
|
+
</TouchableOpacity>
|
|
69
|
+
</View >
|
|
70
|
+
</LibKeyboard_avoid>
|
|
71
|
+
)
|
|
72
|
+
}
|