@tyrads.com/tyrads-sdk 3.0.0-beta.0 → 3.1.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 +21 -4
- package/ios/Tyrads/InitModel.swift +3 -0
- package/ios/Tyrads/Tyrads.swift +106 -191
- package/ios/Tyrads/WebViewController.swift +171 -0
- package/ios/Tyrads/helpers/device_details.swift +58 -0
- package/ios/TyradsSdk.mm +7 -1
- package/ios/TyradsSdk.swift +42 -27
- 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/modules/dashboard/components/active_offers_button.js +76 -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 +264 -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 +197 -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 +83 -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 +12 -10
- package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js +118 -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 +70 -63
- package/lib/commonjs/acmo/modules/dashboard/top_offers.js.map +1 -1
- 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 +11 -11
- 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/modules/dashboard/components/active_offers_button.js +70 -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 +191 -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 +78 -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 +12 -10
- package/lib/module/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/premium_loading.js +113 -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 +71 -64
- package/lib/module/acmo/modules/dashboard/top_offers.js.map +1 -1
- 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 +11 -11
- 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/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_loading.d.ts +9 -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/index.d.ts +4 -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/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_loading.d.ts +9 -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/index.d.ts +4 -6
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +3 -2
- package/readme.md +8 -8
- package/src/acmo/core/helpers/launcher.ts +14 -0
- package/src/acmo/core/types/types.d.ts +11 -13
- package/src/acmo/modules/dashboard/components/active_offers_button.tsx +61 -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 +225 -0
- package/src/acmo/modules/dashboard/components/premium_empty_widget.tsx +76 -0
- package/src/acmo/modules/dashboard/components/premium_header.tsx +8 -8
- package/src/acmo/modules/dashboard/components/premium_loading.tsx +78 -0
- package/src/acmo/modules/dashboard/repository.ts +121 -46
- package/src/acmo/modules/dashboard/top_offers.tsx +89 -52
- 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 +15 -18
- 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/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/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/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/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
@@ -1,209 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
import React from 'react';
|
4
|
-
import { View, Text, Image, StyleSheet, Dimensions, TouchableOpacity } from 'react-native';
|
5
|
-
import AutoScrollPagerWithIndicators from "./auto_scroller.js";
|
6
|
-
import numeral from 'numeral';
|
7
|
-
import { useTranslation } from 'react-i18next';
|
8
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
9
|
-
const {
|
10
|
-
width
|
11
|
-
} = Dimensions.get('window');
|
12
|
-
const PremiumOption4 = ({
|
13
|
-
data,
|
14
|
-
onCampaignPress,
|
15
|
-
premiumColor
|
16
|
-
}) => {
|
17
|
-
return /*#__PURE__*/_jsx(AutoScrollPagerWithIndicators, {
|
18
|
-
totalPages: data.length,
|
19
|
-
premiumColor: premiumColor,
|
20
|
-
content: page => /*#__PURE__*/_jsx(View, {
|
21
|
-
children: data[page] && /*#__PURE__*/_jsx(OfferBanner, {
|
22
|
-
details: data[page],
|
23
|
-
index: page,
|
24
|
-
premiumColor: premiumColor,
|
25
|
-
onCampaignPress: onCampaignPress
|
26
|
-
})
|
27
|
-
}, page)
|
28
|
-
});
|
29
|
-
};
|
30
|
-
const OfferBanner = ({
|
31
|
-
details,
|
32
|
-
index,
|
33
|
-
onCampaignPress,
|
34
|
-
premiumColor
|
35
|
-
}) => {
|
36
|
-
const {
|
37
|
-
t
|
38
|
-
} = useTranslation();
|
39
|
-
return /*#__PURE__*/_jsxs(View, {
|
40
|
-
style: styles.outerContainer,
|
41
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
42
|
-
style: styles.bannerContainer,
|
43
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
44
|
-
style: styles.bannerImage,
|
45
|
-
source: {
|
46
|
-
uri: details.fileUrl
|
47
|
-
},
|
48
|
-
resizeMode: "cover"
|
49
|
-
}), /*#__PURE__*/_jsxs(View, {
|
50
|
-
style: styles.starContainer,
|
51
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
52
|
-
source: require('../../../../assets/images/premium_star.png'),
|
53
|
-
style: [styles.starIcon, {
|
54
|
-
tintColor: premiumColor || '#1C90DF'
|
55
|
-
}]
|
56
|
-
}), /*#__PURE__*/_jsx(Text, {
|
57
|
-
style: styles.index,
|
58
|
-
numberOfLines: 1,
|
59
|
-
ellipsizeMode: "tail",
|
60
|
-
children: index + 1
|
61
|
-
})]
|
62
|
-
})]
|
63
|
-
}), /*#__PURE__*/_jsxs(View, {
|
64
|
-
style: styles.titleContainer,
|
65
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
66
|
-
style: {
|
67
|
-
flexDirection: 'row',
|
68
|
-
flex: 8,
|
69
|
-
width: '70%'
|
70
|
-
},
|
71
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
72
|
-
style: styles.gameIcon,
|
73
|
-
source: {
|
74
|
-
uri: details.thumbnail
|
75
|
-
},
|
76
|
-
resizeMode: "cover"
|
77
|
-
}), /*#__PURE__*/_jsxs(View, {
|
78
|
-
style: {
|
79
|
-
marginLeft: 10
|
80
|
-
},
|
81
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
82
|
-
style: styles.titleText,
|
83
|
-
children: details.title
|
84
|
-
}), /*#__PURE__*/_jsxs(View, {
|
85
|
-
style: styles.rewardDetails,
|
86
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
87
|
-
source: {
|
88
|
-
uri: details.currency.adUnitCurrencyIcon
|
89
|
-
},
|
90
|
-
resizeMode: "contain",
|
91
|
-
style: styles.coinIcon
|
92
|
-
}), /*#__PURE__*/_jsx(Text, {
|
93
|
-
style: styles.points,
|
94
|
-
children: numeral(details.points).format("0.00a").toUpperCase()
|
95
|
-
}), /*#__PURE__*/_jsxs(Text, {
|
96
|
-
style: styles.points,
|
97
|
-
children: ['', details.currency.adUnitCurrencyName]
|
98
|
-
}), /*#__PURE__*/_jsxs(Text, {
|
99
|
-
style: styles.rewards,
|
100
|
-
children: [' ', details.rewards, " ", t('dashboard.rewards', {
|
101
|
-
count: details.rewards
|
102
|
-
})]
|
103
|
-
})]
|
104
|
-
})]
|
105
|
-
})]
|
106
|
-
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
107
|
-
onPress: () => onCampaignPress && onCampaignPress(details.campaignId),
|
108
|
-
style: [styles.playButton, {
|
109
|
-
backgroundColor: premiumColor || '#1C90DF'
|
110
|
-
}],
|
111
|
-
children: /*#__PURE__*/_jsx(Text, {
|
112
|
-
style: styles.playButtonText,
|
113
|
-
children: t('dashboard.play_button')
|
114
|
-
})
|
115
|
-
})]
|
116
|
-
})]
|
117
|
-
});
|
118
|
-
};
|
119
|
-
const styles = StyleSheet.create({
|
120
|
-
outerContainer: {},
|
121
|
-
bannerContainer: {
|
122
|
-
width: width,
|
123
|
-
height: 190
|
124
|
-
},
|
125
|
-
bannerImage: {
|
126
|
-
flex: 1,
|
127
|
-
borderRadius: 8
|
128
|
-
},
|
129
|
-
starContainer: {
|
130
|
-
position: 'absolute',
|
131
|
-
top: 10,
|
132
|
-
left: 10,
|
133
|
-
backgroundColor: 'rgba(0,0,0,0)'
|
134
|
-
},
|
135
|
-
starIcon: {
|
136
|
-
width: 30,
|
137
|
-
height: 30
|
138
|
-
},
|
139
|
-
index: {
|
140
|
-
position: 'absolute',
|
141
|
-
top: 0,
|
142
|
-
left: 0,
|
143
|
-
right: 0,
|
144
|
-
bottom: 0,
|
145
|
-
textAlign: 'center',
|
146
|
-
textAlignVertical: 'center',
|
147
|
-
color: 'white',
|
148
|
-
fontSize: 14,
|
149
|
-
fontWeight: 'bold'
|
150
|
-
},
|
151
|
-
titleContainer: {
|
152
|
-
flex: 1,
|
153
|
-
width: '91.5%',
|
154
|
-
flexDirection: 'row',
|
155
|
-
justifyContent: 'space-between',
|
156
|
-
alignItems: 'center',
|
157
|
-
padding: 8,
|
158
|
-
backgroundColor: 'rgba(0,0,0,0.5)',
|
159
|
-
position: 'absolute',
|
160
|
-
bottom: 0,
|
161
|
-
left: 0,
|
162
|
-
right: 0
|
163
|
-
},
|
164
|
-
titleText: {
|
165
|
-
color: 'white',
|
166
|
-
fontSize: 14,
|
167
|
-
fontWeight: 'bold',
|
168
|
-
marginBottom: 4
|
169
|
-
},
|
170
|
-
gameIcon: {
|
171
|
-
width: 35,
|
172
|
-
height: 35,
|
173
|
-
borderRadius: 8
|
174
|
-
},
|
175
|
-
coinIcon: {
|
176
|
-
width: 16,
|
177
|
-
height: 16
|
178
|
-
},
|
179
|
-
points: {
|
180
|
-
fontSize: 12,
|
181
|
-
marginLeft: 4,
|
182
|
-
fontWeight: 'bold',
|
183
|
-
color: 'white'
|
184
|
-
},
|
185
|
-
rewardDetails: {
|
186
|
-
flexDirection: 'row',
|
187
|
-
alignItems: 'center'
|
188
|
-
},
|
189
|
-
rewards: {
|
190
|
-
fontSize: 10,
|
191
|
-
fontStyle: 'italic',
|
192
|
-
color: 'lightgray'
|
193
|
-
},
|
194
|
-
playButton: {
|
195
|
-
paddingHorizontal: 12,
|
196
|
-
paddingVertical: 2,
|
197
|
-
height: 31,
|
198
|
-
borderRadius: 8,
|
199
|
-
alignItems: 'center',
|
200
|
-
justifyContent: 'center'
|
201
|
-
},
|
202
|
-
playButtonText: {
|
203
|
-
fontSize: 16,
|
204
|
-
fontWeight: 'bold',
|
205
|
-
color: 'white'
|
206
|
-
}
|
207
|
-
});
|
208
|
-
export default PremiumOption4;
|
209
|
-
//# sourceMappingURL=premium_option_4.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"names":["React","View","Text","Image","StyleSheet","Dimensions","TouchableOpacity","AutoScrollPagerWithIndicators","numeral","useTranslation","jsx","_jsx","jsxs","_jsxs","width","get","PremiumOption4","data","onCampaignPress","premiumColor","totalPages","length","content","page","children","OfferBanner","details","index","t","style","styles","outerContainer","bannerContainer","bannerImage","source","uri","fileUrl","resizeMode","starContainer","require","starIcon","tintColor","numberOfLines","ellipsizeMode","titleContainer","flexDirection","flex","gameIcon","thumbnail","marginLeft","titleText","title","rewardDetails","currency","adUnitCurrencyIcon","coinIcon","points","format","toUpperCase","adUnitCurrencyName","rewards","count","onPress","campaignId","playButton","backgroundColor","playButtonText","create","height","borderRadius","position","top","left","right","bottom","textAlign","textAlignVertical","color","fontSize","fontWeight","justifyContent","alignItems","padding","marginBottom","fontStyle","paddingHorizontal","paddingVertical"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/premium_option_4.tsx"],"mappings":"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","ignoreList":[]}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type TextStyle } from 'react-native';
|
3
|
-
interface MarqueeTextProps {
|
4
|
-
text: string;
|
5
|
-
speed?: number;
|
6
|
-
repeat?: number;
|
7
|
-
style?: TextStyle;
|
8
|
-
}
|
9
|
-
declare const MarqueeText: React.FC<MarqueeTextProps>;
|
10
|
-
export default MarqueeText;
|
11
|
-
//# sourceMappingURL=marquee.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"marquee.d.ts","sourceRoot":"","sources":["../../../../../../src/acmo/core/marquee.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AACjD,OAAO,EAA0C,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAsC3C,CAAC;AAaF,eAAe,WAAW,CAAC"}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface AutoScrollPagerWithIndicatorsProps {
|
3
|
-
totalPages: number;
|
4
|
-
delayInMillis?: number;
|
5
|
-
premiumColor?: string;
|
6
|
-
content: (index: number) => React.ReactNode;
|
7
|
-
}
|
8
|
-
declare const AutoScrollPagerWithIndicators: React.FC<AutoScrollPagerWithIndicatorsProps>;
|
9
|
-
export default AutoScrollPagerWithIndicators;
|
10
|
-
//# sourceMappingURL=auto_scroller.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"auto_scroller.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/auto_scroller.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,UAAU,kCAAkC;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;CAC7C;AAED,QAAA,MAAM,6BAA6B,EAAE,KAAK,CAAC,EAAE,CAAC,kCAAkC,CAsD/E,CAAC;AAkBF,eAAe,6BAA6B,CAAC"}
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"my_games_button.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/my_games_button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,kBAAkB;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAClC;AAED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAU/C,CAAC;AAoBF,eAAe,aAAa,CAAC"}
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type ViewStyle } from "react-native";
|
3
|
-
interface OfferInfoSectionProps {
|
4
|
-
details: TransformedCampaign;
|
5
|
-
premiumColor?: string;
|
6
|
-
style?: ViewStyle;
|
7
|
-
onButtonPress: () => void;
|
8
|
-
}
|
9
|
-
declare const OfferInfoSection: React.FC<OfferInfoSectionProps>;
|
10
|
-
export default OfferInfoSection;
|
11
|
-
//# sourceMappingURL=offer_info_section.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"offer_info_section.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/offer_info_section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA+D,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAO3G,UAAU,qBAAqB;IAC7B,OAAO,EAAE,mBAAmB,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA0DrD,CAAC;AAiEF,eAAe,gBAAgB,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption1Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption1: React.FC<PremiumOption1Props>;
|
8
|
-
export default PremiumOption1;
|
9
|
-
//# sourceMappingURL=premium_option_1.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_1.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_1.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAmEjD,CAAC;AA4EF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption2Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption2: React.FC<PremiumOption2Props>;
|
8
|
-
export default PremiumOption2;
|
9
|
-
//# sourceMappingURL=premium_option_2.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_2.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAsBjD,CAAC;AAyDF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption3Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption3: React.FC<PremiumOption3Props>;
|
8
|
-
export default PremiumOption3;
|
9
|
-
//# sourceMappingURL=premium_option_3.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_3.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_3.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA4BjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption4Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption4: React.FC<PremiumOption4Props>;
|
8
|
-
export default PremiumOption4;
|
9
|
-
//# sourceMappingURL=premium_option_4.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_4.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_4.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgBjD,CAAC;AAmJF,eAAe,cAAc,CAAC"}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type TextStyle } from 'react-native';
|
3
|
-
interface MarqueeTextProps {
|
4
|
-
text: string;
|
5
|
-
speed?: number;
|
6
|
-
repeat?: number;
|
7
|
-
style?: TextStyle;
|
8
|
-
}
|
9
|
-
declare const MarqueeText: React.FC<MarqueeTextProps>;
|
10
|
-
export default MarqueeText;
|
11
|
-
//# sourceMappingURL=marquee.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"marquee.d.ts","sourceRoot":"","sources":["../../../../../../src/acmo/core/marquee.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AACjD,OAAO,EAA0C,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAsC3C,CAAC;AAaF,eAAe,WAAW,CAAC"}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface AutoScrollPagerWithIndicatorsProps {
|
3
|
-
totalPages: number;
|
4
|
-
delayInMillis?: number;
|
5
|
-
premiumColor?: string;
|
6
|
-
content: (index: number) => React.ReactNode;
|
7
|
-
}
|
8
|
-
declare const AutoScrollPagerWithIndicators: React.FC<AutoScrollPagerWithIndicatorsProps>;
|
9
|
-
export default AutoScrollPagerWithIndicators;
|
10
|
-
//# sourceMappingURL=auto_scroller.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"auto_scroller.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/auto_scroller.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,UAAU,kCAAkC;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;CAC7C;AAED,QAAA,MAAM,6BAA6B,EAAE,KAAK,CAAC,EAAE,CAAC,kCAAkC,CAsD/E,CAAC;AAkBF,eAAe,6BAA6B,CAAC"}
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"my_games_button.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/my_games_button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,kBAAkB;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAClC;AAED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAU/C,CAAC;AAoBF,eAAe,aAAa,CAAC"}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type ViewStyle } from "react-native";
|
3
|
-
interface OfferInfoSectionProps {
|
4
|
-
details: TransformedCampaign;
|
5
|
-
premiumColor?: string;
|
6
|
-
style?: ViewStyle;
|
7
|
-
onButtonPress: () => void;
|
8
|
-
}
|
9
|
-
declare const OfferInfoSection: React.FC<OfferInfoSectionProps>;
|
10
|
-
export default OfferInfoSection;
|
11
|
-
//# sourceMappingURL=offer_info_section.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"offer_info_section.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/offer_info_section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA+D,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAO3G,UAAU,qBAAqB;IAC7B,OAAO,EAAE,mBAAmB,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA0DrD,CAAC;AAiEF,eAAe,gBAAgB,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption1Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption1: React.FC<PremiumOption1Props>;
|
8
|
-
export default PremiumOption1;
|
9
|
-
//# sourceMappingURL=premium_option_1.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_1.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_1.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAmEjD,CAAC;AA4EF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption2Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption2: React.FC<PremiumOption2Props>;
|
8
|
-
export default PremiumOption2;
|
9
|
-
//# sourceMappingURL=premium_option_2.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_2.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAsBjD,CAAC;AAyDF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption3Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption3: React.FC<PremiumOption3Props>;
|
8
|
-
export default PremiumOption3;
|
9
|
-
//# sourceMappingURL=premium_option_3.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_3.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_3.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA4BjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption4Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption4: React.FC<PremiumOption4Props>;
|
8
|
-
export default PremiumOption4;
|
9
|
-
//# sourceMappingURL=premium_option_4.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_4.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_4.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgBjD,CAAC;AAmJF,eAAe,cAAc,CAAC"}
|
@@ -1,62 +0,0 @@
|
|
1
|
-
import React, { useEffect, useRef } from 'react';
|
2
|
-
import { Animated, View, StyleSheet, Dimensions, type TextStyle,} from 'react-native';
|
3
|
-
|
4
|
-
interface MarqueeTextProps {
|
5
|
-
text: string;
|
6
|
-
speed?: number;
|
7
|
-
repeat?: number;
|
8
|
-
style?: TextStyle;
|
9
|
-
}
|
10
|
-
|
11
|
-
const MarqueeText: React.FC<MarqueeTextProps> = ({ text, speed = 15, repeat = 100, style }) => {
|
12
|
-
const translateX = useRef(new Animated.Value(0)).current;
|
13
|
-
|
14
|
-
useEffect(() => {
|
15
|
-
const textWidth = text.length * 4;
|
16
|
-
const screenWidth = Dimensions.get('window').width;
|
17
|
-
|
18
|
-
const animation = Animated.loop(
|
19
|
-
Animated.sequence([
|
20
|
-
Animated.timing(translateX, {
|
21
|
-
toValue: -textWidth,
|
22
|
-
duration: (textWidth + screenWidth) * speed,
|
23
|
-
useNativeDriver: true,
|
24
|
-
}),
|
25
|
-
Animated.timing(translateX, {
|
26
|
-
toValue: screenWidth,
|
27
|
-
duration: 0,
|
28
|
-
useNativeDriver: true,
|
29
|
-
}),
|
30
|
-
]),
|
31
|
-
{ iterations: repeat }
|
32
|
-
);
|
33
|
-
|
34
|
-
animation.start();
|
35
|
-
|
36
|
-
return () => animation.stop();
|
37
|
-
}, [text, speed, repeat, translateX]);
|
38
|
-
|
39
|
-
return (
|
40
|
-
<View style={styles.container}>
|
41
|
-
<Animated.Text
|
42
|
-
numberOfLines={1}
|
43
|
-
style={[styles.text, style, { transform: [{ translateX }] }]}
|
44
|
-
>
|
45
|
-
{text}
|
46
|
-
</Animated.Text>
|
47
|
-
</View>
|
48
|
-
);
|
49
|
-
};
|
50
|
-
|
51
|
-
const styles = StyleSheet.create({
|
52
|
-
container: {
|
53
|
-
overflow: 'hidden',
|
54
|
-
width: '100%',
|
55
|
-
},
|
56
|
-
text: {
|
57
|
-
fontSize: 16,
|
58
|
-
fontWeight: 'bold',
|
59
|
-
},
|
60
|
-
});
|
61
|
-
|
62
|
-
export default MarqueeText;
|
@@ -1,85 +0,0 @@
|
|
1
|
-
import React, { useRef, useState, useEffect } from 'react';
|
2
|
-
import { View, ScrollView, StyleSheet, Dimensions } from 'react-native';
|
3
|
-
|
4
|
-
const { width } = Dimensions.get('window');
|
5
|
-
|
6
|
-
interface AutoScrollPagerWithIndicatorsProps {
|
7
|
-
totalPages: number;
|
8
|
-
delayInMillis?: number;
|
9
|
-
premiumColor?: string;
|
10
|
-
content: (index: number) => React.ReactNode;
|
11
|
-
}
|
12
|
-
|
13
|
-
const AutoScrollPagerWithIndicators: React.FC<AutoScrollPagerWithIndicatorsProps> = ({
|
14
|
-
totalPages,
|
15
|
-
delayInMillis = 5000,
|
16
|
-
premiumColor,
|
17
|
-
content,
|
18
|
-
}) => {
|
19
|
-
const [currentPage, setCurrentPage] = useState(0);
|
20
|
-
const scrollViewRef = useRef<ScrollView>(null);
|
21
|
-
|
22
|
-
useEffect(() => {
|
23
|
-
const intervalId = setInterval(() => {
|
24
|
-
const nextBanner = (currentPage + 1) % totalPages;
|
25
|
-
setCurrentPage(nextBanner);
|
26
|
-
scrollViewRef.current?.scrollTo({ x: nextBanner * width, animated: true });
|
27
|
-
}, delayInMillis);
|
28
|
-
|
29
|
-
return () => clearInterval(intervalId);
|
30
|
-
}, [currentPage, totalPages, delayInMillis]);
|
31
|
-
|
32
|
-
useEffect(() => {
|
33
|
-
scrollViewRef.current?.scrollTo({ x: currentPage * width, animated: false });
|
34
|
-
}, [currentPage]);
|
35
|
-
|
36
|
-
const renderIndicators = () => {
|
37
|
-
const indicators: React.ReactNode[] = [];
|
38
|
-
for (let i = 0; i < totalPages; i++) {
|
39
|
-
indicators.push(
|
40
|
-
<View
|
41
|
-
key={i}
|
42
|
-
style={[
|
43
|
-
styles.indicator,
|
44
|
-
{ backgroundColor: currentPage === i ? (premiumColor|| '#1C90DF') : 'lightgray' },
|
45
|
-
]}
|
46
|
-
/>
|
47
|
-
);
|
48
|
-
}
|
49
|
-
return <View style={styles.indicatorContainer}>{indicators}</View>;
|
50
|
-
};
|
51
|
-
|
52
|
-
return (
|
53
|
-
<View style={styles.container}>
|
54
|
-
<ScrollView
|
55
|
-
ref={scrollViewRef}
|
56
|
-
horizontal
|
57
|
-
pagingEnabled
|
58
|
-
showsHorizontalScrollIndicator={true}
|
59
|
-
scrollEnabled={false}
|
60
|
-
contentContainerStyle={{ width: totalPages * width }}
|
61
|
-
>
|
62
|
-
{Array.from({ length: totalPages }, (_, i) => content(i))}
|
63
|
-
</ScrollView>
|
64
|
-
{renderIndicators()}
|
65
|
-
</View>
|
66
|
-
);
|
67
|
-
};
|
68
|
-
|
69
|
-
const styles = StyleSheet.create({
|
70
|
-
container: {
|
71
|
-
alignItems: 'center',
|
72
|
-
},
|
73
|
-
indicatorContainer: {
|
74
|
-
flexDirection: 'row',
|
75
|
-
marginTop: 10,
|
76
|
-
},
|
77
|
-
indicator: {
|
78
|
-
width: 8,
|
79
|
-
height: 8,
|
80
|
-
borderRadius: 4,
|
81
|
-
marginHorizontal: 2,
|
82
|
-
},
|
83
|
-
});
|
84
|
-
|
85
|
-
export default AutoScrollPagerWithIndicators;
|