@saooti/octopus-sdk 0.28.16 → 1.1.1

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 (328) hide show
  1. package/README.md +188 -2
  2. package/index.ts +45 -11
  3. package/package.json +46 -48
  4. package/public/config.ts +4 -0
  5. package/public/css/fonts/icomoon.eot +0 -0
  6. package/public/css/fonts/icomoon.svg +129 -0
  7. package/public/css/fonts/icomoon.ttf +0 -0
  8. package/public/css/fonts/icomoon.woff +0 -0
  9. package/public/css/fonts/style.css +185 -1266
  10. package/public/img/403.jpeg +0 -0
  11. package/public/img/404.svg +242 -0
  12. package/public/img/ouest_france_logo.svg +12 -0
  13. package/src/App.vue +45 -24
  14. package/src/api/classicCrud.ts +34 -0
  15. package/src/api/initialize.ts +4 -2
  16. package/src/assets/bootstrap-diff.scss +197 -0
  17. package/src/assets/form.scss +77 -77
  18. package/src/assets/general.scss +287 -301
  19. package/src/assets/live.scss +39 -0
  20. package/src/assets/modal.scss +43 -50
  21. package/src/assets/multiselect.scss +522 -590
  22. package/src/assets/octopus-library.scss +17 -4
  23. package/src/assets/share.scss +150 -250
  24. package/src/assets/transition.scss +98 -2
  25. package/src/components/display/aggregator/RssSection.vue +4 -6
  26. package/src/components/display/categories/CategoryChooser.vue +100 -79
  27. package/src/components/display/categories/CategoryFilter.vue +117 -37
  28. package/src/components/display/categories/CategoryList.vue +121 -108
  29. package/src/components/display/comments/AddCommentModal.vue +98 -94
  30. package/src/components/display/comments/CommentBasicView.vue +95 -0
  31. package/src/components/display/comments/CommentInput.vue +175 -155
  32. package/src/components/display/comments/CommentItem.vue +152 -168
  33. package/src/components/display/comments/CommentList.vue +123 -229
  34. package/src/components/display/comments/CommentParentInfo.vue +26 -58
  35. package/src/components/display/comments/CommentPlayer.vue +51 -49
  36. package/src/components/display/comments/CommentSection.vue +44 -67
  37. package/src/components/display/edit/EditBox.vue +11 -5
  38. package/src/components/display/edit/EditCommentBox.vue +121 -29
  39. package/src/components/display/emission/EmissionChooser.vue +73 -81
  40. package/src/components/display/emission/EmissionInlineList.vue +130 -128
  41. package/src/components/display/emission/EmissionItem.vue +68 -109
  42. package/src/components/display/emission/EmissionList.vue +140 -146
  43. package/src/components/display/emission/EmissionPlayerItem.vue +186 -148
  44. package/src/components/display/filter/AdvancedSearch.vue +192 -273
  45. package/src/components/display/filter/CategoryFilter.vue +51 -59
  46. package/src/components/display/filter/MonetizableFilter.vue +17 -16
  47. package/src/components/display/filter/ProductorSearch.vue +149 -149
  48. package/src/components/display/filter/RubriqueChoice.vue +33 -37
  49. package/src/components/display/filter/RubriqueFilter.vue +132 -122
  50. package/src/components/display/list/ListPaginate.vue +145 -0
  51. package/src/components/display/list/Paginate.vue +218 -0
  52. package/src/components/display/live/CountDown.vue +19 -12
  53. package/src/components/display/live/LiveHorizontalList.vue +78 -55
  54. package/src/components/display/live/LiveItem.vue +136 -121
  55. package/src/components/display/live/LiveList.vue +172 -276
  56. package/src/components/display/organisation/OrganisationChooser.vue +104 -122
  57. package/src/components/display/organisation/OrganisationChooserLight.vue +46 -37
  58. package/src/components/display/participant/ParticipantItem.vue +91 -115
  59. package/src/components/display/participant/ParticipantList.vue +131 -117
  60. package/src/components/display/playlist/PlaylistItem.vue +54 -78
  61. package/src/components/display/playlist/PlaylistList.vue +91 -83
  62. package/src/components/display/playlist/PodcastList.vue +113 -128
  63. package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
  64. package/src/components/display/podcasts/AnimatorsItem.vue +28 -39
  65. package/src/components/display/podcasts/ParticipantDescription.vue +62 -74
  66. package/src/components/display/podcasts/PodcastFilterList.vue +47 -89
  67. package/src/components/display/podcasts/PodcastImage.vue +195 -229
  68. package/src/components/display/podcasts/PodcastInlineList.vue +64 -282
  69. package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
  70. package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
  71. package/src/components/display/podcasts/PodcastItem.vue +93 -227
  72. package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
  73. package/src/components/display/podcasts/PodcastList.vue +115 -134
  74. package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
  75. package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
  76. package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
  77. package/src/components/display/podcasts/TagList.vue +60 -39
  78. package/src/components/display/rubriques/RubriqueChooser.vue +114 -95
  79. package/src/components/display/rubriques/RubriqueList.vue +111 -106
  80. package/src/components/display/sharing/PlayerParameters.vue +90 -151
  81. package/src/components/display/sharing/QrCode.vue +40 -27
  82. package/src/components/display/sharing/ShareButtons.vue +64 -299
  83. package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
  84. package/src/components/display/sharing/ShareDistribution.vue +99 -140
  85. package/src/components/display/sharing/SharePlayer.vue +155 -370
  86. package/src/components/display/sharing/SharePlayerColors.vue +78 -0
  87. package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
  88. package/src/components/display/sharing/SplitButton.vue +42 -0
  89. package/src/components/display/sharing/SubscribeButtons.vue +62 -179
  90. package/src/components/display/studio/RecordingItemButton.vue +4 -6
  91. package/src/components/form/ClassicCheckbox.vue +66 -0
  92. package/src/components/form/ClassicLoading.vue +28 -0
  93. package/src/components/form/ClassicRadio.vue +66 -0
  94. package/src/components/form/ClassicSearch.vue +86 -0
  95. package/src/components/form/ClassicSelect.vue +65 -0
  96. package/src/components/misc/ErrorMessage.vue +27 -14
  97. package/src/components/misc/Footer.vue +132 -127
  98. package/src/components/misc/HomeDropdown.vue +93 -150
  99. package/src/components/misc/LeftMenu.vue +121 -192
  100. package/src/components/misc/Popover.vue +118 -0
  101. package/src/components/misc/Snackbar.vue +70 -35
  102. package/src/components/misc/TopBar.vue +192 -308
  103. package/src/components/misc/modal/ClipboardModal.vue +35 -50
  104. package/src/components/misc/modal/MessageModal.vue +71 -48
  105. package/src/components/misc/modal/NewsletterModal.vue +260 -231
  106. package/src/components/misc/modal/QrCodeModal.vue +42 -60
  107. package/src/components/misc/modal/ShareModalPlayer.vue +136 -70
  108. package/src/components/misc/player/Player.vue +146 -0
  109. package/src/components/misc/player/PlayerCompact.vue +154 -0
  110. package/src/components/misc/player/PlayerLarge.vue +166 -0
  111. package/src/components/misc/player/PlayerProgressBar.vue +112 -0
  112. package/src/components/misc/player/PlayerTimeline.vue +61 -0
  113. package/src/components/mixins/functions.ts +11 -43
  114. package/src/components/mixins/handle403.ts +17 -0
  115. package/src/components/mixins/init.ts +8 -6
  116. package/src/components/mixins/orgaComputed.ts +15 -0
  117. package/src/components/mixins/organisationFilter.ts +35 -18
  118. package/src/components/mixins/player/playerComment.ts +98 -0
  119. package/src/components/mixins/player/playerDisplay.ts +113 -0
  120. package/src/components/mixins/player/playerLive.ts +111 -0
  121. package/src/components/mixins/player/playerLogic.ts +225 -0
  122. package/src/components/mixins/tagOfMixins.ts +19 -0
  123. package/src/components/pages/Category.vue +21 -26
  124. package/src/components/pages/Emission.vue +136 -162
  125. package/src/components/pages/Emissions.vue +60 -93
  126. package/src/components/pages/Error403Page.vue +60 -0
  127. package/src/components/pages/Home.vue +32 -39
  128. package/src/components/pages/Lives.vue +40 -46
  129. package/src/components/pages/PageNotFound.vue +55 -0
  130. package/src/components/pages/Participant.vue +110 -113
  131. package/src/components/pages/Participants.vue +21 -45
  132. package/src/components/pages/Playlist.vue +84 -75
  133. package/src/components/pages/Playlists.vue +29 -47
  134. package/src/components/pages/Podcast.vue +203 -434
  135. package/src/components/pages/Podcasts.vue +75 -134
  136. package/src/components/pages/Rubrique.vue +21 -29
  137. package/src/components/pages/Search.vue +33 -79
  138. package/src/helper/dom.ts +1 -1
  139. package/src/helper/duration.ts +1 -1
  140. package/src/helper/useEventListener.ts +18 -0
  141. package/src/i18n.ts +36 -0
  142. package/src/locale/de.ts +309 -0
  143. package/src/locale/educationen.ts +1 -1
  144. package/src/locale/educationfr.ts +1 -1
  145. package/src/locale/en.ts +45 -28
  146. package/src/locale/es.ts +309 -0
  147. package/src/locale/fr.ts +25 -8
  148. package/src/locale/it.ts +307 -0
  149. package/src/locale/messages.ts +9 -2
  150. package/src/locale/sl.ts +309 -0
  151. package/src/main.ts +59 -85
  152. package/src/router/router.ts +60 -39
  153. package/src/sass/_variables.scss +10 -8
  154. package/src/shims-tsx.d.ts +2 -0
  155. package/src/shims-vue-recaptcha-v3.d.ts +9 -0
  156. package/src/shims-vue.d.ts +5 -4
  157. package/src/store/AppStore.ts +8 -9
  158. package/src/store/class/adserver/adserverConfig.ts +9 -0
  159. package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
  160. package/src/store/class/adserver/adserverTiming.ts +10 -0
  161. package/src/store/class/cartouchier/cartouche.ts +15 -0
  162. package/src/store/class/cartouchier/cartouchier.ts +9 -0
  163. package/src/store/class/conference/conference.ts +35 -0
  164. package/src/store/class/conference/conferenceMessage.ts +10 -0
  165. package/src/store/class/conference/conferenceParticipant.ts +18 -0
  166. package/src/store/class/conference/pad.ts +15 -0
  167. package/src/store/class/conference/studioCall.ts +7 -0
  168. package/src/store/class/contract/contract.ts +7 -0
  169. package/src/store/class/contract/contractOrganisation.ts +7 -0
  170. package/src/store/class/ftp/ftpEmission.ts +41 -0
  171. package/src/store/class/ftp/ftpParam.ts +12 -0
  172. package/src/store/class/ftp/testFtpEmission.ts +5 -0
  173. package/src/store/class/general/audioView.ts +21 -0
  174. package/src/store/class/general/category.ts +10 -0
  175. package/src/store/class/general/comment.ts +16 -0
  176. package/src/store/class/general/customPlayer.ts +9 -0
  177. package/src/store/class/general/emission.ts +23 -0
  178. package/src/store/class/general/fetchParam.ts +3 -0
  179. package/src/store/class/general/initState.ts +25 -0
  180. package/src/store/class/general/interfacePageable.ts +16 -0
  181. package/src/store/class/general/ituneCategory.ts +5 -0
  182. package/src/store/class/general/media.ts +14 -0
  183. package/src/store/class/general/organisation.ts +20 -0
  184. package/src/store/class/general/pageable.ts +13 -0
  185. package/src/store/class/general/participant.ts +12 -0
  186. package/src/store/class/{player.ts → general/player.ts} +5 -3
  187. package/src/store/class/general/playlist.ts +13 -0
  188. package/src/store/class/general/podcast.ts +43 -0
  189. package/src/store/class/general/sortPageable.ts +5 -0
  190. package/src/store/class/general/soundcastCategory.ts +8 -0
  191. package/src/store/class/ouestFrance/ofTag.ts +36 -0
  192. package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
  193. package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
  194. package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
  195. package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
  196. package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
  197. package/src/store/class/rss/aggregator.ts +28 -0
  198. package/src/store/class/rss/rssEmission.ts +14 -0
  199. package/src/store/class/rss/rssInfo.ts +8 -0
  200. package/src/store/class/rubrique/rubriquage.ts +10 -0
  201. package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
  202. package/src/store/class/rubrique/rubrique.ts +9 -0
  203. package/src/store/class/stat/statArrayIncome.ts +6 -0
  204. package/src/store/class/stat/statArrayObject.ts +34 -0
  205. package/src/store/class/stat/statGraph.ts +7 -0
  206. package/src/store/class/user/person.ts +15 -0
  207. package/src/store/class/user/profile.ts +12 -0
  208. package/src/store/class/user/userKeycloak.ts +24 -0
  209. package/src/store/paramStore.ts +221 -241
  210. package/src/store/typeAppStore.ts +45 -28
  211. package/src/vuex-shim.d.ts +8 -0
  212. package/tsconfig.json +2 -1
  213. package/vue.config.js +3 -1
  214. package/public/css/fonts/saooti-ui.eot +0 -0
  215. package/public/css/fonts/saooti-ui.svg +0 -840
  216. package/public/css/fonts/saooti-ui.ttf +0 -0
  217. package/public/css/fonts/saooti-ui.woff +0 -0
  218. package/public/css/fonts/stitcher-logo.svg +0 -83
  219. package/public/img/article.png +0 -0
  220. package/src/api/comments.ts +0 -7
  221. package/src/api/emissions.ts +0 -7
  222. package/src/api/podcasts.ts +0 -7
  223. package/src/api/profile.ts +0 -8
  224. package/src/api/studio.ts +0 -8
  225. package/src/assets/bootstrap_scss/_alert.scss +0 -51
  226. package/src/assets/bootstrap_scss/_badge.scss +0 -54
  227. package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
  228. package/src/assets/bootstrap_scss/_button-group.scss +0 -164
  229. package/src/assets/bootstrap_scss/_buttons.scss +0 -298
  230. package/src/assets/bootstrap_scss/_card.scss +0 -278
  231. package/src/assets/bootstrap_scss/_carousel.scss +0 -197
  232. package/src/assets/bootstrap_scss/_close.scss +0 -41
  233. package/src/assets/bootstrap_scss/_code.scss +0 -48
  234. package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
  235. package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
  236. package/src/assets/bootstrap_scss/_forms.scss +0 -352
  237. package/src/assets/bootstrap_scss/_functions.scss +0 -134
  238. package/src/assets/bootstrap_scss/_grid.scss +0 -69
  239. package/src/assets/bootstrap_scss/_images.scss +0 -42
  240. package/src/assets/bootstrap_scss/_input-group.scss +0 -191
  241. package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
  242. package/src/assets/bootstrap_scss/_list-group.scss +0 -158
  243. package/src/assets/bootstrap_scss/_media.scss +0 -8
  244. package/src/assets/bootstrap_scss/_mixins.scss +0 -47
  245. package/src/assets/bootstrap_scss/_modal.scss +0 -243
  246. package/src/assets/bootstrap_scss/_nav.scss +0 -120
  247. package/src/assets/bootstrap_scss/_navbar.scss +0 -324
  248. package/src/assets/bootstrap_scss/_pagination.scss +0 -74
  249. package/src/assets/bootstrap_scss/_popover.scss +0 -170
  250. package/src/assets/bootstrap_scss/_print.scss +0 -141
  251. package/src/assets/bootstrap_scss/_progress.scss +0 -46
  252. package/src/assets/bootstrap_scss/_reboot.scss +0 -482
  253. package/src/assets/bootstrap_scss/_root.scss +0 -20
  254. package/src/assets/bootstrap_scss/_spinners.scss +0 -55
  255. package/src/assets/bootstrap_scss/_tables.scss +0 -185
  256. package/src/assets/bootstrap_scss/_toasts.scss +0 -44
  257. package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
  258. package/src/assets/bootstrap_scss/_transitions.scss +0 -20
  259. package/src/assets/bootstrap_scss/_type.scss +0 -125
  260. package/src/assets/bootstrap_scss/_utilities.scss +0 -17
  261. package/src/assets/bootstrap_scss/_variables.scss +0 -1145
  262. package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
  263. package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
  264. package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
  265. package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
  266. package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
  267. package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
  268. package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
  269. package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
  270. package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
  271. package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
  272. package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
  273. package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
  274. package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
  275. package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
  276. package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
  277. package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
  278. package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
  279. package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
  280. package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
  281. package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
  282. package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
  283. package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
  284. package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
  285. package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
  286. package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
  287. package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
  288. package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
  289. package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
  290. package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
  291. package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
  292. package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
  293. package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
  294. package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
  295. package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
  296. package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
  297. package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
  298. package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
  299. package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
  300. package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
  301. package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
  302. package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
  303. package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
  304. package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
  305. package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
  306. package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
  307. package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
  308. package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
  309. package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
  310. package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
  311. package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
  312. package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
  313. package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
  314. package/src/components/misc/Player.vue +0 -772
  315. package/src/store/class/category.ts +0 -8
  316. package/src/store/class/comment.ts +0 -17
  317. package/src/store/class/conference.ts +0 -27
  318. package/src/store/class/customPlayer.ts +0 -8
  319. package/src/store/class/emission.ts +0 -20
  320. package/src/store/class/media.ts +0 -13
  321. package/src/store/class/organisation.ts +0 -19
  322. package/src/store/class/participant.ts +0 -12
  323. package/src/store/class/person.ts +0 -13
  324. package/src/store/class/playlist.ts +0 -15
  325. package/src/store/class/podcast.ts +0 -37
  326. package/src/store/class/rubriquage.ts +0 -9
  327. package/src/store/class/rubriquageFilter.ts +0 -5
  328. package/src/store/class/rubrique.ts +0 -8
