@saooti/octopus-sdk 31.0.1 → 31.0.2
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 +12 -1
- package/index.ts +8 -2
- package/package.json +3 -3
- package/src/assets/general.scss +8 -0
- package/src/assets/share.scss +21 -0
- package/src/components/display/categories/CategoryFilter.vue +10 -8
- package/src/components/display/categories/CategoryList.vue +26 -24
- package/src/components/display/comments/CommentInput.vue +21 -19
- package/src/components/display/comments/CommentList.vue +2 -0
- package/src/components/display/comments/CommentPlayer.vue +2 -0
- package/src/components/display/emission/EmissionInlineList.vue +32 -29
- package/src/components/display/emission/EmissionList.vue +12 -8
- package/src/components/display/emission/EmissionPlayerItem.vue +16 -1
- package/src/components/display/filter/AdvancedSearch.vue +2 -0
- package/src/components/display/filter/ProductorSearch.vue +6 -1
- package/src/components/display/live/LiveHorizontalList.vue +1 -1
- package/src/components/display/live/LiveItem.vue +2 -1
- package/src/components/display/live/LiveList.vue +51 -41
- package/src/components/display/organisation/OrganisationChooser.vue +1 -1
- package/src/components/display/organisation/OrganisationChooserLight.vue +28 -19
- package/src/components/display/participant/ParticipantItem.vue +2 -0
- package/src/components/display/participant/ParticipantList.vue +30 -19
- package/src/components/display/playlist/PlaylistList.vue +12 -3
- package/src/components/display/playlist/PodcastList.vue +26 -16
- package/src/components/display/playlist/PodcastPlaylistInlineList.vue +204 -0
- package/src/components/display/podcasts/AnimatorsItem.vue +2 -0
- package/src/components/display/podcasts/ParticipantDescription.vue +1 -5
- package/src/components/display/podcasts/PodcastImage.vue +2 -1
- package/src/components/display/podcasts/PodcastInlineList.vue +40 -28
- package/src/components/display/podcasts/PodcastItem.vue +12 -0
- package/src/components/display/podcasts/PodcastList.vue +11 -3
- package/src/components/display/podcasts/PodcastPlayBar.vue +2 -0
- package/src/components/display/podcasts/TagList.vue +2 -0
- package/src/components/display/rubriques/RubriqueList.vue +3 -1
- package/src/components/display/sharing/PlayerParameters.vue +2 -0
- package/src/components/display/sharing/QrCode.vue +7 -0
- package/src/components/display/sharing/ShareDistribution.vue +2 -0
- package/src/components/display/sharing/SharePlayer.vue +2 -0
- package/src/components/form/ClassicSearch.vue +2 -0
- package/src/components/misc/ErrorMessage.vue +2 -0
- package/src/components/misc/Footer.vue +2 -0
- package/src/components/misc/LeftMenu.vue +2 -0
- package/src/components/misc/Player.vue +14 -0
- package/src/components/misc/PlayerButtons.vue +2 -14
- package/src/components/misc/PlayerClockAndTimeline.vue +2 -0
- package/src/components/misc/PlayerProgressBar.vue +2 -0
- package/src/components/misc/Popover.vue +5 -0
- package/src/components/misc/Snackbar.vue +2 -0
- package/src/components/misc/TopBar.vue +2 -0
- package/src/components/misc/modal/NewsletterModal.vue +11 -3
- package/src/components/misc/modal/ShareModalPlayer.vue +2 -0
- package/src/components/mixins/handle403.ts +17 -0
- package/src/components/pages/Emission.vue +17 -4
- package/src/components/pages/Error403Page.vue +24 -0
- package/src/components/pages/Participant.vue +19 -4
- package/src/components/pages/Playlist.vue +17 -3
- package/src/components/pages/Podcast.vue +28 -12
- package/src/components/pages/Podcasts.vue +4 -0
- package/src/locale/en.ts +1 -0
- package/src/locale/fr.ts +1 -0
- package/src/locale/it.ts +298 -0
- package/src/locale/messages.ts +2 -0
- package/src/main.ts +1 -1
- package/src/router/router.ts +6 -0
- package/src/store/class/general/organisation.ts +1 -0
- package/src/store/paramStore.ts +5 -2
package/src/router/router.ts
CHANGED
|
@@ -17,6 +17,7 @@ const RubriquePage = () => import('@/components/pages/Rubrique.vue');
|
|
|
17
17
|
const LivesPage = () => import('@/components/pages/Lives.vue');
|
|
18
18
|
const PlaylistPage = () => import('@/components/pages/Playlist.vue');
|
|
19
19
|
const PlaylistsPage = () => import('@/components/pages/Playlists.vue');
|
|
20
|
+
const error403Page = () => import('@/components/pages/Error403Page.vue');
|
|
20
21
|
|
|
21
22
|
const routes: Array<RouteRecordRaw> = [
|
|
22
23
|
/*--------------------------------------------------------------------------
|
|
@@ -27,6 +28,11 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
27
28
|
name: '',
|
|
28
29
|
component: Home,
|
|
29
30
|
},
|
|
31
|
+
{
|
|
32
|
+
path: '/main/pub/error',
|
|
33
|
+
name: 'error',
|
|
34
|
+
component: error403Page,
|
|
35
|
+
},
|
|
30
36
|
{
|
|
31
37
|
path: '/main/pub/home:productor?:iabId?:rubriquesId?',
|
|
32
38
|
name: 'home',
|
package/src/store/paramStore.ts
CHANGED
|
@@ -18,7 +18,8 @@ const state:paramStore = {
|
|
|
18
18
|
allCategories: [],
|
|
19
19
|
isLiveTab: false,
|
|
20
20
|
isCaptchaTest: true,
|
|
21
|
-
podcastItem:13
|
|
21
|
+
podcastItem:13,
|
|
22
|
+
isInlineAnimation:true,
|
|
22
23
|
},
|
|
23
24
|
podcastPage: {
|
|
24
25
|
EditBox: false,
|
|
@@ -108,7 +109,9 @@ export interface GeneralParameters{
|
|
|
108
109
|
allCategories?: Array<Category>,
|
|
109
110
|
isLiveTab?: boolean,
|
|
110
111
|
isCaptchaTest?: boolean,
|
|
111
|
-
podcastItem?: number
|
|
112
|
+
podcastItem?: number,
|
|
113
|
+
podcastmakerColor?: string,
|
|
114
|
+
isInlineAnimation?: boolean
|
|
112
115
|
}
|
|
113
116
|
export interface PodcastPage{
|
|
114
117
|
EditBox?: boolean,
|