@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.
Files changed (289) hide show
  1. package/android/build.gradle +1 -1
  2. package/android/src/main/java/com/tyradssdk/TyradsSdkModule.kt +130 -29
  3. package/ios/Tyrads/AcmoAssets.swift +14 -0
  4. package/ios/Tyrads/ApiHeaders.swift +1 -0
  5. package/ios/Tyrads/InitModel.swift +3 -0
  6. package/ios/Tyrads/Tyrads.swift +255 -213
  7. package/ios/Tyrads/WebViewController.swift +195 -0
  8. package/ios/Tyrads/core/utils/AcmoKeyNames.swift +29 -0
  9. package/ios/Tyrads/core/utils/ColorExtension.swift +55 -0
  10. package/ios/Tyrads/core/utils/Services/LocalizationService.swift +175 -0
  11. package/ios/Tyrads/helpers/device_details.swift +160 -0
  12. package/ios/Tyrads/legal/AcmoPrivacyPage.swift +353 -0
  13. package/ios/Tyrads/legal/PrivacyPageController.swift +31 -0
  14. package/ios/Tyrads/user/AcmoUserUpdatePage.swift +302 -0
  15. package/ios/Tyrads/user/AcmoUsersUpdateController.swift +26 -0
  16. package/ios/Tyrads/user/Repository.swift +89 -0
  17. package/ios/TyradsSdk.mm +22 -4
  18. package/ios/TyradsSdk.swift +101 -31
  19. package/lib/commonjs/acmo/core/helpers/launcher.js +20 -0
  20. package/lib/commonjs/acmo/core/helpers/launcher.js.map +1 -0
  21. package/lib/commonjs/acmo/core/helpers/native_methods.js +37 -0
  22. package/lib/commonjs/acmo/core/helpers/native_methods.js.map +1 -0
  23. package/lib/commonjs/acmo/core/helpers/numeral.js +19 -0
  24. package/lib/commonjs/acmo/core/helpers/numeral.js.map +1 -0
  25. package/lib/commonjs/acmo/core/services/localization_service.js +164 -0
  26. package/lib/commonjs/acmo/core/services/localization_service.js.map +1 -0
  27. package/lib/commonjs/acmo/core/storage/storage.js +15 -1
  28. package/lib/commonjs/acmo/core/storage/storage.js.map +1 -1
  29. package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js +79 -0
  30. package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
  31. package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js +7 -10
  32. package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js.map +1 -1
  33. package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js +141 -0
  34. package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
  35. package/lib/commonjs/acmo/{core/marquee.js → modules/dashboard/components/custom_shimmer.js} +46 -34
  36. package/lib/commonjs/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
  37. package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js +263 -0
  38. package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js.map +1 -0
  39. package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js +203 -0
  40. package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
  41. package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js +87 -0
  42. package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
  43. package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js +16 -14
  44. package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js.map +1 -1
  45. package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js +111 -0
  46. package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
  47. package/lib/commonjs/acmo/modules/dashboard/repository.js +108 -32
  48. package/lib/commonjs/acmo/modules/dashboard/repository.js.map +1 -1
  49. package/lib/commonjs/acmo/modules/dashboard/top_offers.js +85 -63
  50. package/lib/commonjs/acmo/modules/dashboard/top_offers.js.map +1 -1
  51. package/lib/commonjs/acmo/modules/localization/localization_context.js +56 -0
  52. package/lib/commonjs/acmo/modules/localization/localization_context.js.map +1 -0
  53. package/lib/commonjs/assets/images/angle_up.png +0 -0
  54. package/lib/commonjs/assets/images/diamond.png +0 -0
  55. package/lib/commonjs/assets/images/info.png +0 -0
  56. package/lib/commonjs/assets/images/info_icon.png +0 -0
  57. package/lib/commonjs/assets/images/premium-emptybg.jpeg +0 -0
  58. package/lib/commonjs/assets/images/rank_1.png +0 -0
  59. package/lib/commonjs/assets/images/rank_2.png +0 -0
  60. package/lib/commonjs/assets/images/rank_3.png +0 -0
  61. package/lib/commonjs/assets/images/rank_4.png +0 -0
  62. package/lib/commonjs/assets/images/rank_5.png +0 -0
  63. package/lib/commonjs/index.js +50 -16
  64. package/lib/commonjs/index.js.map +1 -1
  65. package/lib/module/acmo/core/helpers/launcher.js +15 -0
  66. package/lib/module/acmo/core/helpers/launcher.js.map +1 -0
  67. package/lib/module/acmo/core/helpers/native_methods.js +33 -0
  68. package/lib/module/acmo/core/helpers/native_methods.js.map +1 -0
  69. package/lib/module/acmo/core/helpers/numeral.js +14 -0
  70. package/lib/module/acmo/core/helpers/numeral.js.map +1 -0
  71. package/lib/module/acmo/core/services/localization_service.js +159 -0
  72. package/lib/module/acmo/core/services/localization_service.js.map +1 -0
  73. package/lib/module/acmo/core/storage/storage.js +13 -0
  74. package/lib/module/acmo/core/storage/storage.js.map +1 -1
  75. package/lib/module/acmo/modules/dashboard/components/active_offers_button.js +73 -0
  76. package/lib/module/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
  77. package/lib/module/acmo/modules/dashboard/components/custom_card.js +7 -10
  78. package/lib/module/acmo/modules/dashboard/components/custom_card.js.map +1 -1
  79. package/lib/module/acmo/modules/dashboard/components/custom_scroller.js +135 -0
  80. package/lib/module/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
  81. package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js +66 -0
  82. package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
  83. package/lib/module/acmo/modules/dashboard/components/offer_card.js +257 -0
  84. package/lib/module/acmo/modules/dashboard/components/offer_card.js.map +1 -0
  85. package/lib/module/acmo/modules/dashboard/components/offer_list_item.js +197 -0
  86. package/lib/module/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
  87. package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js +82 -0
  88. package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
  89. package/lib/module/acmo/modules/dashboard/components/premium_header.js +16 -14
  90. package/lib/module/acmo/modules/dashboard/components/premium_header.js.map +1 -1
  91. package/lib/module/acmo/modules/dashboard/components/premium_loading.js +106 -0
  92. package/lib/module/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
  93. package/lib/module/acmo/modules/dashboard/repository.js +105 -30
  94. package/lib/module/acmo/modules/dashboard/repository.js.map +1 -1
  95. package/lib/module/acmo/modules/dashboard/top_offers.js +86 -64
  96. package/lib/module/acmo/modules/dashboard/top_offers.js.map +1 -1
  97. package/lib/module/acmo/modules/localization/localization_context.js +45 -0
  98. package/lib/module/acmo/modules/localization/localization_context.js.map +1 -0
  99. package/lib/module/assets/images/angle_up.png +0 -0
  100. package/lib/module/assets/images/diamond.png +0 -0
  101. package/lib/module/assets/images/info.png +0 -0
  102. package/lib/module/assets/images/info_icon.png +0 -0
  103. package/lib/module/assets/images/premium-emptybg.jpeg +0 -0
  104. package/lib/module/assets/images/rank_1.png +0 -0
  105. package/lib/module/assets/images/rank_2.png +0 -0
  106. package/lib/module/assets/images/rank_3.png +0 -0
  107. package/lib/module/assets/images/rank_4.png +0 -0
  108. package/lib/module/assets/images/rank_5.png +0 -0
  109. package/lib/module/index.js +49 -17
  110. package/lib/module/index.js.map +1 -1
  111. package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts +3 -0
  112. package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts.map +1 -0
  113. package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts +6 -0
  114. package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
  115. package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts +2 -0
  116. package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts.map +1 -0
  117. package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts +18 -0
  118. package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts.map +1 -0
  119. package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts +1 -0
  120. package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts.map +1 -1
  121. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
  122. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
  123. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
  124. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
  125. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
  126. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
  127. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
  128. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
  129. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
  130. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
  131. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
  132. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
  133. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
  134. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
  135. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
  136. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
  137. package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts +2 -1
  138. package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
  139. package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
  140. package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
  141. package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts +14 -0
  142. package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
  143. package/lib/typescript/commonjs/src/index.d.ts +8 -6
  144. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  145. package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts +3 -0
  146. package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts.map +1 -0
  147. package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts +6 -0
  148. package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
  149. package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts +2 -0
  150. package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts.map +1 -0
  151. package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts +18 -0
  152. package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts.map +1 -0
  153. package/lib/typescript/module/src/acmo/core/storage/storage.d.ts +1 -0
  154. package/lib/typescript/module/src/acmo/core/storage/storage.d.ts.map +1 -1
  155. package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
  156. package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
  157. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
  158. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
  159. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
  160. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
  161. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
  162. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
  163. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
  164. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
  165. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
  166. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
  167. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
  168. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
  169. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
  170. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
  171. package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts +2 -1
  172. package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
  173. package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
  174. package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
  175. package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts +14 -0
  176. package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
  177. package/lib/typescript/module/src/index.d.ts +8 -6
  178. package/lib/typescript/module/src/index.d.ts.map +1 -1
  179. package/package.json +3 -6
  180. package/readme.md +8 -8
  181. package/src/acmo/core/helpers/launcher.ts +14 -0
  182. package/src/acmo/core/helpers/native_methods.ts +43 -0
  183. package/src/acmo/core/helpers/numeral.ts +14 -0
  184. package/src/acmo/core/services/localization_service.ts +200 -0
  185. package/src/acmo/core/storage/storage.ts +14 -0
  186. package/src/acmo/core/types/types.d.ts +11 -13
  187. package/src/acmo/modules/dashboard/components/active_offers_button.tsx +62 -0
  188. package/src/acmo/modules/dashboard/components/custom_card.tsx +5 -8
  189. package/src/acmo/modules/dashboard/components/custom_scroller.tsx +164 -0
  190. package/src/acmo/modules/dashboard/components/custom_shimmer.tsx +75 -0
  191. package/src/acmo/modules/dashboard/components/offer_card.tsx +248 -0
  192. package/src/acmo/modules/dashboard/components/offer_list_item.tsx +228 -0
  193. package/src/acmo/modules/dashboard/components/premium_empty_widget.tsx +79 -0
  194. package/src/acmo/modules/dashboard/components/premium_header.tsx +14 -13
  195. package/src/acmo/modules/dashboard/components/premium_loading.tsx +72 -0
  196. package/src/acmo/modules/dashboard/repository.ts +121 -46
  197. package/src/acmo/modules/dashboard/top_offers.tsx +105 -53
  198. package/src/acmo/modules/localization/localization_context.tsx +52 -0
  199. package/src/assets/images/angle_up.png +0 -0
  200. package/src/assets/images/diamond.png +0 -0
  201. package/src/assets/images/info.png +0 -0
  202. package/src/assets/images/info_icon.png +0 -0
  203. package/src/assets/images/premium-emptybg.jpeg +0 -0
  204. package/src/assets/images/rank_1.png +0 -0
  205. package/src/assets/images/rank_2.png +0 -0
  206. package/src/assets/images/rank_3.png +0 -0
  207. package/src/assets/images/rank_4.png +0 -0
  208. package/src/assets/images/rank_5.png +0 -0
  209. package/src/index.tsx +76 -34
  210. package/lib/commonjs/acmo/core/marquee.js.map +0 -1
  211. package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js +0 -87
  212. package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
  213. package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js +0 -48
  214. package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
  215. package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js +0 -158
  216. package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
  217. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js +0 -180
  218. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
  219. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js +0 -102
  220. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
  221. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js +0 -41
  222. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
  223. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js +0 -214
  224. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
  225. package/lib/commonjs/i18n.js +0 -112
  226. package/lib/commonjs/i18n.js.map +0 -1
  227. package/lib/module/acmo/core/marquee.js +0 -54
  228. package/lib/module/acmo/core/marquee.js.map +0 -1
  229. package/lib/module/acmo/modules/dashboard/components/auto_scroller.js +0 -81
  230. package/lib/module/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
  231. package/lib/module/acmo/modules/dashboard/components/my_games_button.js +0 -43
  232. package/lib/module/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
  233. package/lib/module/acmo/modules/dashboard/components/offer_info_section.js +0 -153
  234. package/lib/module/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
  235. package/lib/module/acmo/modules/dashboard/components/premium_option_1.js +0 -174
  236. package/lib/module/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
  237. package/lib/module/acmo/modules/dashboard/components/premium_option_2.js +0 -97
  238. package/lib/module/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
  239. package/lib/module/acmo/modules/dashboard/components/premium_option_3.js +0 -36
  240. package/lib/module/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
  241. package/lib/module/acmo/modules/dashboard/components/premium_option_4.js +0 -209
  242. package/lib/module/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
  243. package/lib/module/i18n.js +0 -107
  244. package/lib/module/i18n.js.map +0 -1
  245. package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts +0 -11
  246. package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts.map +0 -1
  247. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
  248. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
  249. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
  250. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
  251. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
  252. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
  253. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
  254. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
  255. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
  256. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
  257. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
  258. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
  259. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
  260. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
  261. package/lib/typescript/commonjs/src/i18n.d.ts +0 -3
  262. package/lib/typescript/commonjs/src/i18n.d.ts.map +0 -1
  263. package/lib/typescript/module/src/acmo/core/marquee.d.ts +0 -11
  264. package/lib/typescript/module/src/acmo/core/marquee.d.ts.map +0 -1
  265. package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
  266. package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
  267. package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
  268. package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
  269. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
  270. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
  271. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
  272. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
  273. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
  274. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
  275. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
  276. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
  277. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
  278. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
  279. package/lib/typescript/module/src/i18n.d.ts +0 -3
  280. package/lib/typescript/module/src/i18n.d.ts.map +0 -1
  281. package/src/acmo/core/marquee.tsx +0 -62
  282. package/src/acmo/modules/dashboard/components/auto_scroller.tsx +0 -85
  283. package/src/acmo/modules/dashboard/components/my_games_button.tsx +0 -40
  284. package/src/acmo/modules/dashboard/components/offer_info_section.tsx +0 -139
  285. package/src/acmo/modules/dashboard/components/premium_option_1.tsx +0 -163
  286. package/src/acmo/modules/dashboard/components/premium_option_2.tsx +0 -100
  287. package/src/acmo/modules/dashboard/components/premium_option_3.tsx +0 -42
  288. package/src/acmo/modules/dashboard/components/premium_option_4.tsx +0 -185
  289. package/src/i18n.ts +0 -115