@@ -1,10 +1,23 @@
1
- //@import 'node_modules/bootstrap/scss/bootstrap';
2
1
  @import '../sass/_variables.scss';
3
- @import './bootstrap_scss/bootstrap.scss';
4
- @import 'node_modules/bootstrap-vue/src/index.scss';
2
+ // Bottstrap variable overload
3
+ $gray-800: #282828 !default;
4
+ $border-width: 0.1rem !default;
5
+ $h1-font-size: $font-size-base * 2.5 !default;
6
+ $h2-font-size: $font-size-base * 1.3 !default;
7
+ $h3-font-size: $font-size-base * 1.25 !default;
8
+ $h4-font-size: $font-size-base * 1.1 !default;
9
+ $h5-font-size: $font-size-base * 0.9 !default;
10
+ $h6-font-size: $font-size-base * 0.7 !default;
11
+ $breadcrumb-bg: #f3f3f3 !default;
12
+ $breadcrumb-border-radius: 2rem !default;
13
+ @import 'node_modules/bootstrap/scss/bootstrap.scss';
14
+ @import './bootstrap-diff.scss';
15
+ /* @import 'node_modules/bootstrap-vue-3/dist/bootstrap-vue-3.css'; */
5
16
  @import './general.scss';
17
+ @import './live.scss';
6
18
  @import './form.scss';
