@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
|
@@ -4,42 +4,40 @@
|
|
|
4
4
|
<PodcastInlineList
|
|
5
5
|
v-for="c in categories"
|
|
6
6
|
:key="c.id"
|
|
7
|
-
:
|
|
7
|
+
:iab-id="c.id"
|
|
8
8
|
:title="c.name"
|
|
9
|
-
:
|
|
9
|
+
:button-text="$t('All podcast button', { name: c.name })"
|
|
10
10
|
/>
|
|
11
11
|
</template>
|
|
12
|
-
|
|
12
|
+
<template v-else>
|
|
13
13
|
<PodcastInlineList
|
|
14
14
|
v-for="r in rubriqueDisplay"
|
|
15
15
|
:key="r.rubriqueId"
|
|
16
|
-
:
|
|
16
|
+
:rubrique-id="rubriqueId.concat(r.rubriqueId)"
|
|
17
17
|
:title="r.name"
|
|
18
|
-
:
|
|
18
|
+
:button-text="$t('All podcast button', { name: r.name })"
|
|
19
19
|
/>
|
|
20
20
|
<PodcastInlineList
|
|
21
21
|
v-if="rubriqueDisplay && rubriqueDisplay.length"
|
|
22
|
-
:
|
|
23
|
-
:
|
|
22
|
+
:no-rubriquage-id="[rubriqueDisplay[0].rubriquageId]"
|
|
23
|
+
:rubrique-id="rubriqueId"
|
|
24
24
|
:title="$t('Without rubric')"
|
|
25
|
-
:
|
|
25
|
+
:button-text="$t('All podcast button', { name: $t('Without rubric') })"
|
|
26
26
|
/>
|
|
27
27
|
</template>
|
|
28
28
|
</div>
|
|
29
29
|
</template>
|
|
30
|
-
<style lang="scss"></style>
|
|
31
30
|
|
|
32
31
|
<script lang="ts">
|
|
33
32
|
import PodcastInlineList from '../display/podcasts/PodcastInlineList.vue';
|
|
34
33
|
import { state } from '../../store/paramStore';
|
|
35
|
-
|
|
36
|
-
import
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
export default
|
|
41
|
-
name: '
|
|
42
|
-
|
|
34
|
+
import { RubriquageFilter } from '@/store/class/rubrique/rubriquageFilter';
|
|
35
|
+
import { Rubriquage } from '@/store/class/rubrique/rubriquage';
|
|
36
|
+
import { Rubrique } from '@/store/class/rubrique/rubrique';
|
|
37
|
+
import { defineComponent } from 'vue'
|
|
38
|
+
import { Category } from '@/store/class/general/category';
|
|
39
|
+
export default defineComponent({
|
|
40
|
+
name: 'Home',
|
|
43
41
|
components: {
|
|
44
42
|
PodcastInlineList,
|
|
45
43
|
},
|
|
@@ -48,37 +46,37 @@ export default Vue.extend({
|
|
|
48
46
|
rubriqueId: [] as Array<number>,
|
|
49
47
|
};
|
|
50
48
|
},
|
|
51
|
-
created(){
|
|
52
|
-
if(this.rubriqueFilter.length){
|
|
53
|
-
this.updateRubriquageFilter();
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
49
|
computed: {
|
|
57
50
|
rubriqueDisplay(): Array<Rubrique>{
|
|
58
51
|
return this.$store.state.filter.rubriqueDisplay.filter((rubrique: Rubrique) => 0 !== rubrique.podcastCount );
|
|
59
52
|
},
|
|
60
53
|
rubriquageFilter(): Array<Rubriquage>{
|
|
61
|
-
|
|
62
|
-
return this.$store.state.filter.rubriquageArray;
|
|
63
|
-
}
|
|
64
|
-
return [];
|
|
54
|
+
return this.$store.state.filter.organisationId ? this.$store.state.filter.rubriquageArray :[];
|
|
65
55
|
},
|
|
66
56
|
rubriqueFilter(): Array<RubriquageFilter>{
|
|
67
57
|
return this.$store.state.filter.rubriqueFilter;
|
|
68
58
|
},
|
|
69
|
-
|
|
70
|
-
return state.generalParameters.podcastmaker;
|
|
71
|
-
},
|
|
72
|
-
categories(): any {
|
|
59
|
+
categories(): Array<Category> {
|
|
73
60
|
if(this.$store.state.filter.iab){
|
|
74
61
|
return [this.$store.state.filter.iab];
|
|
75
62
|
}
|
|
76
|
-
return this.$store.state.categories.filter((c:
|
|
77
|
-
if (
|
|
63
|
+
return this.$store.state.categories.filter((c: Category) => {
|
|
64
|
+
if (state.generalParameters.podcastmaker) return c.podcastOrganisationCount;
|
|
78
65
|
return c.podcastCount;
|
|
79
66
|
});
|
|
80
67
|
},
|
|
81
68
|
},
|
|
69
|
+
watch:{
|
|
70
|
+
rubriqueFilter:{
|
|
71
|
+
deep: true,
|
|
72
|
+
immediate: true,
|
|
73
|
+
handler(){
|
|
74
|
+
if(this.rubriqueFilter.length){
|
|
75
|
+
this.updateRubriquageFilter();
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
82
80
|
methods:{
|
|
83
81
|
updateRubriquageFilter(){
|
|
84
82
|
const length = this.rubriqueFilter.length;
|
|
@@ -90,11 +88,6 @@ export default Vue.extend({
|
|
|
90
88
|
}
|
|
91
89
|
this.rubriqueId = rubriqueId;
|
|
92
90
|
},
|
|
93
|
-
},
|
|
94
|
-
watch:{
|
|
95
|
-
rubriqueFilter(){
|
|
96
|
-
this.updateRubriquageFilter();
|
|
97
|
-
}
|
|
98
91
|
}
|
|
99
|
-
})
|
|
100
|
-
</script>
|
|
92
|
+
})
|
|
93
|
+
</script>
|
|
@@ -3,92 +3,86 @@
|
|
|
3
3
|
<div class="d-flex flex-column align-items-center mb-3">
|
|
4
4
|
<h1>{{ $t('In live') }}</h1>
|
|
5
5
|
<template v-if="!isPodcastmaker">
|
|
6
|
-
<router-link
|
|
7
|
-
|
|
6
|
+
<router-link
|
|
7
|
+
v-if="liveRight && filterOrga"
|
|
8
|
+
to="/main/priv/edit/live"
|
|
9
|
+
>
|
|
10
|
+
<button class="btn btn-primary">
|
|
11
|
+
{{ $t('Launch a new live') }}
|
|
12
|
+
</button>
|
|
8
13
|
</router-link>
|
|
9
14
|
<template v-else>
|
|
10
|
-
<div class="align-self-start
|
|
15
|
+
<div class="align-self-start fw-bold mb-2">
|
|
11
16
|
{{ $t('Please chose a productor') }}
|
|
12
17
|
</div>
|
|
13
18
|
<OrganisationChooser
|
|
14
19
|
:defaultanswer="$t('Please chose a productor')"
|
|
15
|
-
:all="true"
|
|
16
20
|
@selected="onOrganisationSelected"
|
|
17
21
|
/>
|
|
18
22
|
</template>
|
|
19
23
|
</template>
|
|
20
24
|
</div>
|
|
21
25
|
<LiveList
|
|
22
|
-
@initConferenceIds="initConferenceIds"
|
|
23
|
-
:conferenceWatched="conferenceWatched"
|
|
24
|
-
:organisationId="organisationId"
|
|
25
26
|
v-if="filterOrga || organisationId"
|
|
27
|
+
:conference-watched="conferenceWatched"
|
|
28
|
+
:organisation-id="organisationId"
|
|
29
|
+
@initConferenceIds="initConferenceIds"
|
|
26
30
|
/>
|
|
27
31
|
</div>
|
|
28
32
|
</template>
|
|
29
|
-
|
|
33
|
+
|
|
30
34
|
<script lang="ts">
|
|
31
|
-
// @ is an alias to /src
|
|
32
35
|
import { state } from '../../store/paramStore';
|
|
33
|
-
|
|
34
|
-
import
|
|
35
|
-
import {
|
|
36
|
-
|
|
36
|
+
import { Organisation } from '@/store/class/general/organisation';
|
|
37
|
+
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
38
|
+
import { Conference } from '@/store/class/conference/conference';
|
|
39
|
+
const LiveList = defineAsyncComponent(() => import('../display/live/LiveList.vue'));
|
|
40
|
+
const OrganisationChooser = defineAsyncComponent(() => import('../display/organisation/OrganisationChooser.vue'));
|
|
41
|
+
export default defineComponent({
|
|
37
42
|
components: {
|
|
38
|
-
LiveList
|
|
39
|
-
OrganisationChooser
|
|
43
|
+
LiveList,
|
|
44
|
+
OrganisationChooser,
|
|
40
45
|
},
|
|
41
46
|
props: {
|
|
42
|
-
conferenceWatched: { default: () =>
|
|
43
|
-
organisationId: { default: undefined
|
|
44
|
-
productor:{default:undefined
|
|
47
|
+
conferenceWatched: { default: () => [], type: Array as ()=>Array<{conferenceId:number,interval:ReturnType<typeof setTimeout>|undefined, status:string}>},
|
|
48
|
+
organisationId: { default: undefined, type: String },
|
|
49
|
+
productor:{default:undefined, type: String}
|
|
45
50
|
},
|
|
51
|
+
emits: ['update:organisationId', 'initConferenceIds'],
|
|
46
52
|
data() {
|
|
47
53
|
return {
|
|
48
54
|
live: true as boolean,
|
|
49
55
|
};
|
|
50
56
|
},
|
|
51
|
-
created() {
|
|
52
|
-
if (this.productor) {
|
|
53
|
-
this.$emit('update:organisationId',this.productor);
|
|
54
|
-
} else if (this.$store.state.filter.organisationId) {
|
|
55
|
-
this.$emit('update:organisationId',this.$store.state.filter.organisationId);
|
|
56
|
-
}
|
|
57
|
-
if (
|
|
58
|
-
this.$store.state.organisation &&
|
|
59
|
-
this.$store.state.organisation.attributes &&
|
|
60
|
-
!this.$store.state.organisation.attributes['live.active']
|
|
61
|
-
) {
|
|
62
|
-
this.live = false;
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
57
|
|
|
66
58
|
computed: {
|
|
67
59
|
liveRight(): boolean {
|
|
68
|
-
|
|
69
|
-
return false;
|
|
70
|
-
},
|
|
71
|
-
isRoleLive(): boolean {
|
|
72
|
-
return state.generalParameters.isRoleLive;
|
|
60
|
+
return (state.generalParameters.isRoleLive as boolean)&& this.live;
|
|
73
61
|
},
|
|
74
62
|
filterOrga(): string {
|
|
75
63
|
return this.$store.state.filter.organisationId;
|
|
76
64
|
},
|
|
77
65
|
isPodcastmaker(): boolean {
|
|
78
|
-
return state.generalParameters.podcastmaker;
|
|
66
|
+
return (state.generalParameters.podcastmaker as boolean);
|
|
79
67
|
},
|
|
80
68
|
},
|
|
69
|
+
created() {
|
|
70
|
+
if (this.productor) {
|
|
71
|
+
this.$emit('update:organisationId',this.productor);
|
|
72
|
+
} else if (this.$store.state.filter.organisationId) {
|
|
73
|
+
this.$emit('update:organisationId',this.$store.state.filter.organisationId);
|
|
74
|
+
}
|
|
75
|
+
if (!this.$store.state.organisation?.attributes?.['live.active']) {
|
|
76
|
+
this.live = false;
|
|
77
|
+
}
|
|
78
|
+
},
|
|
81
79
|
methods: {
|
|
82
|
-
initConferenceIds(listIds:
|
|
80
|
+
initConferenceIds(listIds: Array<Conference>): void {
|
|
83
81
|
this.$emit('initConferenceIds', listIds);
|
|
84
82
|
},
|
|
85
83
|
onOrganisationSelected(organisation: Organisation|undefined): void {
|
|
86
|
-
|
|
87
|
-
this.$emit('update:organisationId', organisation.id);
|
|
88
|
-
} else {
|
|
89
|
-
this.$emit('update:organisationId', undefined);
|
|
90
|
-
}
|
|
84
|
+
this.$emit('update:organisationId', organisation?.id);
|
|
91
85
|
},
|
|
92
86
|
},
|
|
93
|
-
})
|
|
94
|
-
</script>
|
|
87
|
+
})
|
|
88
|
+
</script>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="page-box page-box-absolute page-not-found"
|
|
4
|
+
:style="backgroundStyle"
|
|
5
|
+
>
|
|
6
|
+
<div class="position-absolute module-box">
|
|
7
|
+
<h1>{{ $t('Oops') }}</h1>
|
|
8
|
+
<h2>{{ $t('The page you are looking for cannot be found') }}</h2>
|
|
9
|
+
<router-link
|
|
10
|
+
class="btn btn-primary"
|
|
11
|
+
:to="{
|
|
12
|
+
name: 'home',
|
|
13
|
+
query: { productor: $store.state.filter.organisationId,
|
|
14
|
+
iabId:$store.state.filter.iab?.id,
|
|
15
|
+
rubriquesId: rubriqueQueryParam},
|
|
16
|
+
}"
|
|
17
|
+
>
|
|
18
|
+
{{ $t('Back to home') }}
|
|
19
|
+
</router-link>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<script lang="ts">
|
|
25
|
+
import { RubriquageFilter } from '@/store/class/rubrique/rubriquageFilter';
|
|
26
|
+
import { defineComponent } from 'vue';
|
|
27
|
+
export default defineComponent({
|
|
28
|
+
name: 'PageNotFound',
|
|
29
|
+
computed:{
|
|
30
|
+
rubriqueQueryParam(): string|undefined{
|
|
31
|
+
if(this.$store.state.filter?.rubriqueFilter?.length){
|
|
32
|
+
return this.$store.state.filter.rubriqueFilter.map((value: RubriquageFilter) => value.rubriquageId+':'+value.rubriqueId).join();
|
|
33
|
+
}
|
|
34
|
+
return undefined;
|
|
35
|
+
},
|
|
36
|
+
backgroundStyle():string{
|
|
37
|
+
return "background-image: url('/img/404.svg');";
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
mounted() {
|
|
41
|
+
document.title = this.$store.state.general.metaTitle;
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
</script>
|
|
45
|
+
<style lang="scss">
|
|
46
|
+
.octopus-app .page-not-found{
|
|
47
|
+
background-size: cover;
|
|
48
|
+
background-position: center;
|
|
49
|
+
background-color: #ebebeb;
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
align-items: center;
|
|
53
|
+
padding: 0;
|
|
54
|
+
}
|
|
55
|
+
</style>
|
|
@@ -1,98 +1,92 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<div
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
<div class="page-box">
|
|
3
|
+
<div
|
|
4
|
+
v-if="loaded && !error"
|
|
5
|
+
>
|
|
6
|
+
<h1 v-if="!pageParameters.lightStyle">
|
|
7
|
+
{{ titleDisplay }}
|
|
8
|
+
</h1>
|
|
6
9
|
<div
|
|
7
|
-
class="d-flex
|
|
10
|
+
class="d-flex flex-column align-items-center mb-3"
|
|
8
11
|
>
|
|
9
|
-
<
|
|
12
|
+
<img
|
|
13
|
+
v-lazy="participant.imageUrl"
|
|
14
|
+
:title="$t('Animator image')"
|
|
15
|
+
:alt="$t('Animator image')"
|
|
10
16
|
class="img-box-circle mb-3"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
|
|
17
|
+
>
|
|
18
|
+
<h2 class="text-capitalize">
|
|
19
|
+
{{ name }}
|
|
20
|
+
</h2>
|
|
21
|
+
<!-- eslint-disable vue/no-v-html -->
|
|
16
22
|
<div
|
|
17
|
-
class="
|
|
23
|
+
class="participant-desc html-wysiwyg-content"
|
|
18
24
|
v-html="urlify(description)"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class="btn btn-bigRound"
|
|
23
|
-
:title="$t('Subscribe to this participant')"
|
|
24
|
-
:aria-label="$t('Subscribe to this participant')"
|
|
25
|
-
:href="rssUrl"
|
|
26
|
-
rel="noopener"
|
|
27
|
-
target="_blank"
|
|
28
|
-
>
|
|
29
|
-
<div class="saooti-rss-bounty"></div>
|
|
30
|
-
</a>
|
|
31
|
-
</div>
|
|
32
|
-
<div class="d-flex">
|
|
25
|
+
/>
|
|
26
|
+
<!-- eslint-enable -->
|
|
27
|
+
<div class="d-flex mt-3">
|
|
33
28
|
<EditBox
|
|
29
|
+
v-if="editRight && pageParameters.isEditBox"
|
|
34
30
|
:participant="participant"
|
|
35
|
-
v-if="editRight && isEditBox"
|
|
36
|
-
@participantUpdate="updateParticipant"
|
|
37
31
|
class="flex-grow-1"
|
|
38
|
-
|
|
32
|
+
@participantUpdate="updateParticipant"
|
|
33
|
+
/>
|
|
39
34
|
<ShareButtons
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
35
|
+
v-if="pageParameters.isShareButtons"
|
|
36
|
+
:participant-id="participantId"
|
|
37
|
+
:organisation-id="participant.orga.id"
|
|
38
|
+
/>
|
|
43
39
|
</div>
|
|
44
40
|
</div>
|
|
45
41
|
<PodcastFilterList
|
|
46
|
-
|
|
42
|
+
v-if="!pageParameters.lightStyle"
|
|
43
|
+
:participant-id="participantId"
|
|
47
44
|
:name="name"
|
|
48
|
-
:
|
|
45
|
+
:category-filter="true"
|
|
49
46
|
:reload="reload"
|
|
50
|
-
v-if="!lightStyle"
|
|
51
47
|
/>
|
|
52
48
|
<PodcastList
|
|
49
|
+
v-else
|
|
53
50
|
:first="0"
|
|
54
51
|
:size="15"
|
|
55
|
-
:
|
|
52
|
+
:participant-id="participantId"
|
|
56
53
|
:reload="reload"
|
|
57
|
-
v-else
|
|
58
54
|
/>
|
|
59
55
|
</div>
|
|
60
|
-
<
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
<div class="text-center" v-if="error">
|
|
65
|
-
<h3>{{ $t("Animator doesn't exist") }}</h3>
|
|
66
|
-
</div>
|
|
56
|
+
<ClassicLoading
|
|
57
|
+
:loading-text="!loaded?$t('Loading content ...'):undefined"
|
|
58
|
+
:error-text="error?$t(`Animator doesn't exist`):undefined"
|
|
59
|
+
/>
|
|
67
60
|
</div>
|
|
68
61
|
</template>
|
|
69
62
|
|
|
70
|
-
<style lang="scss">
|
|
71
|
-
@media (min-width: 950px) {
|
|
72
|
-
.participant-desc {
|
|
73
|
-
max-width: 50%;
|
|
74
|
-
line-height: 1.5em;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
</style>
|
|
78
|
-
|
|
79
63
|
<script lang="ts">
|
|
80
|
-
|
|
81
|
-
const octopusApi = require('@saooti/octopus-api');
|
|
64
|
+
import octopusApi from '@saooti/octopus-api';
|
|
82
65
|
import { state } from '../../store/paramStore';
|
|
83
66
|
import { displayMethods } from '../mixins/functions';
|
|
84
|
-
import {
|
|
85
|
-
|
|
86
|
-
|
|
67
|
+
import { orgaComputed } from '../mixins/orgaComputed';
|
|
68
|
+
import { handle403 } from '../mixins/handle403';
|
|
69
|
+
import { Participant } from '@/store/class/general/participant';
|
|
70
|
+
import ClassicLoading from '../form/ClassicLoading.vue';
|
|
71
|
+
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
72
|
+
import { AxiosError } from 'axios';
|
|
73
|
+
const ShareButtons = defineAsyncComponent(() => import('../display/sharing/ShareButtons.vue'));
|
|
74
|
+
const PodcastFilterList = defineAsyncComponent(() => import('../display/podcasts/PodcastFilterList.vue'));
|
|
75
|
+
const EditBox = defineAsyncComponent(() => import('@/components/display/edit/EditBox.vue'));
|
|
76
|
+
const PodcastList = defineAsyncComponent(() => import('../display/podcasts/PodcastList.vue'));
|
|
77
|
+
export default defineComponent({
|
|
87
78
|
components: {
|
|
88
|
-
ShareButtons
|
|
89
|
-
PodcastFilterList
|
|
90
|
-
EditBox
|
|
91
|
-
PodcastList
|
|
79
|
+
ShareButtons,
|
|
80
|
+
PodcastFilterList,
|
|
81
|
+
EditBox,
|
|
82
|
+
PodcastList,
|
|
83
|
+
ClassicLoading
|
|
92
84
|
},
|
|
85
|
+
mixins: [displayMethods, handle403, orgaComputed],
|
|
93
86
|
props: {
|
|
94
|
-
participantId: { default: undefined
|
|
87
|
+
participantId: { default: undefined, type: Number},
|
|
95
88
|
},
|
|
89
|
+
emits: ['participantTitle'],
|
|
96
90
|
data() {
|
|
97
91
|
return {
|
|
98
92
|
loaded: false as boolean,
|
|
@@ -101,67 +95,64 @@ export default displayMethods.extend({
|
|
|
101
95
|
reload: false as boolean,
|
|
102
96
|
};
|
|
103
97
|
},
|
|
104
|
-
mounted() {
|
|
105
|
-
this.getParticipantDetails();
|
|
106
|
-
},
|
|
107
98
|
computed: {
|
|
108
|
-
|
|
109
|
-
return state.
|
|
110
|
-
},
|
|
111
|
-
authenticated(): boolean {
|
|
112
|
-
return state.generalParameters.authenticated;
|
|
113
|
-
},
|
|
114
|
-
isEditBox(): boolean {
|
|
115
|
-
return state.podcastPage.EditBox;
|
|
116
|
-
},
|
|
117
|
-
isShareButtons(): boolean {
|
|
118
|
-
return state.podcastPage.ShareButtons;
|
|
119
|
-
},
|
|
120
|
-
lightStyle(): boolean {
|
|
121
|
-
return state.intervenantPage.lightStyle;
|
|
99
|
+
titleDisplay(): string{
|
|
100
|
+
return state.intervenantPage.titlePage??this.$t('Animator');
|
|
122
101
|
},
|
|
123
|
-
|
|
124
|
-
return
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
102
|
+
pageParameters(){
|
|
103
|
+
return {
|
|
104
|
+
isEditBox : (state.podcastPage.EditBox as boolean),
|
|
105
|
+
isShareButtons: (state.podcastPage.ShareButtons as boolean),
|
|
106
|
+
lightStyle:(state.intervenantPage.lightStyle as boolean),
|
|
107
|
+
};
|
|
128
108
|
},
|
|
129
109
|
rssUrl(): string {
|
|
130
|
-
return
|
|
131
|
-
state.generalParameters.ApiUri + 'rss/participant/' + this.participantId
|
|
132
|
-
);
|
|
110
|
+
return `${state.generalParameters.ApiUri}rss/participant/${this.participantId}`;
|
|
133
111
|
},
|
|
134
112
|
description(): string {
|
|
135
|
-
return this.participant
|
|
113
|
+
return this.participant?.description ?? '';
|
|
136
114
|
},
|
|
137
115
|
name(): string {
|
|
138
|
-
return (
|
|
139
|
-
(this.participant!.firstName || '') +
|
|
140
|
-
' ' +
|
|
141
|
-
(this.participant!.lastName || '')
|
|
142
|
-
).trim();
|
|
116
|
+
return (`${this.participant?.firstName??''} ${this.participant?.lastName??''}`).trim();
|
|
143
117
|
},
|
|
144
118
|
editRight(): boolean {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
119
|
+
return (true===this.authenticated &&
|
|
120
|
+
this.myOrganisationId === this.participant?.orga?.id) ||
|
|
121
|
+
true===state.generalParameters.isAdmin
|
|
122
|
+
},
|
|
123
|
+
},
|
|
124
|
+
watch: {
|
|
125
|
+
participant: {
|
|
126
|
+
deep: true,
|
|
127
|
+
handler(){
|
|
128
|
+
this.reload = !this.reload;
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
participantId: {
|
|
132
|
+
immediate: true,
|
|
133
|
+
handler() {
|
|
134
|
+
this.getParticipantDetails();
|
|
135
|
+
},
|
|
152
136
|
},
|
|
153
137
|
},
|
|
154
138
|
methods: {
|
|
139
|
+
initError():void{
|
|
140
|
+
this.error = true;
|
|
141
|
+
this.loaded = true;
|
|
142
|
+
},
|
|
155
143
|
async getParticipantDetails(): Promise<void> {
|
|
156
144
|
this.loaded = false;
|
|
157
145
|
try {
|
|
158
|
-
const data = await octopusApi.
|
|
159
|
-
this.
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
this.
|
|
146
|
+
const data = await octopusApi.fetchData<Participant>(0, 'participant/'+this.participantId);
|
|
147
|
+
if("PUBLIC"!==data?.orga?.privacy && this.filterOrga!==data?.orga?.id){
|
|
148
|
+
this.initError();
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
this.updateParticipant(data);
|
|
164
152
|
this.loaded = true;
|
|
153
|
+
} catch(error) {
|
|
154
|
+
this.handle403((error as AxiosError));
|
|
155
|
+
this.initError();
|
|
165
156
|
}
|
|
166
157
|
},
|
|
167
158
|
updateParticipant(participant: Participant): void {
|
|
@@ -169,10 +160,16 @@ export default displayMethods.extend({
|
|
|
169
160
|
this.$emit('participantTitle', this.name);
|
|
170
161
|
},
|
|
171
162
|
},
|
|
172
|
-
|
|
173
|
-
participant(): void {
|
|
174
|
-
this.reload = !this.reload;
|
|
175
|
-
},
|
|
176
|
-
},
|
|
177
|
-
});
|
|
163
|
+
})
|
|
178
164
|
</script>
|
|
165
|
+
|
|
166
|
+
<style lang="scss">
|
|
167
|
+
.octopus-app{
|
|
168
|
+
@media (min-width: 950px) {
|
|
169
|
+
.participant-desc {
|
|
170
|
+
max-width: 50%;
|
|
171
|
+
line-height: 1.5em;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
</style>
|