@tyrads.com/tyrads-sdk 3.0.0-beta.0 → 3.2.0-beta.0
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/android/build.gradle +1 -1
- package/android/src/main/java/com/tyradssdk/TyradsSdkModule.kt +130 -29
- package/ios/Tyrads/AcmoAssets.swift +14 -0
- package/ios/Tyrads/ApiHeaders.swift +1 -0
- package/ios/Tyrads/InitModel.swift +3 -0
- package/ios/Tyrads/Tyrads.swift +255 -213
- package/ios/Tyrads/WebViewController.swift +195 -0
- package/ios/Tyrads/core/utils/AcmoKeyNames.swift +29 -0
- package/ios/Tyrads/core/utils/ColorExtension.swift +55 -0
- package/ios/Tyrads/core/utils/Services/LocalizationService.swift +175 -0
- package/ios/Tyrads/helpers/device_details.swift +160 -0
- package/ios/Tyrads/legal/AcmoPrivacyPage.swift +353 -0
- package/ios/Tyrads/legal/PrivacyPageController.swift +31 -0
- package/ios/Tyrads/user/AcmoUserUpdatePage.swift +302 -0
- package/ios/Tyrads/user/AcmoUsersUpdateController.swift +26 -0
- package/ios/Tyrads/user/Repository.swift +89 -0
- package/ios/TyradsSdk.mm +22 -4
- package/ios/TyradsSdk.swift +101 -31
- package/lib/commonjs/acmo/core/helpers/launcher.js +20 -0
- package/lib/commonjs/acmo/core/helpers/launcher.js.map +1 -0
- package/lib/commonjs/acmo/core/helpers/native_methods.js +37 -0
- package/lib/commonjs/acmo/core/helpers/native_methods.js.map +1 -0
- package/lib/commonjs/acmo/core/helpers/numeral.js +19 -0
- package/lib/commonjs/acmo/core/helpers/numeral.js.map +1 -0
- package/lib/commonjs/acmo/core/services/localization_service.js +164 -0
- package/lib/commonjs/acmo/core/services/localization_service.js.map +1 -0
- package/lib/commonjs/acmo/core/storage/storage.js +15 -1
- package/lib/commonjs/acmo/core/storage/storage.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js +79 -0
- package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js +7 -10
- package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js +141 -0
- package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
- package/lib/commonjs/acmo/{core/marquee.js → modules/dashboard/components/custom_shimmer.js} +46 -34
- package/lib/commonjs/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js +263 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js +203 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js +87 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js +16 -14
- package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js +111 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/repository.js +108 -32
- package/lib/commonjs/acmo/modules/dashboard/repository.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/top_offers.js +85 -63
- package/lib/commonjs/acmo/modules/dashboard/top_offers.js.map +1 -1
- package/lib/commonjs/acmo/modules/localization/localization_context.js +56 -0
- package/lib/commonjs/acmo/modules/localization/localization_context.js.map +1 -0
- package/lib/commonjs/assets/images/angle_up.png +0 -0
- package/lib/commonjs/assets/images/diamond.png +0 -0
- package/lib/commonjs/assets/images/info.png +0 -0
- package/lib/commonjs/assets/images/info_icon.png +0 -0
- package/lib/commonjs/assets/images/premium-emptybg.jpeg +0 -0
- package/lib/commonjs/assets/images/rank_1.png +0 -0
- package/lib/commonjs/assets/images/rank_2.png +0 -0
- package/lib/commonjs/assets/images/rank_3.png +0 -0
- package/lib/commonjs/assets/images/rank_4.png +0 -0
- package/lib/commonjs/assets/images/rank_5.png +0 -0
- package/lib/commonjs/index.js +50 -16
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/acmo/core/helpers/launcher.js +15 -0
- package/lib/module/acmo/core/helpers/launcher.js.map +1 -0
- package/lib/module/acmo/core/helpers/native_methods.js +33 -0
- package/lib/module/acmo/core/helpers/native_methods.js.map +1 -0
- package/lib/module/acmo/core/helpers/numeral.js +14 -0
- package/lib/module/acmo/core/helpers/numeral.js.map +1 -0
- package/lib/module/acmo/core/services/localization_service.js +159 -0
- package/lib/module/acmo/core/services/localization_service.js.map +1 -0
- package/lib/module/acmo/core/storage/storage.js +13 -0
- package/lib/module/acmo/core/storage/storage.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/active_offers_button.js +73 -0
- package/lib/module/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/custom_card.js +7 -10
- package/lib/module/acmo/modules/dashboard/components/custom_card.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/custom_scroller.js +135 -0
- package/lib/module/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js +66 -0
- package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/offer_card.js +257 -0
- package/lib/module/acmo/modules/dashboard/components/offer_card.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/offer_list_item.js +197 -0
- package/lib/module/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js +82 -0
- package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/premium_header.js +16 -14
- package/lib/module/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/premium_loading.js +106 -0
- package/lib/module/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/repository.js +105 -30
- package/lib/module/acmo/modules/dashboard/repository.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/top_offers.js +86 -64
- package/lib/module/acmo/modules/dashboard/top_offers.js.map +1 -1
- package/lib/module/acmo/modules/localization/localization_context.js +45 -0
- package/lib/module/acmo/modules/localization/localization_context.js.map +1 -0
- package/lib/module/assets/images/angle_up.png +0 -0
- package/lib/module/assets/images/diamond.png +0 -0
- package/lib/module/assets/images/info.png +0 -0
- package/lib/module/assets/images/info_icon.png +0 -0
- package/lib/module/assets/images/premium-emptybg.jpeg +0 -0
- package/lib/module/assets/images/rank_1.png +0 -0
- package/lib/module/assets/images/rank_2.png +0 -0
- package/lib/module/assets/images/rank_3.png +0 -0
- package/lib/module/assets/images/rank_4.png +0 -0
- package/lib/module/assets/images/rank_5.png +0 -0
- package/lib/module/index.js +49 -17
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts +3 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts +6 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts +2 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts +18 -0
- package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts +1 -0
- package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts +2 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts +14 -0
- package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +8 -6
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts +3 -0
- package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts +6 -0
- package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts +2 -0
- package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts +18 -0
- package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/storage/storage.d.ts +1 -0
- package/lib/typescript/module/src/acmo/core/storage/storage.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts +2 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
- package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts +14 -0
- package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +8 -6
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +3 -6
- package/readme.md +8 -8
- package/src/acmo/core/helpers/launcher.ts +14 -0
- package/src/acmo/core/helpers/native_methods.ts +43 -0
- package/src/acmo/core/helpers/numeral.ts +14 -0
- package/src/acmo/core/services/localization_service.ts +200 -0
- package/src/acmo/core/storage/storage.ts +14 -0
- package/src/acmo/core/types/types.d.ts +11 -13
- package/src/acmo/modules/dashboard/components/active_offers_button.tsx +62 -0
- package/src/acmo/modules/dashboard/components/custom_card.tsx +5 -8
- package/src/acmo/modules/dashboard/components/custom_scroller.tsx +164 -0
- package/src/acmo/modules/dashboard/components/custom_shimmer.tsx +75 -0
- package/src/acmo/modules/dashboard/components/offer_card.tsx +248 -0
- package/src/acmo/modules/dashboard/components/offer_list_item.tsx +228 -0
- package/src/acmo/modules/dashboard/components/premium_empty_widget.tsx +79 -0
- package/src/acmo/modules/dashboard/components/premium_header.tsx +14 -13
- package/src/acmo/modules/dashboard/components/premium_loading.tsx +72 -0
- package/src/acmo/modules/dashboard/repository.ts +121 -46
- package/src/acmo/modules/dashboard/top_offers.tsx +105 -53
- package/src/acmo/modules/localization/localization_context.tsx +52 -0
- package/src/assets/images/angle_up.png +0 -0
- package/src/assets/images/diamond.png +0 -0
- package/src/assets/images/info.png +0 -0
- package/src/assets/images/info_icon.png +0 -0
- package/src/assets/images/premium-emptybg.jpeg +0 -0
- package/src/assets/images/rank_1.png +0 -0
- package/src/assets/images/rank_2.png +0 -0
- package/src/assets/images/rank_3.png +0 -0
- package/src/assets/images/rank_4.png +0 -0
- package/src/assets/images/rank_5.png +0 -0
- package/src/index.tsx +76 -34
- package/lib/commonjs/acmo/core/marquee.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js +0 -87
- package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js +0 -48
- package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js +0 -158
- package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js +0 -180
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js +0 -102
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js +0 -41
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js +0 -214
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
- package/lib/commonjs/i18n.js +0 -112
- package/lib/commonjs/i18n.js.map +0 -1
- package/lib/module/acmo/core/marquee.js +0 -54
- package/lib/module/acmo/core/marquee.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/auto_scroller.js +0 -81
- package/lib/module/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/my_games_button.js +0 -43
- package/lib/module/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/offer_info_section.js +0 -153
- package/lib/module/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_1.js +0 -174
- package/lib/module/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_2.js +0 -97
- package/lib/module/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_3.js +0 -36
- package/lib/module/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_4.js +0 -209
- package/lib/module/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
- package/lib/module/i18n.js +0 -107
- package/lib/module/i18n.js.map +0 -1
- package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts +0 -11
- package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/i18n.d.ts +0 -3
- package/lib/typescript/commonjs/src/i18n.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/core/marquee.d.ts +0 -11
- package/lib/typescript/module/src/acmo/core/marquee.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
- package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
- package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
- package/lib/typescript/module/src/i18n.d.ts +0 -3
- package/lib/typescript/module/src/i18n.d.ts.map +0 -1
- package/src/acmo/core/marquee.tsx +0 -62
- package/src/acmo/modules/dashboard/components/auto_scroller.tsx +0 -85
- package/src/acmo/modules/dashboard/components/my_games_button.tsx +0 -40
- package/src/acmo/modules/dashboard/components/offer_info_section.tsx +0 -139
- package/src/acmo/modules/dashboard/components/premium_option_1.tsx +0 -163
- package/src/acmo/modules/dashboard/components/premium_option_2.tsx +0 -100
- package/src/acmo/modules/dashboard/components/premium_option_3.tsx +0 -42
- package/src/acmo/modules/dashboard/components/premium_option_4.tsx +0 -185
- package/src/i18n.ts +0 -115
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_localization_context","_jsxRuntime","e","__esModule","default","ActiveOffersButton","premiumColor","activeCount","onPress","t","useLocalization","jsx","TouchableOpacity","style","styles","button","borderColor","children","jsxs","View","flexDirection","alignItems","Text","buttonText","color","activeCountContainer","activeCountText","StyleSheet","create","borderRadius","paddingHorizontal","paddingVertical","height","justifyContent","marginHorizontal","marginBottom","borderWidth","fontSize","fontWeight","marginLeft","width","backgroundColor","_default","exports"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/active_offers_button.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,qBAAA,GAAAF,OAAA;AAA0E,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAC1E;;AAQA,MAAMG,kBAAkD,GAAGA,CAAC;EAAEC,YAAY;EAAEC,WAAW;EAAEC;AAAQ,CAAC,KAAK;EACrG,MAAM;IAAEC;EAAE,CAAC,GAAG,IAAAC,qCAAe,EAAC,CAAC;EAC/B,oBACE,IAAAT,WAAA,CAAAU,GAAA,EAACZ,YAAA,CAAAa,gBAAgB;IACfC,KAAK,EAAE,CAACC,MAAM,CAACC,MAAM,EAAE;MAAEC,WAAW,EAAEV;IAAa,CAAC,CAAE;IACtDE,OAAO,EAAEA,CAAA,KAAMA,OAAO,IAAIA,OAAO,CAAC,eAAe,CAAE;IAAAS,QAAA,eAEnD,IAAAhB,WAAA,CAAAiB,IAAA,EAACnB,YAAA,CAAAoB,IAAI;MAACN,KAAK,EAAE;QAAEO,aAAa,EAAE,KAAK;QAAEC,UAAU,EAAE;MAAS,CAAE;MAAAJ,QAAA,gBAC1D,IAAAhB,WAAA,CAAAU,GAAA,EAACZ,YAAA,CAAAuB,IAAI;QAACT,KAAK,EAAE,CAACC,MAAM,CAACS,UAAU,EAAE;UAAEC,KAAK,EAAElB;QAAa,CAAC,CAAE;QAAAW,QAAA,EAAER,CAAC,CAAC,iCAAiC;MAAC,CAAO,CAAC,EACvGF,WAAW,GAAG,CAAC,iBACd,IAAAN,WAAA,CAAAU,GAAA,EAACZ,YAAA,CAAAoB,IAAI;QAACN,KAAK,EAAEC,MAAM,CAACW,oBAAqB;QAAAR,QAAA,eACvC,IAAAhB,WAAA,CAAAU,GAAA,EAACZ,YAAA,CAAAuB,IAAI;UAACT,KAAK,EAAEC,MAAM,CAACY,eAAgB;UAAAT,QAAA,EAAEV,WAAW,GAAG,EAAE,GAAG,KAAK,GAAGA;QAAW,CAAO;MAAC,CAChF,CAAC;IAAA,CACL;EAAC,CACS,CAAC;AAEvB,CAAC;AAED,MAAMO,MAAM,GAAGa,uBAAU,CAACC,MAAM,CAAC;EAC/Bb,MAAM,EAAE;IACNc,YAAY,EAAE,EAAE;IAChBC,iBAAiB,EAAE,EAAE;IACrBC,eAAe,EAAE,CAAC;IAClBC,MAAM,EAAE,EAAE;IACVC,cAAc,EAAE,QAAQ;IACxBZ,UAAU,EAAE,QAAQ;IACpBa,gBAAgB,EAAE,EAAE;IACpBC,YAAY,EAAE,EAAE;IAChBC,WAAW,EAAE;EACf,CAAC;EACDb,UAAU,EAAE;IACVc,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE;EACd,CAAC;EACDb,oBAAoB,EAAE;IACpBc,UAAU,EAAE,CAAC;IACbC,KAAK,EAAE,EAAE;IACTR,MAAM,EAAE,EAAE;IACVS,eAAe,EAAE,SAAS;IAC1BpB,UAAU,EAAE,QAAQ;IACpBY,cAAc,EAAE,QAAQ;IACxBJ,YAAY,EAAE;EAChB,CAAC;EACDH,eAAe,EAAE;IACfF,KAAK,EAAE,OAAO;IACda,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE;EACd;AACF,CAAC,CAAC;AAAC,IAAAI,QAAA,GAAAC,OAAA,CAAAvC,OAAA,GAEYC,kBAAkB","ignoreList":[]}
|
@@ -20,21 +20,18 @@ const CustomCard = ({
|
|
20
20
|
const styles = _reactNative.StyleSheet.create({
|
21
21
|
card: {
|
22
22
|
backgroundColor: 'white',
|
23
|
-
|
24
|
-
borderTopRightRadius: 20,
|
25
|
-
borderBottomLeftRadius: 14,
|
26
|
-
borderBottomRightRadius: 14,
|
23
|
+
borderRadius: 16,
|
27
24
|
paddingTop: 6,
|
28
25
|
paddingBottom: 5,
|
29
26
|
shadowColor: '#000',
|
27
|
+
alignSelf: 'center',
|
30
28
|
shadowOffset: {
|
31
|
-
width:
|
32
|
-
height:
|
29
|
+
width: 0,
|
30
|
+
height: 2
|
33
31
|
},
|
34
|
-
shadowOpacity: 0.
|
35
|
-
shadowRadius:
|
36
|
-
elevation: 4
|
37
|
-
alignSelf: 'center'
|
32
|
+
shadowOpacity: 0.24,
|
33
|
+
shadowRadius: 3.5,
|
34
|
+
elevation: 4
|
38
35
|
}
|
39
36
|
});
|
40
37
|
var _default = exports.default = CustomCard;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_jsxRuntime","e","__esModule","default","CustomCard","children","style","jsx","View","styles","card","StyleSheet","create","backgroundColor","
|
1
|
+
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_jsxRuntime","e","__esModule","default","CustomCard","children","style","jsx","View","styles","card","StyleSheet","create","backgroundColor","borderRadius","paddingTop","paddingBottom","shadowColor","alignSelf","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","_default","exports"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/custom_card.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAAgE,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAOhE,MAAMG,UAAqC,GAAGA,CAAC;EAAEC,QAAQ;EAAEC;AAAM,CAAC,KAAK;EACrE,oBAAO,IAAAN,WAAA,CAAAO,GAAA,EAACR,YAAA,CAAAS,IAAI;IAACF,KAAK,EAAE,CAACG,MAAM,CAACC,IAAI,EAAEJ,KAAK,CAAE;IAAAD,QAAA,EAAEA;EAAQ,CAAO,CAAC;AAC7D,CAAC;AAED,MAAMI,MAAM,GAAGE,uBAAU,CAACC,MAAM,CAAC;EAC/BF,IAAI,EAAE;IACJG,eAAe,EAAE,OAAO;IACxBC,YAAY,EAAE,EAAE;IAChBC,UAAU,EAAE,CAAC;IACbC,aAAa,EAAE,CAAC;IAChBC,WAAW,EAAE,MAAM;IACnBC,SAAS,EAAE,QAAQ;IACnBC,YAAY,EAAE;MAAEC,KAAK,EAAE,CAAC;MAAEC,MAAM,EAAE;IAAE,CAAC;IACrCC,aAAa,EAAE,IAAI;IACnBC,YAAY,EAAE,GAAG;IACjBC,SAAS,EAAE;EACb;AACF,CAAC,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,CAAAvB,OAAA,GAEYC,UAAU","ignoreList":[]}
|
@@ -0,0 +1,141 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
8
|
+
var _reactNative = require("react-native");
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
10
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
11
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
12
|
+
const AcmoScrollPager = ({
|
13
|
+
totalPages,
|
14
|
+
delayInMillis = 5000,
|
15
|
+
content,
|
16
|
+
viewportFraction = 0.92,
|
17
|
+
scaleFactor = 0.94,
|
18
|
+
spacing = 2,
|
19
|
+
indicatorStyle,
|
20
|
+
activeIndicatorColor = 'red',
|
21
|
+
inactiveIndicatorColor = 'lightgray'
|
22
|
+
}) => {
|
23
|
+
const scrollX = (0, _react.useRef)(new _reactNative.Animated.Value(0)).current;
|
24
|
+
const scrollViewRef = (0, _react.useRef)(null);
|
25
|
+
const [currentPage, setCurrentPage] = (0, _react.useState)(0);
|
26
|
+
const [containerWidth, setContainerWidth] = (0, _react.useState)(null);
|
27
|
+
const intervalRef = (0, _react.useRef)(null);
|
28
|
+
const onContainerLayout = e => {
|
29
|
+
const {
|
30
|
+
width
|
31
|
+
} = e.nativeEvent.layout;
|
32
|
+
if (width !== containerWidth) setContainerWidth(width);
|
33
|
+
};
|
34
|
+
(0, _react.useEffect)(() => {
|
35
|
+
if (!containerWidth) return;
|
36
|
+
const itemWidth = containerWidth * viewportFraction;
|
37
|
+
const offset = itemWidth + spacing;
|
38
|
+
intervalRef.current = setInterval(() => {
|
39
|
+
const next = (currentPage + 1) % totalPages;
|
40
|
+
setCurrentPage(next);
|
41
|
+
scrollViewRef.current.scrollTo({
|
42
|
+
x: next * offset,
|
43
|
+
animated: true
|
44
|
+
});
|
45
|
+
}, delayInMillis);
|
46
|
+
return () => {
|
47
|
+
if (intervalRef.current) clearInterval(intervalRef.current);
|
48
|
+
};
|
49
|
+
}, [containerWidth, currentPage, delayInMillis, totalPages, viewportFraction, spacing]);
|
50
|
+
const handleScroll = _reactNative.Animated.event([{
|
51
|
+
nativeEvent: {
|
52
|
+
contentOffset: {
|
53
|
+
x: scrollX
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}], {
|
57
|
+
useNativeDriver: true,
|
58
|
+
listener: event => {
|
59
|
+
if (!containerWidth) return;
|
60
|
+
const offset = containerWidth * viewportFraction + spacing;
|
61
|
+
const index = Math.round(event.nativeEvent.contentOffset.x / offset);
|
62
|
+
setCurrentPage(index);
|
63
|
+
}
|
64
|
+
});
|
65
|
+
const renderIndicators = () => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
66
|
+
style: [styles.indicatorContainer, indicatorStyle],
|
67
|
+
children: Array.from({
|
68
|
+
length: totalPages
|
69
|
+
}, (_, i) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
70
|
+
style: [styles.indicator, {
|
71
|
+
backgroundColor: i === currentPage ? activeIndicatorColor : inactiveIndicatorColor
|
72
|
+
}]
|
73
|
+
}, i))
|
74
|
+
});
|
75
|
+
if (!containerWidth) {
|
76
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
77
|
+
onLayout: onContainerLayout,
|
78
|
+
style: {
|
79
|
+
width: '100%'
|
80
|
+
}
|
81
|
+
});
|
82
|
+
}
|
83
|
+
const itemWidth = containerWidth * viewportFraction;
|
84
|
+
const itemOffset = itemWidth + spacing;
|
85
|
+
const sidePadding = (containerWidth - itemWidth - 16) / 2;
|
86
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
87
|
+
onLayout: onContainerLayout,
|
88
|
+
style: {
|
89
|
+
width: '100%',
|
90
|
+
alignItems: 'center'
|
91
|
+
},
|
92
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.ScrollView, {
|
93
|
+
ref: scrollViewRef,
|
94
|
+
horizontal: true,
|
95
|
+
pagingEnabled: false,
|
96
|
+
snapToInterval: itemOffset,
|
97
|
+
decelerationRate: "fast",
|
98
|
+
showsHorizontalScrollIndicator: false,
|
99
|
+
scrollEventThrottle: 16,
|
100
|
+
onScroll: handleScroll,
|
101
|
+
contentContainerStyle: {
|
102
|
+
paddingHorizontal: sidePadding
|
103
|
+
},
|
104
|
+
children: Array.from({
|
105
|
+
length: totalPages
|
106
|
+
}, (_, i) => {
|
107
|
+
const inputRange = [itemOffset * (i - 1), itemOffset * i, itemOffset * (i + 1)];
|
108
|
+
const scale = scrollX.interpolate({
|
109
|
+
inputRange,
|
110
|
+
outputRange: [scaleFactor, 1, scaleFactor],
|
111
|
+
extrapolate: 'clamp'
|
112
|
+
});
|
113
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
|
114
|
+
style: {
|
115
|
+
width: itemWidth,
|
116
|
+
transform: [{
|
117
|
+
scale
|
118
|
+
}]
|
119
|
+
},
|
120
|
+
children: content(i)
|
121
|
+
}, i);
|
122
|
+
})
|
123
|
+
}), renderIndicators()]
|
124
|
+
});
|
125
|
+
};
|
126
|
+
const styles = _reactNative.StyleSheet.create({
|
127
|
+
indicatorContainer: {
|
128
|
+
flexDirection: 'row',
|
129
|
+
justifyContent: 'center',
|
130
|
+
marginTop: 6,
|
131
|
+
marginBottom: 8
|
132
|
+
},
|
133
|
+
indicator: {
|
134
|
+
width: 8,
|
135
|
+
height: 8,
|
136
|
+
borderRadius: 4,
|
137
|
+
marginHorizontal: 4
|
138
|
+
}
|
139
|
+
});
|
140
|
+
var _default = exports.default = AcmoScrollPager;
|
141
|
+
//# sourceMappingURL=custom_scroller.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","AcmoScrollPager","totalPages","delayInMillis","content","viewportFraction","scaleFactor","spacing","indicatorStyle","activeIndicatorColor","inactiveIndicatorColor","scrollX","useRef","Animated","Value","current","scrollViewRef","currentPage","setCurrentPage","useState","containerWidth","setContainerWidth","intervalRef","onContainerLayout","width","nativeEvent","layout","useEffect","itemWidth","offset","setInterval","next","scrollTo","x","animated","clearInterval","handleScroll","event","contentOffset","useNativeDriver","listener","index","Math","round","renderIndicators","jsx","View","style","styles","indicatorContainer","children","Array","from","length","_","indicator","backgroundColor","onLayout","itemOffset","sidePadding","jsxs","alignItems","ScrollView","ref","horizontal","pagingEnabled","snapToInterval","decelerationRate","showsHorizontalScrollIndicator","scrollEventThrottle","onScroll","contentContainerStyle","paddingHorizontal","inputRange","scale","interpolate","outputRange","extrapolate","transform","StyleSheet","create","flexDirection","justifyContent","marginTop","marginBottom","height","borderRadius","marginHorizontal","_default","exports"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/custom_scroller.tsx"],"mappings":"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","ignoreList":[]}
|
package/lib/commonjs/acmo/{core/marquee.js → modules/dashboard/components/custom_shimmer.js}
RENAMED
@@ -9,52 +9,64 @@ var _reactNative = require("react-native");
|
|
9
9
|
var _jsxRuntime = require("react/jsx-runtime");
|
10
10
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
11
11
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
12
|
-
const
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
style
|
12
|
+
const SCREEN_WIDTH = _reactNative.Dimensions.get('window').width;
|
13
|
+
const Shimmer = ({
|
14
|
+
width = '100%',
|
15
|
+
shimmerHeight: height = 16,
|
16
|
+
style,
|
17
|
+
duration = 1500
|
17
18
|
}) => {
|
18
|
-
const translateX = (0, _react.useRef)(new _reactNative.Animated.Value(
|
19
|
+
const translateX = (0, _react.useRef)(new _reactNative.Animated.Value(-1)).current;
|
19
20
|
(0, _react.useEffect)(() => {
|
20
|
-
const
|
21
|
-
|
22
|
-
|
23
|
-
toValue: -textWidth,
|
24
|
-
duration: (textWidth + screenWidth) * speed,
|
21
|
+
const animation = _reactNative.Animated.loop(_reactNative.Animated.timing(translateX, {
|
22
|
+
toValue: 1,
|
23
|
+
duration,
|
25
24
|
useNativeDriver: true
|
26
|
-
})
|
27
|
-
toValue: screenWidth,
|
28
|
-
duration: 0,
|
29
|
-
useNativeDriver: true
|
30
|
-
})]), {
|
31
|
-
iterations: repeat
|
32
|
-
});
|
25
|
+
}));
|
33
26
|
animation.start();
|
34
27
|
return () => animation.stop();
|
35
|
-
}, [
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
28
|
+
}, [translateX, duration]);
|
29
|
+
const translateXInterpolate = translateX.interpolate({
|
30
|
+
inputRange: [-1, 1],
|
31
|
+
outputRange: [-SCREEN_WIDTH, SCREEN_WIDTH]
|
32
|
+
});
|
33
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
34
|
+
style: [styles.container, {
|
35
|
+
width
|
36
|
+
}, style],
|
37
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
38
|
+
style: [styles.shimmerBackground, {
|
39
|
+
height
|
40
|
+
}]
|
41
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
|
42
|
+
style: [styles.shimmerOverlay, {
|
43
|
+
width: SCREEN_WIDTH,
|
44
|
+
height,
|
41
45
|
transform: [{
|
42
|
-
translateX
|
46
|
+
translateX: translateXInterpolate
|
43
47
|
}]
|
44
|
-
}]
|
45
|
-
|
46
|
-
})
|
48
|
+
}]
|
49
|
+
})]
|
47
50
|
});
|
48
51
|
};
|
49
52
|
const styles = _reactNative.StyleSheet.create({
|
50
53
|
container: {
|
51
54
|
overflow: 'hidden',
|
52
|
-
|
55
|
+
backgroundColor: '#e1e1e1',
|
56
|
+
borderRadius: 4
|
57
|
+
},
|
58
|
+
shimmerBackground: {
|
59
|
+
flex: 1,
|
60
|
+
backgroundColor: '#d3d3d3'
|
53
61
|
},
|
54
|
-
|
55
|
-
|
56
|
-
|
62
|
+
shimmerOverlay: {
|
63
|
+
position: 'absolute',
|
64
|
+
top: 0,
|
65
|
+
left: 0,
|
66
|
+
backgroundColor: 'rgba(255,255,255,0.5)',
|
67
|
+
opacity: 0.4,
|
68
|
+
borderRadius: 4
|
57
69
|
}
|
58
70
|
});
|
59
|
-
var _default = exports.default =
|
60
|
-
//# sourceMappingURL=
|
71
|
+
var _default = exports.default = Shimmer;
|
72
|
+
//# sourceMappingURL=custom_shimmer.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","SCREEN_WIDTH","Dimensions","width","Shimmer","shimmerHeight","height","style","duration","translateX","useRef","Animated","Value","current","useEffect","animation","loop","timing","toValue","useNativeDriver","start","stop","translateXInterpolate","interpolate","inputRange","outputRange","jsxs","View","styles","container","children","jsx","shimmerBackground","shimmerOverlay","transform","StyleSheet","create","overflow","backgroundColor","borderRadius","flex","position","top","left","opacity","_default","exports"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/custom_shimmer.tsx"],"mappings":"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","ignoreList":[]}
|
@@ -0,0 +1,263 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
var _react = _interopRequireWildcard(require("react"));
|
8
|
+
var _numeral = require("../../../core/helpers/numeral.js");
|
9
|
+
var _reactNative = require("react-native");
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
11
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
12
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
13
|
+
const AcmoOfferCard = ({
|
14
|
+
item,
|
15
|
+
onButtonClick,
|
16
|
+
currencySaleModel,
|
17
|
+
premiumColor,
|
18
|
+
isLoading,
|
19
|
+
onTap
|
20
|
+
}) => {
|
21
|
+
const [loading, setLoading] = (0, _react.useState)(isLoading);
|
22
|
+
const bonusMultiplier = currencySaleModel?.multiplier ?? 1;
|
23
|
+
const itemHeight = 132;
|
24
|
+
const handleClick = async () => {
|
25
|
+
if (loading) return;
|
26
|
+
setLoading(true);
|
27
|
+
await onButtonClick();
|
28
|
+
setLoading(false);
|
29
|
+
};
|
30
|
+
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
31
|
+
activeOpacity: 0.9,
|
32
|
+
style: styles.container,
|
33
|
+
onPress: () => {
|
34
|
+
if (!loading && onTap) onTap();
|
35
|
+
},
|
36
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
37
|
+
style: styles.cardShadow,
|
38
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
39
|
+
style: [styles.imageContainer, {
|
40
|
+
height: itemHeight
|
41
|
+
}],
|
42
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
43
|
+
source: {
|
44
|
+
uri: item.creative.creativePacks[0]?.creatives[0]?.fileUrl || ''
|
45
|
+
},
|
46
|
+
style: styles.image
|
47
|
+
}), item.premium && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
48
|
+
style: styles.diamondIcon,
|
49
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
50
|
+
style: {
|
51
|
+
width: 12,
|
52
|
+
height: 12,
|
53
|
+
objectFit: 'contain',
|
54
|
+
tintColor: 'white'
|
55
|
+
},
|
56
|
+
source: require('../../../../assets/images/diamond.png')
|
57
|
+
})
|
58
|
+
})]
|
59
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
60
|
+
style: styles.detailCard,
|
61
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
62
|
+
style: styles.header,
|
63
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
64
|
+
source: {
|
65
|
+
uri: item.app.thumbnail
|
66
|
+
},
|
67
|
+
style: styles.appIcon
|
68
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
69
|
+
style: styles.title,
|
70
|
+
children: item.app.title
|
71
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
72
|
+
style: styles.payoutSection,
|
73
|
+
children: [currencySaleModel?.multiplier && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
74
|
+
style: styles.strikePayout,
|
75
|
+
children: (0, _numeral.numeral)(item.campaignPayout.totalPlayablePayoutConverted)
|
76
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
|
77
|
+
style: styles.payoutRow,
|
78
|
+
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
79
|
+
source: {
|
80
|
+
uri: item.currency.adUnitCurrencyIcon
|
81
|
+
},
|
82
|
+
style: styles.currencyIcon
|
83
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
84
|
+
style: styles.payoutText,
|
85
|
+
children: (0, _numeral.numeral)(item.campaignPayout.totalPlayablePayoutConverted * bonusMultiplier)
|
86
|
+
})]
|
87
|
+
})]
|
88
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
89
|
+
onPress: onTap,
|
90
|
+
disabled: loading,
|
91
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Image, {
|
92
|
+
source: require('../../../../assets/images/info_icon.png'),
|
93
|
+
style: styles.infoIcon
|
94
|
+
})
|
95
|
+
})]
|
96
|
+
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
|
97
|
+
style: [styles.button, loading && styles.buttonDisabled, {
|
98
|
+
backgroundColor: loading ? '#888' : premiumColor || '#1C90DF'
|
99
|
+
}],
|
100
|
+
onPress: handleClick,
|
101
|
+
disabled: loading,
|
102
|
+
children: loading ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
|
103
|
+
color: "white"
|
104
|
+
}) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
|
105
|
+
style: styles.buttonText,
|
106
|
+
children: "Play Now"
|
107
|
+
})
|
108
|
+
})]
|
109
|
+
}), currencySaleModel?.multiplier && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
110
|
+
style: [styles.bonusBadge, {
|
111
|
+
backgroundColor: `${premiumColor}` || '#1C90DF'
|
112
|
+
}],
|
113
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.Text, {
|
114
|
+
style: styles.bonusText,
|
115
|
+
children: [currencySaleModel?.multiplier.toFixed(1), "x Bonus"]
|
116
|
+
})
|
117
|
+
}), currencySaleModel?.multiplier && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
|
118
|
+
style: [styles.trianlge, {
|
119
|
+
backgroundColor: `${premiumColor}cc` || '#1C90DF'
|
120
|
+
}]
|
121
|
+
})]
|
122
|
+
})
|
123
|
+
}, item.campaignId);
|
124
|
+
};
|
125
|
+
const styles = _reactNative.StyleSheet.create({
|
126
|
+
container: {
|
127
|
+
margin: 16,
|
128
|
+
width: "100%"
|
129
|
+
},
|
130
|
+
cardShadow: {
|
131
|
+
borderRadius: 16,
|
132
|
+
backgroundColor: 'white',
|
133
|
+
shadowColor: 'black',
|
134
|
+
shadowOffset: {
|
135
|
+
width: 0,
|
136
|
+
height: 16
|
137
|
+
},
|
138
|
+
shadowOpacity: 0.06,
|
139
|
+
shadowRadius: 18,
|
140
|
+
elevation: 4
|
141
|
+
},
|
142
|
+
imageContainer: {
|
143
|
+
borderTopLeftRadius: 16,
|
144
|
+
borderTopRightRadius: 16,
|
145
|
+
overflow: 'hidden'
|
146
|
+
},
|
147
|
+
image: {
|
148
|
+
width: '100%',
|
149
|
+
height: '100%',
|
150
|
+
resizeMode: 'cover'
|
151
|
+
},
|
152
|
+
diamondIcon: {
|
153
|
+
position: 'absolute',
|
154
|
+
top: 16,
|
155
|
+
right: 16,
|
156
|
+
backgroundColor: '#1E2020DD',
|
157
|
+
width: 28,
|
158
|
+
height: 28,
|
159
|
+
borderRadius: 8,
|
160
|
+
justifyContent: 'center',
|
161
|
+
alignItems: 'center'
|
162
|
+
},
|
163
|
+
diamondText: {
|
164
|
+
color: 'white',
|
165
|
+
fontSize: 14
|
166
|
+
},
|
167
|
+
detailCard: {
|
168
|
+
padding: 16
|
169
|
+
},
|
170
|
+
header: {
|
171
|
+
flexDirection: 'row',
|
172
|
+
justifyContent: 'space-between',
|
173
|
+
alignItems: 'center'
|
174
|
+
},
|
175
|
+
appIcon: {
|
176
|
+
width: 38,
|
177
|
+
height: 38,
|
178
|
+
borderRadius: 8,
|
179
|
+
marginRight: 8
|
180
|
+
},
|
181
|
+
title: {
|
182
|
+
flex: 1,
|
183
|
+
fontWeight: '600',
|
184
|
+
fontSize: 14
|
185
|
+
},
|
186
|
+
payoutSection: {
|
187
|
+
alignItems: 'flex-end'
|
188
|
+
},
|
189
|
+
strikePayout: {
|
190
|
+
textDecorationLine: 'line-through',
|
191
|
+
color: '#454646',
|
192
|
+
fontSize: 12
|
193
|
+
},
|
194
|
+
payoutRow: {
|
195
|
+
flexDirection: 'row',
|
196
|
+
alignItems: 'center'
|
197
|
+
},
|
198
|
+
currencyIcon: {
|
199
|
+
width: 16,
|
200
|
+
height: 16,
|
201
|
+
marginRight: 4
|
202
|
+
},
|
203
|
+
payoutText: {
|
204
|
+
fontWeight: '700',
|
205
|
+
fontSize: 14
|
206
|
+
},
|
207
|
+
infoIcon: {
|
208
|
+
width: 16,
|
209
|
+
height: 16,
|
210
|
+
marginLeft: 8
|
211
|
+
},
|
212
|
+
button: {
|
213
|
+
marginTop: 12,
|
214
|
+
height: 42,
|
215
|
+
borderRadius: 8,
|
216
|
+
justifyContent: 'center',
|
217
|
+
alignItems: 'center'
|
218
|
+
},
|
219
|
+
buttonDisabled: {
|
220
|
+
backgroundColor: '#e0e2e7'
|
221
|
+
},
|
222
|
+
buttonText: {
|
223
|
+
color: 'white',
|
224
|
+
fontWeight: '600',
|
225
|
+
fontSize: 14
|
226
|
+
},
|
227
|
+
bonusBadge: {
|
228
|
+
position: 'absolute',
|
229
|
+
top: 16,
|
230
|
+
left: -6,
|
231
|
+
paddingVertical: 8,
|
232
|
+
paddingHorizontal: 14,
|
233
|
+
borderTopRightRadius: 100,
|
234
|
+
borderTopLeftRadius: 10,
|
235
|
+
borderBottomRightRadius: 100,
|
236
|
+
shadowColor: 'black',
|
237
|
+
shadowOffset: {
|
238
|
+
width: 0,
|
239
|
+
height: 8
|
240
|
+
},
|
241
|
+
shadowOpacity: 0.3,
|
242
|
+
shadowRadius: 10,
|
243
|
+
backgroundColor: 'transparent'
|
244
|
+
},
|
245
|
+
trianlge: {
|
246
|
+
position: 'absolute',
|
247
|
+
top: 46.6,
|
248
|
+
left: -7.4,
|
249
|
+
zIndex: -10,
|
250
|
+
width: 20,
|
251
|
+
height: 10,
|
252
|
+
transform: [{
|
253
|
+
rotate: '65deg'
|
254
|
+
}]
|
255
|
+
},
|
256
|
+
bonusText: {
|
257
|
+
color: 'white',
|
258
|
+
fontWeight: '700',
|
259
|
+
fontSize: 12
|
260
|
+
}
|
261
|
+
});
|
262
|
+
var _default = exports.default = AcmoOfferCard;
|
263
|
+
//# sourceMappingURL=offer_card.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_numeral","_reactNative","_jsxRuntime","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","AcmoOfferCard","item","onButtonClick","currencySaleModel","premiumColor","isLoading","onTap","loading","setLoading","useState","bonusMultiplier","multiplier","itemHeight","handleClick","jsx","TouchableOpacity","activeOpacity","style","styles","container","onPress","children","jsxs","View","cardShadow","imageContainer","height","Image","source","uri","creative","creativePacks","creatives","fileUrl","image","premium","diamondIcon","width","objectFit","tintColor","detailCard","header","app","thumbnail","appIcon","Text","title","payoutSection","strikePayout","numeral","campaignPayout","totalPlayablePayoutConverted","payoutRow","currency","adUnitCurrencyIcon","currencyIcon","payoutText","disabled","infoIcon","button","buttonDisabled","backgroundColor","ActivityIndicator","color","buttonText","bonusBadge","bonusText","toFixed","trianlge","campaignId","StyleSheet","create","margin","borderRadius","shadowColor","shadowOffset","shadowOpacity","shadowRadius","elevation","borderTopLeftRadius","borderTopRightRadius","overflow","resizeMode","position","top","right","justifyContent","alignItems","diamondText","fontSize","padding","flexDirection","marginRight","flex","fontWeight","textDecorationLine","marginLeft","marginTop","left","paddingVertical","paddingHorizontal","borderBottomRightRadius","zIndex","transform","rotate","_default","exports"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/offer_card.tsx"],"mappings":"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","ignoreList":[]}
|