7
19
  @import './multiselect.scss';
8
20
  @import './transition.scss';
9
21
  @import './modal.scss';
10
- @import './share.scss';
22
+ @import './share.scss';
23
+ @import 'v-calendar/dist/style.css';
@@ -1,130 +1,75 @@
1
1
  @import '../sass/_variables.scss';
2
+ .octopus-app{
3
+ .page-box-absolute{
4
+ position: absolute;
5
+ top: 0;
6
+ right: 0;
7
+ left: 0;
8
+ height: max-content;
9
+ min-height: 100%;
10
+ z-index: 11;
11
+ display: flex;
12
+ flex-direction: column;
13
+ &.page-box-player{
14
+ padding-bottom: 120px;
15
+ }
16
+ }
17
+ .saooti-help {
18
+ font-size: 1.2rem;
19
+ border-radius: 50%;
20
+ margin: 0 auto;
21
+ align-items: center;
22
+ width: 2rem;
23
+ height: 2rem;
24
+ vertical-align: middle;
25
+ cursor: pointer;
26
+ font-weight: bold;
27
+ background: transparent;
28
+ display: flex;
29
+ justify-self: center;
30
+ justify-content: center;
31
+ &:hover {
32
+ border: 0;
33
+ background: #f3f3f3;
34
+ }
35
+ }
36
+ .icon-caution {
37
+ margin-right: 5px;
38
+ margin-bottom: 2px;
39
+ height: 25px;
40
+ }
2
41
 
3
- .search-icon-container {
4
- position: absolute;
5
- top: 0;
6
- bottom: 0;
7
- right: 0;
8
- display: flex;
9
- align-items: center;
10
- }
11
- .share-container {
12
- @media (max-width: 960px) {
13
- flex-grow: 1;
14
- }
15
- }
16
- .icon-caution {
17
- margin-right: 5px;
18
- margin-bottom: 2px;
19
- height: 25px;
20
- }
21
- .flex-no-grow {
22
- flex-grow: 0 !important;
23
- }
24
- .custom-radio .custom-control-label {
25
- cursor: pointer;
26
- }
27
- .input-share-player {
28
- border: 1px solid #ddd;
29
- border-radius: 50px;
30
- &#number-input {
31
- margin: 0 1rem;
32
- width: 60px;
33
- }
34
- }
35
- .vue-swatches__container {
36
- padding: 0 !important;
37
- background-color: transparent !important;
38
- }
39
- .vue-swatches__swatch--selected {
40
- border: 2px #40a372 solid !important;
41
- box-shadow: unset !important;
42
- -webkit-box-shadow: unset !important;
43
- }
44
- .vue-swatches__trigger{
45
- border: solid 1px black;
46
- }
47
- .share-button-title {
48
- height: 2rem;
49
- }
50
-
51
- .podcast-list {
52
- align-self: stretch;
53
- flex-grow: 1;
54
- margin: 1em 0 0;
55
- padding: 0;
56
- /*For ie11 */
57
- display: flex;
58
- flex-wrap: wrap;
59
- /* end */
60
- display: grid; /* 1 */
61
- grid-template-columns: repeat(auto-fill, 13rem); /* 2 */
62
- grid-gap: 1rem; /* 3 */
63
- justify-content: space-between; /* 4 */
64
- }
65
- /** PHONES*/
66
- @media (max-width: 960px) {
67
- .podcast-list {
42
+ .vue-swatches__trigger{
43
+ border: solid 1px black;
44
+ }
45
+ .podcast-list {
46
+ align-self: stretch;
47
+ flex-grow: 1;
48
+ margin: 1em 0 0;
49
+ padding: 0;
50
+ /*For ie11 */
51
+ display: flex;
52
+ flex-wrap: wrap;
53
+ /* end */
54
+ display: grid; /* 1 */
55
+ grid-template-columns: repeat(auto-fill, 13rem); /* 2 */
56
+ grid-gap: 1rem; /* 3 */
57
+ justify-content: space-between; /* 4 */
58
+ @media (max-width: 960px) {
68
59
  align-self: auto;
69
60
  justify-items: center;
70
61
  display: flex;
71
62
  justify-content: space-around;
72
- }
73
- }
74
- .list-episode {
75
- padding: 2rem 0rem 1rem !important;
76
- @media (max-width: 450px) {
77
- padding: 0.5rem 0rem 1rem !important;
78
- }
79
- h2 {
80
- margin-bottom: 1rem;
81
- }
82
- }
83
- .podcast-list-inline {
84
- align-self: stretch;
85
- flex-grow: 1;
63
+ }
64
+ }
65
+
66
+ .element-list-inline {
86
67
  margin: 0;
87
68
  padding: 0;
88
69
  display: flex;
89
70
  flex-wrap: nowrap;
90
71
  justify-content: space-between;
91
- display: grid;
92
- grid-auto-flow: column;
93
- grid-gap: 1rem;
94
- grid-row: 1;
95
- }
96
- .out-left-enter-active,
97
- .out-left-leave-active,
98
- .out-right-enter-active,
99
- .out-right-leave-active {
100
- transition: all 0.3s ease;
101
- }
102
-
103
- .out-left-leave-to,
104
- .out-right-enter {
105
- transform: translateX(-110%);
106
- opacity: 0;
107
- }
108
-
109
- .out-left-enter,
110
- .out-right-leave-to {
111
- transform: translateX(110%);
112
- opacity: 0;
113
- }
114
-
115
- .out-left-leave-to,
116
- .out-right-leave-to {
117
- position: absolute;
118
- }
119
- .out-right-leave-to {
120
- right: 5rem;
121
- z-index: -1;
122
- }
123
- /** PHONES*/
124
- @media (max-width: 960px) {
125
- .podcast-list-inline {
126
- display: flex;
127
- flex-wrap: nowrap;
72
+ @media (max-width: 960px) {
128
73
  overflow-y: scroll;
129
74
  -webkit-overflow-scrolling: touch;
130
75
  scroll-behavior: smooth;
@@ -135,19 +80,27 @@
135
80
  }
136
81
  }
137
82
  }
83
+ .element-list-inline.overflowScroll {
84
+ display: flex;
85
+ flex-wrap: wrap;
86
+ -webkit-overflow-scrolling: touch;
87
+ scroll-behavior: smooth;
88
+ padding-bottom: 1rem;
89
+ width: 100%;
90
+ height: 80vh;
91
+ overflow-y: auto;
92
+ grid-gap: inherit;
93
+ @media (max-width: 960px) {
94
+ overflow-x: hidden;
95
+ flex-direction: column;
96
+ flex-wrap: nowrap;
97
+ }
98
+ .item-phone-margin {
99
+ margin: 1rem 0.5rem !important;
100
+ }
101
+ }
138
102
 
139
- .arrow-transform {
140
- transform: rotate(180deg);
141
- }
142
- .no-border-round {
143
- border-radius: 0;
144
- }
145
- .text-ellipsis {
146
- white-space: nowrap;
147
- overflow: hidden;
148
- text-overflow: ellipsis;
149
- }
150
- .emission-list {
103
+ .emission-list {
151
104
  align-self: stretch;
152
105
  flex-grow: 1;
153
106
  margin: 0;
@@ -156,57 +109,45 @@
156
109
  display: flex;
157
110
  flex-wrap: wrap;
158
111
  /* end */
159
-
160
112
  display: grid; /* 1 */
161
113
  grid-gap: 1rem; /* 3 */
162
114
  justify-content: space-between; /* 4 */
163
- }
164
- .twoEmissions {
165
- grid-template-columns: repeat(auto-fill, 49%); /* 2 */
166
- }
167
-
168
- .threeEmissions {
169
- grid-template-columns: repeat(auto-fill, 32%); /* 2 */
170
- }
171
-
172
- /** PHONES*/
173
- @media (max-width: 1200px) {
174
- .emission-list {
175
- grid-template-columns: auto;
115
+ &.two-emissions {
116
+ grid-template-columns: repeat(auto-fill, 49%); /* 2 */
117
+ }
118
+ &.three-emissions {
119
+ grid-template-columns: repeat(auto-fill, 32%); /* 2 */
120
+ }
121
+ @media (max-width: 1200px) {
122
+ grid-template-columns: auto !important;
123
+ display: flex !important;
176
124
  }
177
125
  }
126
+
178
127
  .emission-item-container {
179
128
  list-style: none;
180
129
  background: #fff;
181
130
  border-radius: 2rem;
182
131
  display: flex;
183
- width: 100%;
184
- margin: 1rem 0;
132
+ flex-grow: 1;
185
133
  .img-box {
186
134
  border-radius: 2rem !important;
187
135
  }
136
+ @media (max-width: 680px) {
137
+ justify-content: center;
138
+ }
188
139
  }
189
- .emission-light-max-size {
190
- width: 300px;
191
- border-bottom: 1px solid #ddd;
192
- }
193
- .emission-light-title {
194
- color: #333 !important;
195
- align-self: flex-end;
196
- text-transform: none;
197
- font-size: 1.5em;
198
- font-weight: normal;
199
- white-space: nowrap;
200
- overflow: hidden;
201
- text-overflow: ellipsis;
202
- }
203
-
140
+
204
141
  .emission-item-text {
205
142
  padding: 1rem;
206
143
  display: flex;
207
144
  flex-direction: column;
208
145
  max-height: 13rem;
209
-
146
+ flex-grow: 1;
147
+ @media (max-width: 450px) {
148
+ padding: 0.5rem 0;
149
+ text-align: center;
150
+ }
210
151
  .emission-name {
211
152
  font-size: 0.9rem;
212
153
  font-weight: 600;
@@ -216,7 +157,6 @@
216
157
  -webkit-box-orient: vertical;
217
158
  word-break: break-word;
218
159
  }
219
-
220
160
  .emission-description {
221
161
  overflow: hidden;
222
162
  margin-top: 0.5em;
@@ -236,108 +176,68 @@
236
176
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 40%);
237
177
  }
238
178
  }
239
-
240
- .emission-small-description {
241
- -webkit-line-clamp: 2;
242
- border-top: 1px solid #ddd;
243
- word-break: break-word;
244
- }
245
-
246
179
  .emission-producer {
247
180
  font-weight: 300;
248
181
  font-size: 0.6rem;
249
182
  }
250
183
  }
251
-
252
- button.btn.btn-primary.share-btn.m-3 {
253
- font-size: 1rem;
254
- width: 2.5rem;
255
- height: 2.5rem !important;
256
- margin: 0 0.8rem 0 0 !important;
184
+ .status-Pending {
185
+ background: #eb7d22;
257
186
  }
258
- /** PHONES*/
259
- @media (max-width: 680px) {
260
- .emission-item-container {
261
- flex-wrap: wrap;
262
- width: auto;
263
- margin: 0;
264
- padding: 1rem;
265
- justify-content: center;
266
- }
187
+ .status-Invalid {
188
+ background: #d40303;
267
189
  }
268
-
269
- @media (max-width: 450px) {
270
- .emission-item-text {
271
- padding: 0.5rem 0;
272
- text-align: center;
273
- }
190
+ .status-Valid {
191
+ background: $octopus-primary-color;
192
+ }
193
+ .status-Valid, .status-Invalid, .status-Pending {
194
+ width: 14px;
195
+ height: 14px;
196
+ border-radius: 50%;
197
+ }
198
+ .icon-certified {
199
+ height: 15px;
200
+ margin-right: 0.5rem;
274
201
  }
275
-
276
- .comment-item-container {
277
- .btn-circle {
278
- width: 32px;
279
- height: 32px;
280
- background: $octopus-secondary-color;
281
- padding: 0;
282
- display: flex;
283
- align-items: center;
284
- justify-content: center;
285
- }
286
- .status-Pending {
287
- background: #eb7d22;
288
- }
289
- .status-Invalid {
290
- background: #d40303;
291
- }
292
- .status-Valid {
293
- background: $octopus-primary-color;
294
- }
295
202
 
296
- .status-Valid, .status-Invalid, .status-Pending {
297
- width: 14px;
298
- height: 14px;
299
- border-radius: 50%;
300
- }
301
- .icon-certified {
302
- height: 15px;
303
- margin-right: 0.5rem;
203
+ .saooti-stitcher-logo,
204
+ .saooti-google-podcasts,
205
+ .saooti-amazon,
206
+ .saooti-Whatsapp {
207
+ position: relative;
208
+ div {
209
+ position: absolute;
210
+ right: 0;
211
+ }
212
+ }
213
+ .saooti-Whatsapp{
214
+ width: 25px;
215
+ height: 25px;
216
+ }
217
+ .saooti-stitcher-logo,.saooti-amazon {
218
+ font-size: 1.7rem !important;
219
+ div {
220
+ top: -7px;
304
221
  }
305
- .btn-answer {
306
- padding: 0.1rem 0.75rem;
222
+ }
223
+ .share-btn{
224
+ .saooti-stitcher-logo, .saooti-amazon {
225
+ top: -0.5rem;
226
+ left: 0.8rem;
307
227
  }
308
- .collapsed > .when-opened,
309
- :not(.collapsed) > .when-closed {
310
- display: none !important;
228
+ .saooti-google-podcasts{
229
+ top: -0.6rem;
230
+ left: 0.7rem;
311
231
  }
312
- }
313
- .live-image-status {
314
- text-align: center;
315
- width: 100%;
316
- font-size: 0.6rem;
317
- padding: 0.2rem 0;
318
- color: white;
319
- text-transform: uppercase;
320
232
  }
321
233
 
322
- .saooti-stitcher-logo,
323
- .saooti-google-podcasts,
324
- .saooti-amazon,
325
- .saooti-Whatsapp {
326
- position: relative;
327
- div {
328
- position: absolute;
329
- right: 0;
330
- }
331
- }
332
- .saooti-stitcher-logo,.saooti-amazon {
333
- font-size: 1.7rem !important;
334
- div {
335
- top: -7px;
336
- }
337
- }
338
- .share-btn{
339
- .saooti-stitcher-logo, .saooti-amazon {
340
- top: -0.5rem;
341
- left: 0.8rem;
234
+ .logo-octopus{
235
+ width: 250px;
236
+ @media (max-width: 960px) {
237
+ width: 200px;
238
+ }
239
+ @media (max-width: 200px) {
240
+ width: 90%;
241
+ }
342
242
  }
343
243
  }
@@ -1,3 +1,99 @@
1
- .transition-height {
2
- transition: height 1s;
1
+ .octopus-app{
2
+ .transition-height {
3
+ transition: height 1s;
4
+ }
5
+ .arrow-transform {
6
+ transform: rotate(180deg);
7
+ }
8
+ .bloc-paddle {
9
+ align-items: flex-end;
10
+ display: flex;
11
+ width: 2rem;
12
+ height: 2.6rem;
13
+ padding: 0.7rem;
14
+ justify-content: space-around;
15
+ align-content: flex-start;
16
+ border-radius: 50%;
17
+ background: transparent !important;
18
+
19
+ > span {
20
+ width: 0.1rem;
21
+ margin: 0.05rem;
22
+ background: #fff;
23
+ }
24
+
25
+ .paddle1 {
26
+ animation-duration: 0.6s;
27
+ animation-name: slidein;
28
+ animation-iteration-count: infinite;
29
+ animation-direction: alternate;
30
+ }
31
+
32
+ .paddle2 {
33
+ animation-duration: 0.3s;
34
+ animation-name: slidein2;
35
+ animation-iteration-count: infinite;
36
+ animation-direction: alternate;
37
+ }
38
+
39
+ .paddle3 {
40
+ animation-duration: 0.5s;
41
+ animation-name: slidein3;
42
+ animation-iteration-count: infinite;
43
+ animation-direction: alternate;
44
+ }
45
+ @keyframes slidein {
46
+ 0% {
47
+ height: 0;
48
+ }
49
+ 100% {
50
+ height: 1rem;
51
+ }
52
+ }
53
+
54
+ @keyframes slidein2 {
55
+ 0% {
56
+ height: 0.3rem;
57
+ }
58
+ 100% {
59
+ height: 1.2rem;
60
+ }
61
+ }
62
+
63
+ @keyframes slidein3 {
64
+ 0% {
65
+ height: 1.2rem;
66
+ }
67
+ 100% {
68
+ height: 0;
69
+ }
70
+ }
71
+ }
72
+ .out-left-enter-active,
73
+ .out-left-leave-active,
74
+ .out-right-enter-active,
75
+ .out-right-leave-active {
76
+ transition: all 0.3s ease;
77
+ }
78
+
79
+ .out-left-leave-to,
80
+ .out-right-enter {
81
+ transform: translateX(-110%);
82
+ opacity: 0;
83
+ }
84
+
85
+ .out-left-enter,
86
+ .out-right-leave-to {
87
+ transform: translateX(110%);
88
+ opacity: 0;
89
+ }
90
+
91
+ .out-left-leave-to,
92
+ .out-right-leave-to {
93
+ position: absolute;
94
+ }
95
+ .out-right-leave-to {
96
+ right: 5rem;
97
+ z-index: -1;
98
+ }
3
99
  }
@@ -1,10 +1,8 @@
1
1
  <template>
2
- <div></div>
2
+ <div />
3
3
  </template>
4
4
 
5
- <style lang="scss"></style>
6
-
7
5
  <script lang="ts">
8
- import Vue from 'vue';
9
- export default Vue.extend({});
10
- </script>
6
+ import { defineComponent } from 'vue'
7
+ export default defineComponent({})
8
+ </script>