@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.
- package/README.md +188 -2
- package/index.ts +45 -11
- package/package.json +46 -48
- package/public/config.ts +4 -0
- package/public/css/fonts/icomoon.eot +0 -0
- package/public/css/fonts/icomoon.svg +129 -0
- package/public/css/fonts/icomoon.ttf +0 -0
- package/public/css/fonts/icomoon.woff +0 -0
- package/public/css/fonts/style.css +185 -1266
- package/public/img/403.jpeg +0 -0
- package/public/img/404.svg +242 -0
- package/public/img/ouest_france_logo.svg +12 -0
- package/src/App.vue +45 -24
- package/src/api/classicCrud.ts +34 -0
- package/src/api/initialize.ts +4 -2
- package/src/assets/bootstrap-diff.scss +197 -0
- package/src/assets/form.scss +77 -77
- package/src/assets/general.scss +287 -301
- package/src/assets/live.scss +39 -0
- package/src/assets/modal.scss +43 -50
- package/src/assets/multiselect.scss +522 -590
- package/src/assets/octopus-library.scss +17 -4
- package/src/assets/share.scss +150 -250
- package/src/assets/transition.scss +98 -2
- package/src/components/display/aggregator/RssSection.vue +4 -6
- package/src/components/display/categories/CategoryChooser.vue +100 -79
- package/src/components/display/categories/CategoryFilter.vue +117 -37
- package/src/components/display/categories/CategoryList.vue +121 -108
- package/src/components/display/comments/AddCommentModal.vue +98 -94
- package/src/components/display/comments/CommentBasicView.vue +95 -0
- package/src/components/display/comments/CommentInput.vue +175 -155
- package/src/components/display/comments/CommentItem.vue +152 -168
- package/src/components/display/comments/CommentList.vue +123 -229
- package/src/components/display/comments/CommentParentInfo.vue +26 -58
- package/src/components/display/comments/CommentPlayer.vue +51 -49
- package/src/components/display/comments/CommentSection.vue +44 -67
- package/src/components/display/edit/EditBox.vue +11 -5
- package/src/components/display/edit/EditCommentBox.vue +121 -29
- package/src/components/display/emission/EmissionChooser.vue +73 -81
- package/src/components/display/emission/EmissionInlineList.vue +130 -128
- package/src/components/display/emission/EmissionItem.vue +68 -109
- package/src/components/display/emission/EmissionList.vue +140 -146
- package/src/components/display/emission/EmissionPlayerItem.vue +186 -148
- package/src/components/display/filter/AdvancedSearch.vue +192 -273
- package/src/components/display/filter/CategoryFilter.vue +51 -59
- package/src/components/display/filter/MonetizableFilter.vue +17 -16
- package/src/components/display/filter/ProductorSearch.vue +149 -149
- package/src/components/display/filter/RubriqueChoice.vue +33 -37
- package/src/components/display/filter/RubriqueFilter.vue +132 -122
- package/src/components/display/list/ListPaginate.vue +145 -0
- package/src/components/display/list/Paginate.vue +218 -0
- package/src/components/display/live/CountDown.vue +19 -12
- package/src/components/display/live/LiveHorizontalList.vue +78 -55
- package/src/components/display/live/LiveItem.vue +136 -121
- package/src/components/display/live/LiveList.vue +172 -276
- package/src/components/display/organisation/OrganisationChooser.vue +104 -122
- package/src/components/display/organisation/OrganisationChooserLight.vue +46 -37
- package/src/components/display/participant/ParticipantItem.vue +91 -115
- package/src/components/display/participant/ParticipantList.vue +131 -117
- package/src/components/display/playlist/PlaylistItem.vue +54 -78
- package/src/components/display/playlist/PlaylistList.vue +91 -83
- package/src/components/display/playlist/PodcastList.vue +113 -128
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +191 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +28 -39
- package/src/components/display/podcasts/ParticipantDescription.vue +62 -74
- package/src/components/display/podcasts/PodcastFilterList.vue +47 -89
- package/src/components/display/podcasts/PodcastImage.vue +195 -229
- package/src/components/display/podcasts/PodcastInlineList.vue +64 -282
- package/src/components/display/podcasts/PodcastInlineListClassic.vue +240 -0
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +167 -0
- package/src/components/display/podcasts/PodcastItem.vue +93 -227
- package/src/components/display/podcasts/PodcastItemInfo.vue +166 -0
- package/src/components/display/podcasts/PodcastList.vue +115 -134
- package/src/components/display/podcasts/PodcastModuleBox.vue +234 -0
- package/src/components/display/podcasts/PodcastPlayBar.vue +101 -0
- package/src/components/display/podcasts/PodcastSwiperList.vue +204 -0
- package/src/components/display/podcasts/TagList.vue +60 -39
- package/src/components/display/rubriques/RubriqueChooser.vue +114 -95
- package/src/components/display/rubriques/RubriqueList.vue +111 -106
- package/src/components/display/sharing/PlayerParameters.vue +90 -151
- package/src/components/display/sharing/QrCode.vue +40 -27
- package/src/components/display/sharing/ShareButtons.vue +64 -299
- package/src/components/display/sharing/ShareButtonsIntern.vue +225 -0
- package/src/components/display/sharing/ShareDistribution.vue +99 -140
- package/src/components/display/sharing/SharePlayer.vue +155 -370
- package/src/components/display/sharing/SharePlayerColors.vue +78 -0
- package/src/components/display/sharing/SharePlayerTypes.vue +112 -0
- package/src/components/display/sharing/SplitButton.vue +42 -0
- package/src/components/display/sharing/SubscribeButtons.vue +62 -179
- package/src/components/display/studio/RecordingItemButton.vue +4 -6
- package/src/components/form/ClassicCheckbox.vue +66 -0
- package/src/components/form/ClassicLoading.vue +28 -0
- package/src/components/form/ClassicRadio.vue +66 -0
- package/src/components/form/ClassicSearch.vue +86 -0
- package/src/components/form/ClassicSelect.vue +65 -0
- package/src/components/misc/ErrorMessage.vue +27 -14
- package/src/components/misc/Footer.vue +132 -127
- package/src/components/misc/HomeDropdown.vue +93 -150
- package/src/components/misc/LeftMenu.vue +121 -192
- package/src/components/misc/Popover.vue +118 -0
- package/src/components/misc/Snackbar.vue +70 -35
- package/src/components/misc/TopBar.vue +192 -308
- package/src/components/misc/modal/ClipboardModal.vue +35 -50
- package/src/components/misc/modal/MessageModal.vue +71 -48
- package/src/components/misc/modal/NewsletterModal.vue +260 -231
- package/src/components/misc/modal/QrCodeModal.vue +42 -60
- package/src/components/misc/modal/ShareModalPlayer.vue +136 -70
- package/src/components/misc/player/Player.vue +146 -0
- package/src/components/misc/player/PlayerCompact.vue +154 -0
- package/src/components/misc/player/PlayerLarge.vue +166 -0
- package/src/components/misc/player/PlayerProgressBar.vue +112 -0
- package/src/components/misc/player/PlayerTimeline.vue +61 -0
- package/src/components/mixins/functions.ts +11 -43
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/mixins/init.ts +8 -6
- package/src/components/mixins/orgaComputed.ts +15 -0
- package/src/components/mixins/organisationFilter.ts +35 -18
- package/src/components/mixins/player/playerComment.ts +98 -0
- package/src/components/mixins/player/playerDisplay.ts +113 -0
- package/src/components/mixins/player/playerLive.ts +111 -0
- package/src/components/mixins/player/playerLogic.ts +225 -0
- package/src/components/mixins/tagOfMixins.ts +19 -0
- package/src/components/pages/Category.vue +21 -26
- package/src/components/pages/Emission.vue +136 -162
- package/src/components/pages/Emissions.vue +60 -93
- package/src/components/pages/Error403Page.vue +60 -0
- package/src/components/pages/Home.vue +32 -39
- package/src/components/pages/Lives.vue +40 -46
- package/src/components/pages/PageNotFound.vue +55 -0
- package/src/components/pages/Participant.vue +110 -113
- package/src/components/pages/Participants.vue +21 -45
- package/src/components/pages/Playlist.vue +84 -75
- package/src/components/pages/Playlists.vue +29 -47
- package/src/components/pages/Podcast.vue +203 -434
- package/src/components/pages/Podcasts.vue +75 -134
- package/src/components/pages/Rubrique.vue +21 -29
- package/src/components/pages/Search.vue +33 -79
- package/src/helper/dom.ts +1 -1
- package/src/helper/duration.ts +1 -1
- package/src/helper/useEventListener.ts +18 -0
- package/src/i18n.ts +36 -0
- package/src/locale/de.ts +309 -0
- package/src/locale/educationen.ts +1 -1
- package/src/locale/educationfr.ts +1 -1
- package/src/locale/en.ts +45 -28
- package/src/locale/es.ts +309 -0
- package/src/locale/fr.ts +25 -8
- package/src/locale/it.ts +307 -0
- package/src/locale/messages.ts +9 -2
- package/src/locale/sl.ts +309 -0
- package/src/main.ts +59 -85
- package/src/router/router.ts +60 -39
- package/src/sass/_variables.scss +10 -8
- package/src/shims-tsx.d.ts +2 -0
- package/src/shims-vue-recaptcha-v3.d.ts +9 -0
- package/src/shims-vue.d.ts +5 -4
- package/src/store/AppStore.ts +8 -9
- package/src/store/class/adserver/adserverConfig.ts +9 -0
- package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
- package/src/store/class/adserver/adserverTiming.ts +10 -0
- package/src/store/class/cartouchier/cartouche.ts +15 -0
- package/src/store/class/cartouchier/cartouchier.ts +9 -0
- package/src/store/class/conference/conference.ts +35 -0
- package/src/store/class/conference/conferenceMessage.ts +10 -0
- package/src/store/class/conference/conferenceParticipant.ts +18 -0
- package/src/store/class/conference/pad.ts +15 -0
- package/src/store/class/conference/studioCall.ts +7 -0
- package/src/store/class/contract/contract.ts +7 -0
- package/src/store/class/contract/contractOrganisation.ts +7 -0
- package/src/store/class/ftp/ftpEmission.ts +41 -0
- package/src/store/class/ftp/ftpParam.ts +12 -0
- package/src/store/class/ftp/testFtpEmission.ts +5 -0
- package/src/store/class/general/audioView.ts +21 -0
- package/src/store/class/general/category.ts +10 -0
- package/src/store/class/general/comment.ts +16 -0
- package/src/store/class/general/customPlayer.ts +9 -0
- package/src/store/class/general/emission.ts +23 -0
- package/src/store/class/general/fetchParam.ts +3 -0
- package/src/store/class/general/initState.ts +25 -0
- package/src/store/class/general/interfacePageable.ts +16 -0
- package/src/store/class/general/ituneCategory.ts +5 -0
- package/src/store/class/general/media.ts +14 -0
- package/src/store/class/general/organisation.ts +20 -0
- package/src/store/class/general/pageable.ts +13 -0
- package/src/store/class/general/participant.ts +12 -0
- package/src/store/class/{player.ts → general/player.ts} +5 -3
- package/src/store/class/general/playlist.ts +13 -0
- package/src/store/class/general/podcast.ts +43 -0
- package/src/store/class/general/sortPageable.ts +5 -0
- package/src/store/class/general/soundcastCategory.ts +8 -0
- package/src/store/class/ouestFrance/ofTag.ts +36 -0
- package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
- package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
- package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
- package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
- package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
- package/src/store/class/rss/aggregator.ts +28 -0
- package/src/store/class/rss/rssEmission.ts +14 -0
- package/src/store/class/rss/rssInfo.ts +8 -0
- package/src/store/class/rubrique/rubriquage.ts +10 -0
- package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
- package/src/store/class/rubrique/rubrique.ts +9 -0
- package/src/store/class/stat/statArrayIncome.ts +6 -0
- package/src/store/class/stat/statArrayObject.ts +34 -0
- package/src/store/class/stat/statGraph.ts +7 -0
- package/src/store/class/user/person.ts +15 -0
- package/src/store/class/user/profile.ts +12 -0
- package/src/store/class/user/userKeycloak.ts +24 -0
- package/src/store/paramStore.ts +221 -241
- package/src/store/typeAppStore.ts +45 -28
- package/src/vuex-shim.d.ts +8 -0
- package/tsconfig.json +2 -1
- package/vue.config.js +3 -1
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -840
- package/public/css/fonts/saooti-ui.ttf +0 -0
- package/public/css/fonts/saooti-ui.woff +0 -0
- package/public/css/fonts/stitcher-logo.svg +0 -83
- package/public/img/article.png +0 -0
- package/src/api/comments.ts +0 -7
- package/src/api/emissions.ts +0 -7
- package/src/api/podcasts.ts +0 -7
- package/src/api/profile.ts +0 -8
- package/src/api/studio.ts +0 -8
- package/src/assets/bootstrap_scss/_alert.scss +0 -51
- package/src/assets/bootstrap_scss/_badge.scss +0 -54
- package/src/assets/bootstrap_scss/_breadcrumb.scss +0 -42
- package/src/assets/bootstrap_scss/_button-group.scss +0 -164
- package/src/assets/bootstrap_scss/_buttons.scss +0 -298
- package/src/assets/bootstrap_scss/_card.scss +0 -278
- package/src/assets/bootstrap_scss/_carousel.scss +0 -197
- package/src/assets/bootstrap_scss/_close.scss +0 -41
- package/src/assets/bootstrap_scss/_code.scss +0 -48
- package/src/assets/bootstrap_scss/_custom-forms.scss +0 -522
- package/src/assets/bootstrap_scss/_dropdown.scss +0 -201
- package/src/assets/bootstrap_scss/_forms.scss +0 -352
- package/src/assets/bootstrap_scss/_functions.scss +0 -134
- package/src/assets/bootstrap_scss/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/_images.scss +0 -42
- package/src/assets/bootstrap_scss/_input-group.scss +0 -191
- package/src/assets/bootstrap_scss/_jumbotron.scss +0 -17
- package/src/assets/bootstrap_scss/_list-group.scss +0 -158
- package/src/assets/bootstrap_scss/_media.scss +0 -8
- package/src/assets/bootstrap_scss/_mixins.scss +0 -47
- package/src/assets/bootstrap_scss/_modal.scss +0 -243
- package/src/assets/bootstrap_scss/_nav.scss +0 -120
- package/src/assets/bootstrap_scss/_navbar.scss +0 -324
- package/src/assets/bootstrap_scss/_pagination.scss +0 -74
- package/src/assets/bootstrap_scss/_popover.scss +0 -170
- package/src/assets/bootstrap_scss/_print.scss +0 -141
- package/src/assets/bootstrap_scss/_progress.scss +0 -46
- package/src/assets/bootstrap_scss/_reboot.scss +0 -482
- package/src/assets/bootstrap_scss/_root.scss +0 -20
- package/src/assets/bootstrap_scss/_spinners.scss +0 -55
- package/src/assets/bootstrap_scss/_tables.scss +0 -185
- package/src/assets/bootstrap_scss/_toasts.scss +0 -44
- package/src/assets/bootstrap_scss/_tooltip.scss +0 -115
- package/src/assets/bootstrap_scss/_transitions.scss +0 -20
- package/src/assets/bootstrap_scss/_type.scss +0 -125
- package/src/assets/bootstrap_scss/_utilities.scss +0 -17
- package/src/assets/bootstrap_scss/_variables.scss +0 -1145
- package/src/assets/bootstrap_scss/bootstrap-grid.scss +0 -29
- package/src/assets/bootstrap_scss/bootstrap-reboot.scss +0 -12
- package/src/assets/bootstrap_scss/bootstrap.scss +0 -44
- package/src/assets/bootstrap_scss/mixins/_alert.scss +0 -13
- package/src/assets/bootstrap_scss/mixins/_background-variant.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_badge.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_border-radius.scss +0 -63
- package/src/assets/bootstrap_scss/mixins/_box-shadow.scss +0 -20
- package/src/assets/bootstrap_scss/mixins/_breakpoints.scss +0 -123
- package/src/assets/bootstrap_scss/mixins/_buttons.scss +0 -110
- package/src/assets/bootstrap_scss/mixins/_caret.scss +0 -62
- package/src/assets/bootstrap_scss/mixins/_clearfix.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_deprecate.scss +0 -10
- package/src/assets/bootstrap_scss/mixins/_float.scss +0 -14
- package/src/assets/bootstrap_scss/mixins/_forms.scss +0 -177
- package/src/assets/bootstrap_scss/mixins/_gradients.scss +0 -45
- package/src/assets/bootstrap_scss/mixins/_grid-framework.scss +0 -71
- package/src/assets/bootstrap_scss/mixins/_grid.scss +0 -69
- package/src/assets/bootstrap_scss/mixins/_hover.scss +0 -37
- package/src/assets/bootstrap_scss/mixins/_image.scss +0 -36
- package/src/assets/bootstrap_scss/mixins/_list-group.scss +0 -21
- package/src/assets/bootstrap_scss/mixins/_lists.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_nav-divider.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_pagination.scss +0 -22
- package/src/assets/bootstrap_scss/mixins/_reset-text.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_resize.scss +0 -6
- package/src/assets/bootstrap_scss/mixins/_screen-reader.scss +0 -34
- package/src/assets/bootstrap_scss/mixins/_size.scss +0 -7
- package/src/assets/bootstrap_scss/mixins/_table-row.scss +0 -39
- package/src/assets/bootstrap_scss/mixins/_text-emphasis.scss +0 -17
- package/src/assets/bootstrap_scss/mixins/_text-hide.scss +0 -11
- package/src/assets/bootstrap_scss/mixins/_text-truncate.scss +0 -8
- package/src/assets/bootstrap_scss/mixins/_transition.scss +0 -16
- package/src/assets/bootstrap_scss/mixins/_visibility.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_align.scss +0 -8
- package/src/assets/bootstrap_scss/utilities/_background.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_borders.scss +0 -75
- package/src/assets/bootstrap_scss/utilities/_clearfix.scss +0 -3
- package/src/assets/bootstrap_scss/utilities/_display.scss +0 -26
- package/src/assets/bootstrap_scss/utilities/_embed.scss +0 -39
- package/src/assets/bootstrap_scss/utilities/_flex.scss +0 -51
- package/src/assets/bootstrap_scss/utilities/_float.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_overflow.scss +0 -5
- package/src/assets/bootstrap_scss/utilities/_position.scss +0 -32
- package/src/assets/bootstrap_scss/utilities/_screenreaders.scss +0 -11
- package/src/assets/bootstrap_scss/utilities/_shadows.scss +0 -6
- package/src/assets/bootstrap_scss/utilities/_sizing.scss +0 -20
- package/src/assets/bootstrap_scss/utilities/_spacing.scss +0 -73
- package/src/assets/bootstrap_scss/utilities/_stretched-link.scss +0 -19
- package/src/assets/bootstrap_scss/utilities/_text.scss +0 -72
- package/src/assets/bootstrap_scss/utilities/_visibility.scss +0 -13
- package/src/assets/bootstrap_scss/vendor/_rfs.scss +0 -204
- package/src/components/misc/Player.vue +0 -772
- package/src/store/class/category.ts +0 -8
- package/src/store/class/comment.ts +0 -17
- package/src/store/class/conference.ts +0 -27
- package/src/store/class/customPlayer.ts +0 -8
- package/src/store/class/emission.ts +0 -20
- package/src/store/class/media.ts +0 -13
- package/src/store/class/organisation.ts +0 -19
- package/src/store/class/participant.ts +0 -12
- package/src/store/class/person.ts +0 -13
- package/src/store/class/playlist.ts +0 -15
- package/src/store/class/podcast.ts +0 -37
- package/src/store/class/rubriquage.ts +0 -9
- package/src/store/class/rubriquageFilter.ts +0 -5
- 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
|
-
|
|
4
|
-
|
|
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';
|
package/src/assets/share.scss
CHANGED
|
@@ -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
|
-
.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
75
|
-
|
|
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
|
-
|
|
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
|
-
.
|
|
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
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
259
|
-
|
|
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
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
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
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
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
|
-
|
|
306
|
-
|
|
222
|
+
}
|
|
223
|
+
.share-btn{
|
|
224
|
+
.saooti-stitcher-logo, .saooti-amazon {
|
|
225
|
+
top: -0.5rem;
|
|
226
|
+
left: 0.8rem;
|
|
307
227
|
}
|
|
308
|
-
.
|
|
309
|
-
|
|
310
|
-
|
|
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
|
-
.
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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
|
-
.
|
|
2
|
-
transition
|
|
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
|
|
2
|
+
<div />
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
|
-
<style lang="scss"></style>
|
|
6
|
-
|
|
7
5
|
<script lang="ts">
|
|
8
|
-
import
|
|
9
|
-
export default
|
|
10
|
-
</script>
|
|
6
|
+
import { defineComponent } from 'vue'
|
|
7
|
+
export default defineComponent({})
|
|
8
|
+
</script>
|