@@ -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;
@@ -1,40 +0,0 @@
1
- import React from 'react';
2
- import { TouchableOpacity, Text, StyleSheet,} from 'react-native';
3
- import { useTranslation } from 'react-i18next';
4
-
5
- interface MyGamesButtonProps {
6
- premiumColor?: string;
7
- onPress: (route: string) => void;
8
- }
9
-
10
- const MyGamesButton: React.FC<MyGamesButtonProps> = ({ premiumColor , onPress}) => {
11
- const { t } = useTranslation();
12
- return (
13
- <TouchableOpacity
14
- style={[styles.button, { backgroundColor: premiumColor || '#1C90DF' }]}
15
- onPress={() => onPress && onPress('campaigns-activated')}
16
- >
17
- <Text style={styles.buttonText}>{t('dashboard.my_games')}</Text>
18
- </TouchableOpacity>
19
- );
20
- };
21
-
22
- const styles = StyleSheet.create({
23
- button: {
24
- borderRadius: 8,
25
- paddingHorizontal: 16,
26
- paddingVertical: 8,
27
- height: 40,
28
- justifyContent: 'center',
29
- alignItems: 'center',
30
- marginHorizontal: 16,
31
- marginBottom: 16,
32
- },
33
- buttonText: {
34
- color: 'white',
35
- fontSize: 16,
36
- fontWeight: 'bold',
37
- },
38
- });
39
-
40
- export default MyGamesButton;
@@ -1,139 +0,0 @@
1
- import React from 'react';
2
- import { Dimensions, Image, StyleSheet, Text, TouchableOpacity, View, type ViewStyle,} from "react-native";
3
- import numeral from 'numeral';
4
- import TextTicker from "react-native-text-ticker";
5
- import { useTranslation } from "react-i18next";
6
-
7
- const { width } = Dimensions.get('window');
8
-
9
- interface OfferInfoSectionProps {
10
- details: TransformedCampaign;
11
- premiumColor?: string;
12
- style?: ViewStyle;
13
- onButtonPress: () => void;
14
- }
15
-
16
- const OfferInfoSection: React.FC<OfferInfoSectionProps> = ({ details, premiumColor, style, onButtonPress }) => {
17
- const { t } = useTranslation();
18
-
19
- return (
20
- <View style={[styles.infoContainer, style, { backgroundColor: premiumColor || '#1C90DF' }]}>
21
- <View style={styles.infoRow}>
22
- <View style={styles.leftInfo}>
23
- <Image
24
- style={styles.gameIcon}
25
- source={{ uri: details.thumbnail }}
26
- resizeMode="cover"
27
- />
28
- <View style={styles.gameDetails}>
29
- {details.title.length > 20 ? (
30
- <View style={{ overflow: 'hidden' }}>
31
- <TextTicker
32
- style={styles.gameTitle}
33
- duration={3000}
34
- loop
35
- bounce
36
- repeatSpacer={50}
37
- marqueeDelay={1000}
38
- >
39
- {details.title}
40
- </TextTicker>
41
- </View>
42
- ) : (
43
- <Text style={styles.gameTitle} numberOfLines={1} ellipsizeMode="tail">
44
- {details.title}
45
- </Text>
46
- )}
47
-
48
- <View style={styles.rewardDetails}>
49
- <Image
50
- source={{ uri: details.currency.adUnitCurrencyIcon }}
51
- resizeMode="contain"
52
- style={styles.coinIcon}
53
- />
54
- <Text style={styles.points}>{numeral(details.points).format("0.00a").toUpperCase()}</Text>
55
- <Text style={styles.points}>{''}{details.currency.adUnitCurrencyName}</Text>
56
- <Text style={styles.rewards}>
57
- {' '}
58
- {details.rewards} {t('dashboard.rewards', { count: details.rewards })}
59
- </Text>
60
- </View>
61
- </View>
62
- </View>
63
- <TouchableOpacity
64
- onPress={onButtonPress}
65
- style={styles.playButton}
66
- >
67
- <Text style={[styles.playButtonText, { color: premiumColor || '#1C90DF' }]}>
68
- {t('dashboard.play_button')}
69
- </Text>
70
- </TouchableOpacity>
71
- </View>
72
- </View>
73
- );
74
- };
75
-
76
- const styles = StyleSheet.create({
77
- infoContainer: {
78
- width: width,
79
- paddingVertical: 8,
80
- paddingHorizontal: 16,
81
- },
82
- infoRow: {
83
- flexDirection: 'row',
84
- justifyContent: 'space-between',
85
- alignItems: 'center',
86
- width: '90%',
87
- },
88
- leftInfo: {
89
- flexDirection: 'row',
90
- alignItems: 'center',
91
- width: '68%',
92
- },
93
- gameIcon: {
94
- width: 50,
95
- height: 50,
96
- borderRadius: 8,
97
- },
98
- gameDetails: {
99
- marginLeft: 10,
100
- },
101
- gameTitle: {
102
- color: 'white',
103
- fontSize: 14,
104
- marginBottom: 4,
105
- },
106
- rewardDetails: {
107
- flexDirection: 'row',
108
- marginTop: 4,
109
- },
110
- coinIcon: {
111
- width: 18,
112
- height: 18,
113
- },
114
- points: {
115
- color: 'white',
116
- fontSize: 12,
117
- marginLeft: 4,
118
- },
119
- rewards: {
120
- color: 'lightgrey',
121
- fontSize: 11,
122
- fontStyle: 'italic',
123
- },
124
- playButton: {
125
- paddingHorizontal: 12,
126
- paddingVertical: 2,
127
- height: 30,
128
- borderRadius: 8,
129
- backgroundColor: 'white',
130
- alignItems: 'center',
131
- justifyContent: 'center',
132
- },
133
- playButtonText: {
134
- fontSize: 14,
135
- fontWeight: 'bold',
136
- },
137
- });
138
-
139
- export default OfferInfoSection;
@@ -1,163 +0,0 @@
1
- import React from 'react';
2
- import numeral from 'numeral';
3
- import {
4
- View,
5
- Text,
6
- Image,
7
- TouchableOpacity,
8
- StyleSheet,
9
- } from 'react-native';
10
- // import TextTicker from 'react-native-text-ticker';
11
- import { useTranslation } from 'react-i18next';
12
- import MarqueeText from '../../../core/marquee';
13
-
14
- interface PremiumOption1Props {
15
- data: TransformedCampaign[];
16
- premiumColor?: string;
17
- onCampaignPress?: (campaignId: number) => void;
18
- }
19
-
20
- const PremiumOption1: React.FC<PremiumOption1Props> = ({ data, onCampaignPress, premiumColor }) => {
21
- const { t } = useTranslation();
22
- console.log("Prmium Color", premiumColor);
23
-
24
- return (
25
- <View>
26
- {data.map((item, index) => (
27
- <TouchableOpacity
28
- key={index}
29
- onPress={() => onCampaignPress && onCampaignPress(item.campaignId)}
30
- style={styles.itemContainer}
31
- activeOpacity={0.75}
32
- >
33
- <View style={{ flexDirection: 'row', flex: 8, marginRight: 10 }}>
34
- <Image source={{ uri: item.thumbnail }} style={styles.thumbnail} />
35
- <View style={styles.infoContainer}>
36
- <View style={{ width: '100%' }}>
37
- {item.title.length > 25 ? (
38
- <View style={{ overflow: 'hidden' }}>
39
- {/* <TextTicker
40
- style={styles.titleText}
41
- duration={3000}
42
- loop
43
- bounce
44
- repeatSpacer={50}
45
- marqueeDelay={1000}
46
- >
47
- {item.title}
48
- </TextTicker> */}
49
- <MarqueeText
50
- text={item.title}
51
- speed={15}
52
- repeat={100}
53
- style={styles.titleText}
54
- />
55
- </View>
56
- ) : (
57
- <Text numberOfLines={1} style={styles.titleText}>
58
- {item.title}
59
- </Text>
60
- )}
61
- </View>
62
- <View style={styles.infoRow}>
63
- <View style={[styles.rankContainer, { backgroundColor: premiumColor || '#1C90DF' }]}>
64
- <Text numberOfLines={1} style={styles.rankText} adjustsFontSizeToFit={true}>
65
- {t('dashboard.top_ranking', { number: index + 1 })}
66
- </Text>
67
- </View>
68
- <View style={styles.rewardDetails}>
69
- <Image
70
- source={{ uri: item.currency.adUnitCurrencyIcon }}
71
- resizeMode="contain"
72
- style={styles.coinIcon}
73
- />
74
- <Text style={styles.points}>{numeral(item.points).format("0.00a").toUpperCase()}</Text>
75
- <Text style={styles.points}>{''}{item.currency.adUnitCurrencyName}</Text>
76
- </View>
77
- </View>
78
- </View>
79
- </View>
80
- <View style={[styles.playButton, { backgroundColor: premiumColor || '#1C90DF' }]}>
81
- <Text style={styles.playButtonText}>{t('dashboard.play_button')}</Text>
82
- </View>
83
- </TouchableOpacity>
84
- ))}
85
- </View>
86
- );
87
- };
88
-
89
- const styles = StyleSheet.create({
90
- itemContainer: {
91
- flexDirection: 'row',
92
- flex: 1,
93
- width: '100%',
94
- justifyContent: 'space-between',
95
- alignItems: 'center',
96
- paddingHorizontal: 16,
97
- paddingVertical: 8,
98
- },
99
- thumbnail: {
100
- height: 40,
101
- width: 40,
102
- borderRadius: 10,
103
- },
104
- infoContainer: {
105
- marginLeft: 8,
106
- },
107
- titleText: {
108
- fontSize: 14,
109
- fontWeight: 'bold',
110
- },
111
- infoRow: {
112
- flexDirection: 'row',
113
- alignItems: 'center',
114
- alignContent: 'center',
115
- },
116
- rankContainer: {
117
- marginTop: 4,
118
- borderRadius: 12,
119
- paddingHorizontal: 4,
120
- paddingVertical: 2,
121
- width: 43,
122
- alignItems: 'center',
123
- },
124
- rankText: {
125
- fontSize: 10,
126
- color: 'white',
127
- fontWeight: 'bold',
128
- },
129
- rewardDetails: {
130
- flexDirection: 'row',
131
- alignItems: 'center',
132
- marginTop: 4,
133
- left: 4,
134
- },
135
- coinIcon: {
136
- width: 14,
137
- height: 14,
138
- },
139
- points: {
140
- fontSize: 13,
141
- marginLeft: 4,
142
- fontWeight: '500',
143
- },
144
- rewards: {
145
- fontSize: 10,
146
- fontStyle: 'italic',
147
- },
148
- playButton: {
149
- paddingHorizontal: 12,
150
- paddingVertical: 5,
151
- height: 30,
152
- borderRadius: 8,
153
- alignItems: 'center',
154
- justifyContent: 'center',
155
- },
156
- playButtonText: {
157
- fontSize: 14,
158
- fontWeight: 'bold',
159
- color: 'white',
160
- },
161
- });
162
-
163
- export default PremiumOption1;
@@ -1,100 +0,0 @@
1
- import React from 'react';
2
- import {
3
- View,
4
- Text,
5
- Image,
6
- StyleSheet,
7
- Dimensions,
8
- TouchableOpacity,
9
- } from 'react-native';
10
- import AutoScrollPagerWithIndicators from './auto_scroller';
11
- import OfferInfoSection from './offer_info_section';
12
-
13
- const { width } = Dimensions.get('window');
14
-
15
- interface PremiumOption2Props {
16
- data: TransformedCampaign[];
17
- premiumColor?: string;
18
- onCampaignPress?: (campaignId: number) => void;
19
- }
20
-
21
- const PremiumOption2: React.FC<PremiumOption2Props> = ({ data, onCampaignPress, premiumColor }) => {
22
- return (
23
- <AutoScrollPagerWithIndicators
24
- totalPages={data.length}
25
- premiumColor={premiumColor}
26
- content={(page) => (
27
- <TouchableOpacity
28
- key={page}
29
- onPress={() => onCampaignPress && onCampaignPress(data[page]?.campaignId ?? 0)
30
- }
31
- activeOpacity={0.8}
32
- >
33
- {data[page] && (
34
- <>
35
- <OfferBanner details={data[page]} index={page} premiumColor={premiumColor} />
36
- <OfferInfoSection details={data[page]} premiumColor={premiumColor} onButtonPress={() => onCampaignPress && onCampaignPress(data[page]?.campaignId ?? 0)}/>
37
- </>
38
- )}
39
- </TouchableOpacity>
40
- )}
41
- />
42
- );
43
- };
44
-
45
- interface OfferBannerProps {
46
- details: TransformedCampaign;
47
- index: number;
48
- premiumColor?: string;
49
- }
50
-
51
- const OfferBanner: React.FC<OfferBannerProps> = ({ details, index, premiumColor }) => {
52
- return (
53
- <View style={styles.bannerContainer}>
54
- <Image style={styles.bannerImage} source={{ uri: details.fileUrl }} resizeMode="cover" />
55
- <View style={styles.starContainer}>
56
- <Image
57
- source={require('../../../../assets/images/premium_star.png')}
58
- style={[styles.starIcon, { tintColor: premiumColor || '#1C90DF' }]}
59
- />
60
- <Text style={styles.index} numberOfLines={1} ellipsizeMode="tail">
61
- {index + 1}
62
- </Text>
63
- </View>
64
- </View>
65
- );
66
- };
67
-
68
- const styles = StyleSheet.create({
69
- bannerContainer: {
70
- width: width,
71
- height: 180,
72
- },
73
- bannerImage: {
74
- flex: 1,
75
- },
76
- starContainer: {
77
- position: 'absolute',
78
- top: 10,
79
- left: 10,
80
- backgroundColor: 'rgba(0,0,0,0)',
81
- },
82
- starIcon: {
83
- width: 30,
84
- height: 30,
85
- },
86
- index: {
87
- position: 'absolute',
88
- top: 0,
89
- left: 0,
90
- right: 0,
91
- bottom: 0,
92
- textAlign: 'center',
93
- textAlignVertical: 'center',
94
- color: 'white',
95
- fontSize: 14,
96
- fontWeight: 'bold',
97
- },
98
- });
99
-
100
- export default PremiumOption2;
@@ -1,42 +0,0 @@
1
- import React from 'react';
2
- import { TouchableOpacity, View, } from 'react-native';
3
- import AutoScrollPagerWithIndicators from './auto_scroller';
4
- import OfferInfoSection from './offer_info_section';
5
-
6
- interface PremiumOption3Props {
7
- data: TransformedCampaign[];
8
- premiumColor?: string;
9
- onCampaignPress?: (campaignId: number) => void;
10
- }
11
-
12
- const PremiumOption3: React.FC<PremiumOption3Props> = ({ data, onCampaignPress, premiumColor }) => {
13
- return (
14
- <AutoScrollPagerWithIndicators
15
- totalPages={data.length}
16
- premiumColor={premiumColor}
17
- content={(page) => (
18
- <TouchableOpacity
19
- key={page}
20
- style={{ flex: 1 }}
21
- activeOpacity={0.8}
22
- onPress={() => onCampaignPress && onCampaignPress(data[page]?.campaignId ?? 0)}
23
- >
24
- <View>
25
- {
26
- data[page] && (
27
- <OfferInfoSection
28
- details={data[page]}
29
- premiumColor={premiumColor}
30
- style={{ paddingVertical: 23 }}
31
- onButtonPress={() => onCampaignPress && onCampaignPress(data[page]?.campaignId ?? 0)}
32
- />
33
- )
34
- }
35
- </View>
36
- </TouchableOpacity>
37
- )}
38
- />
39
- );
40
- };
41
-
42
- export default PremiumOption3;