esoftplay-event 0.0.2 → 0.0.3
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 +1 -1
- package/event/additional_input.tsx +15 -0
- package/event/additional_new.tsx +565 -0
- package/event/artist.tsx +14 -34
- package/event/artist_detail.tsx +336 -239
- package/event/artist_detail_multi.tsx +266 -157
- package/event/artist_detailv2.tsx +129 -69
- package/event/artistv2.tsx +5 -13
- package/event/button.tsx +2 -2
- package/event/button_order_detail.tsx +20 -8
- package/event/capture.tsx +2 -0
- package/event/checkout.ts +135 -0
- package/event/countdown.tsx +13 -9
- package/event/countdown_base.tsx +88 -48
- package/event/countdown_event.tsx +3 -0
- package/event/countdown_timestamp.tsx +106 -0
- package/event/coupon.tsx +1 -1
- package/event/coupon_generate.tsx +35 -22
- package/event/detail.tsx +9 -15
- package/event/detail2.tsx +63 -61
- package/event/dialog_custom.tsx +67 -0
- package/event/exchange_ticket_list.tsx +23 -14
- package/event/exchange_ticket_result.tsx +1 -1
- package/event/firebase_socket.ts +14 -12
- package/event/htmltext.tsx +40 -28
- package/event/index.tsx +8 -2
- package/event/label_input.tsx +2 -2
- package/event/layout.tsx +312 -0
- package/event/loading_page.tsx +62 -82
- package/event/message.tsx +2 -2
- package/event/order_detail.tsx +408 -477
- package/event/order_detail_addons.tsx +60 -0
- package/event/order_detail_addons_booked.tsx +61 -0
- package/event/order_detail_coupon.tsx +66 -0
- package/event/order_detail_instruction.tsx +96 -0
- package/event/order_detail_payment.tsx +1 -1
- package/event/order_detail_reschedule.tsx +109 -0
- package/event/order_detail_return.tsx +231 -0
- package/event/order_detail_review.tsx +174 -0
- package/event/order_detail_share.tsx +304 -0
- package/event/order_detail_tnc.tsx +76 -0
- package/event/order_detail_upgrade.tsx +140 -90
- package/event/order_detail_upgrade_payment.tsx +120 -38
- package/event/order_detail_visitor.tsx +21 -10
- package/event/order_detail_waiting.tsx +3 -3
- package/event/order_history.tsx +1 -1
- package/event/order_item.tsx +1 -1
- package/event/order_lottery.tsx +1 -1
- package/event/order_reschedule.tsx +29 -16
- package/event/order_share_to.tsx +14 -0
- package/event/order_waiting.tsx +1 -1
- package/event/payment_subscribe.tsx +18 -0
- package/event/point_events.tsx +35 -0
- package/event/point_redemption.tsx +101 -0
- package/event/point_redemption_exchange.tsx +60 -0
- package/event/point_redemption_input.tsx +56 -0
- package/event/point_redemption_success.tsx +50 -0
- package/event/point_summary.tsx +48 -0
- package/event/popup.tsx +4 -4
- package/event/queue.tsx +111 -0
- package/event/queue_pricing.tsx +17 -6
- package/event/review_add.tsx +2 -2
- package/event/scan_item.tsx +1 -1
- package/event/schedule.tsx +33 -30
- package/event/schedule2.tsx +86 -0
- package/event/seat.tsx +135 -374
- package/event/seat_map.tsx +8 -8
- package/event/seat_map_new.tsx +211 -38
- package/event/step.tsx +1 -1
- package/event/test.tsx +8 -8
- package/event/ticket.tsx +326 -0
- package/event/ticket_list.tsx +316 -258
- package/event/ticket_list2.tsx +349 -224
- package/event/ticket_list_item.tsx +61 -0
- package/event/ticket_list_new.tsx +710 -0
- package/event/tms_add_result.tsx +10 -5
- package/event/tms_check_ticket_result.tsx +16 -7
- package/event/tms_dashboard.tsx +87 -12
- package/event/tms_gate.tsx +32 -15
- package/event/tms_home.tsx +178 -92
- package/event/tms_idcard.tsx +43 -26
- package/event/tms_in.tsx +2 -3
- package/event/tms_in_failed.tsx +1 -1
- package/event/tms_in_hall.tsx +4 -1
- package/event/tms_in_hall_failed.tsx +36 -16
- package/event/tms_in_log.tsx +9 -11
- package/event/tms_in_success.tsx +13 -8
- package/event/tms_log.tsx +16 -17
- package/event/tms_out_hall_failed.tsx +1 -1
- package/event/tms_out_temporary.tsx +3 -4
- package/event/token_order.tsx +103 -0
- package/event/token_payment.tsx +79 -0
- package/event/visitor_index.tsx +60 -49
- package/event/visitor_input.tsx +336 -54
- package/event/visitor_inputv2.tsx +173 -88
- package/event/voucher.tsx +1 -1
- package/id.json +76 -4
- package/package.json +1 -1
- package/event/secure_page.debug.tsx +0 -34
- package/event/secure_page.live.tsx +0 -35
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
// // useLibs
|
|
2
|
-
|
|
3
|
-
// import { UserClass } from 'esoftplay/cache/user/class/import';
|
|
4
|
-
// import { useEffect } from 'react';
|
|
5
|
-
// import { CaptureProtection } from 'react-native-capture-protection';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
// export interface EventSecure_pageProps {
|
|
9
|
-
|
|
10
|
-
// }
|
|
11
|
-
// export default function m(): any {
|
|
12
|
-
// const can_screencapture = UserClass.state().get('config', 'can_screencapture')
|
|
13
|
-
// // const focus = useIsFocused()
|
|
14
|
-
|
|
15
|
-
// useEffect(() => {
|
|
16
|
-
// let subs: any
|
|
17
|
-
// if (!__DEV__)
|
|
18
|
-
// if (can_screencapture != 1) {
|
|
19
|
-
// CaptureProtection.prevent();
|
|
20
|
-
// // subs = RNPrevent?.addListener?.(() => { })
|
|
21
|
-
// }
|
|
22
|
-
// return () => {
|
|
23
|
-
// if (!__DEV__)
|
|
24
|
-
// if (can_screencapture != 1) {
|
|
25
|
-
// setTimeout(() => {
|
|
26
|
-
// CaptureProtection.allow();
|
|
27
|
-
// }, 500);
|
|
28
|
-
// // subs?.remove?.()
|
|
29
|
-
// }
|
|
30
|
-
// }
|
|
31
|
-
// }, [])
|
|
32
|
-
|
|
33
|
-
// return null
|
|
34
|
-
// }
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
// // useLibs
|
|
2
|
-
|
|
3
|
-
// import { UserClass } from 'esoftplay/cache/user/class/import';
|
|
4
|
-
// import { useEffect } from 'react';
|
|
5
|
-
// import RNPrevent from "react-native-screenshot-prevent";
|
|
6
|
-
|
|
7
|
-
// export interface EventSecure_pageProps {
|
|
8
|
-
|
|
9
|
-
// }
|
|
10
|
-
// export default function m(): any {
|
|
11
|
-
// const can_screencapture = UserClass.state().get('config', 'can_screencapture')
|
|
12
|
-
// // const focus = useIsFocused()
|
|
13
|
-
|
|
14
|
-
// useEffect(() => {
|
|
15
|
-
// let subs: any
|
|
16
|
-
// if (!__DEV__)
|
|
17
|
-
// if (can_screencapture != 1) {
|
|
18
|
-
// RNPrevent?.enabled?.(true)
|
|
19
|
-
// RNPrevent?.enableSecureView?.()
|
|
20
|
-
// // subs = RNPrevent?.addListener?.(() => { })
|
|
21
|
-
// }
|
|
22
|
-
// return () => {
|
|
23
|
-
// if (!__DEV__)
|
|
24
|
-
// if (can_screencapture != 1) {
|
|
25
|
-
// setTimeout(() => {
|
|
26
|
-
// RNPrevent?.disableSecureView?.()
|
|
27
|
-
// RNPrevent?.enabled?.(false)
|
|
28
|
-
// }, 500)
|
|
29
|
-
// // subs?.remove?.()
|
|
30
|
-
// }
|
|
31
|
-
// }
|
|
32
|
-
// }, [])
|
|
33
|
-
|
|
34
|
-
// return null
|
|
35
|
-
// }
|