@saooti/octopus-sdk 32.0.3 → 32.0.6
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 +4 -1
- package/package.json +23 -23
- 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 -1275
- package/src/assets/bootstrap-diff.scss +2 -1
- package/src/assets/form.scss +3 -1
- package/src/components/display/categories/CategoryChooser.vue +1 -1
- package/src/components/display/comments/CommentItem.vue +2 -2
- package/src/components/display/comments/CommentList.vue +0 -1
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/edit/EditCommentBox.vue +3 -3
- package/src/components/display/emission/EmissionChooser.vue +1 -2
- package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
- package/src/components/display/filter/AdvancedSearch.vue +1 -1
- package/src/components/display/filter/MonetizableFilter.vue +1 -1
- package/src/components/display/filter/RubriqueChoice.vue +1 -1
- package/src/components/display/organisation/OrganisationChooser.vue +1 -1
- package/src/components/display/podcasts/PodcastImage.vue +11 -6
- package/src/components/display/podcasts/PodcastItemInfo.vue +2 -2
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
- package/src/components/display/sharing/ShareButtonsIntern.vue +5 -5
- package/src/components/display/sharing/ShareDistribution.vue +6 -2
- package/src/components/form/ClassicSearch.vue +4 -4
- package/src/components/misc/HomeDropdown.vue +1 -1
- package/src/components/misc/TopBar.vue +4 -4
- package/src/components/misc/modal/MessageModal.vue +1 -1
- package/src/components/misc/modal/NewsletterModal.vue +2 -2
- package/src/components/misc/modal/ShareModalPlayer.vue +4 -4
- package/src/components/misc/player/PlayerCompact.vue +4 -4
- package/src/components/misc/player/PlayerLarge.vue +4 -4
- package/src/components/misc/player/PlayerTimeline.vue +1 -1
- package/src/components/pages/Playlist.vue +4 -1
- package/public/css/fonts/saooti-ui.eot +0 -0
- package/public/css/fonts/saooti-ui.svg +0 -843
- 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
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
transition: background .2s, border .2s, box-shadow .2s, color .2s;
|
|
15
15
|
text-decoration: none !important;
|
|
16
16
|
white-space: nowrap;
|
|
17
|
-
border-width:
|
|
17
|
+
border-width: 0;
|
|
18
18
|
@media (max-width: 960px) {
|
|
19
19
|
white-space: normal;
|
|
20
20
|
}
|
|
@@ -187,6 +187,7 @@
|
|
|
187
187
|
.breadcrumb{
|
|
188
188
|
padding: 1rem;
|
|
189
189
|
align-items: center;
|
|
190
|
+
background: #FAFAFA;
|
|
190
191
|
}
|
|
191
192
|
.bg-secondary{
|
|
192
193
|
background: #eee !important;
|
package/src/assets/form.scss
CHANGED
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
}
|
|
9
9
|
select {
|
|
10
10
|
background: white !important;
|
|
11
|
-
|
|
11
|
+
outline-color: transparent !important;
|
|
12
|
+
padding: 0.25rem 0.4rem;;
|
|
12
13
|
border: 0.1rem solid #dee2e6;
|
|
13
14
|
border-radius: 0.3rem;
|
|
15
|
+
height: 2rem;
|
|
14
16
|
}
|
|
15
17
|
.form-check-label {
|
|
16
18
|
cursor: pointer;
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
</span>
|
|
84
84
|
<span
|
|
85
85
|
:class="collapseVisible? 'arrow-transform': ''"
|
|
86
|
-
class="saooti-
|
|
86
|
+
class="saooti-down"
|
|
87
87
|
/>
|
|
88
88
|
</button>
|
|
89
89
|
<EditCommentBox
|
|
@@ -136,7 +136,7 @@ import { Podcast } from '@/store/class/general/podcast';
|
|
|
136
136
|
import { Conference } from '@/store/class/conference/conference';
|
|
137
137
|
import CommentBasicView from './CommentBasicView.vue';
|
|
138
138
|
import Constants from '../../../../public/config';
|
|
139
|
-
import { defineComponent, defineAsyncComponent
|
|
139
|
+
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
140
140
|
const CommentInput = defineAsyncComponent(() => import('./CommentInput.vue'));
|
|
141
141
|
const CommentParentInfo = defineAsyncComponent(() => import('./CommentParentInfo.vue'));
|
|
142
142
|
const EditCommentBox = defineAsyncComponent(() => import('@/components/display/edit/EditCommentBox.vue'));
|
|
@@ -43,7 +43,6 @@ import { Conference } from '@/store/class/conference/conference';
|
|
|
43
43
|
import { CommentPodcast } from '@/store/class/general/comment';
|
|
44
44
|
import { InterfacePageable } from '@/store/class/general/interfacePageable';
|
|
45
45
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
46
|
-
import { FetchParam } from '@/store/class/general/fetchParam';
|
|
47
46
|
/* eslint-disable */
|
|
48
47
|
const CommentItem: any = defineAsyncComponent(() => import('./CommentItem.vue'));
|
|
49
48
|
/* eslint-enable */
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@click="editComment"
|
|
7
7
|
>
|
|
8
8
|
<span
|
|
9
|
-
class="saooti-edit
|
|
9
|
+
class="saooti-edit"
|
|
10
10
|
:data-selenium="'Edit-Comment-' + seleniumFormat(comment.name)"
|
|
11
11
|
/>
|
|
12
12
|
</button>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
@click="commentModal('Valid')"
|
|
18
18
|
>
|
|
19
19
|
<span
|
|
20
|
-
class="saooti-
|
|
20
|
+
class="saooti-checkmark"
|
|
21
21
|
:data-selenium="'Validate-Comment-' + seleniumFormat(comment.name)"
|
|
22
22
|
/>
|
|
23
23
|
</button>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
@click="commentModal('Invalid')"
|
|
29
29
|
>
|
|
30
30
|
<span
|
|
31
|
-
class="saooti-remove
|
|
31
|
+
class="saooti-remove"
|
|
32
32
|
:data-selenium="'Invalidate-Comment-' + seleniumFormat(comment.name)"
|
|
33
33
|
/>
|
|
34
34
|
</button>
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<template #caret="">
|
|
72
72
|
<div class="position-relative">
|
|
73
73
|
<span
|
|
74
|
-
class="saooti-
|
|
74
|
+
class="saooti-down octopus-arrow-down"
|
|
75
75
|
/>
|
|
76
76
|
</div>
|
|
77
77
|
</template>
|
|
@@ -108,7 +108,6 @@ const getDefaultEmission = (defaultName: string): Emission|undefined => {
|
|
|
108
108
|
|
|
109
109
|
import { Emission } from '@/store/class/general/emission';
|
|
110
110
|
import { defineComponent } from 'vue'
|
|
111
|
-
import { FetchParam } from '@/store/class/general/fetchParam';
|
|
112
111
|
export default defineComponent({
|
|
113
112
|
components: {
|
|
114
113
|
VueMultiselect
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
@click="play(p)"
|
|
103
103
|
>
|
|
104
104
|
<div
|
|
105
|
-
class="text-light saooti-
|
|
105
|
+
class="text-light saooti-play"
|
|
106
106
|
:title="$t('Play')"
|
|
107
107
|
/>
|
|
108
108
|
</div>
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
@click="pause(p)"
|
|
113
113
|
>
|
|
114
114
|
<div
|
|
115
|
-
class="text-light saooti-pause
|
|
115
|
+
class="text-light saooti-pause"
|
|
116
116
|
:title="$t('Pause')"
|
|
117
117
|
/>
|
|
118
118
|
</div>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<option value="YES">{{ $t('Authorized advertising') }}</option>
|
|
13
13
|
<option value="NO">{{ $t('Prohibited advertising') }}</option>
|
|
14
14
|
</select>
|
|
15
|
-
<div class="saooti-
|
|
15
|
+
<div class="saooti-down octopus-arrow-down" />
|
|
16
16
|
</label>
|
|
17
17
|
</div>
|
|
18
18
|
</template>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
<div
|
|
43
43
|
v-show="!playingPodcast"
|
|
44
44
|
:title="$t('Play')"
|
|
45
|
-
class="saooti-
|
|
45
|
+
class="saooti-play primary-color"
|
|
46
46
|
/>
|
|
47
47
|
<div
|
|
48
48
|
v-if="!classicPodcastPlay"
|
|
@@ -77,8 +77,8 @@
|
|
|
77
77
|
</button>
|
|
78
78
|
<div
|
|
79
79
|
v-if="displayDescription && isMobile"
|
|
80
|
-
class="background-icon primary-bg saooti-arrow-
|
|
81
|
-
:class="isDescription ? 'saooti-arrow-
|
|
80
|
+
class="background-icon primary-bg saooti-arrow-up"
|
|
81
|
+
:class="isDescription ? 'saooti-arrow-down':'saooti-arrow-up'"
|
|
82
82
|
:title="isDescription ? $t('Hide description'):$t('Show description')"
|
|
83
83
|
@click="showDescription"
|
|
84
84
|
/>
|
|
@@ -112,8 +112,13 @@ export default defineComponent({
|
|
|
112
112
|
...mapState({
|
|
113
113
|
playingPodcast(state: StoreState) {
|
|
114
114
|
return (
|
|
115
|
-
(state.player.podcast
|
|
116
|
-
|
|
115
|
+
(state.player.podcast &&
|
|
116
|
+
state.player.podcast.podcastId === this.podcast.podcastId) ||
|
|
117
|
+
(this.fetchConference &&
|
|
118
|
+
'null' !== this.fetchConference &&
|
|
119
|
+
state.player.live &&
|
|
120
|
+
state.player.live.conferenceId ===
|
|
121
|
+
this.fetchConference.conferenceId)
|
|
117
122
|
);
|
|
118
123
|
},
|
|
119
124
|
}),
|
|
@@ -349,7 +354,7 @@ export default defineComponent({
|
|
|
349
354
|
&:hover {
|
|
350
355
|
background: #00000030;
|
|
351
356
|
}
|
|
352
|
-
> .saooti-
|
|
357
|
+
> .saooti-play {
|
|
353
358
|
font-size: 2em;
|
|
354
359
|
position: relative;
|
|
355
360
|
right: -0.2rem;
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</router-link>
|
|
47
47
|
<span
|
|
48
48
|
v-if="editRight && podcastOrder && podcastOrder > 1"
|
|
49
|
-
class="saooti-pin
|
|
49
|
+
class="saooti-pin text-danger pe-2"
|
|
50
50
|
/>
|
|
51
51
|
</div>
|
|
52
52
|
</div>
|
|
@@ -138,7 +138,7 @@ export default defineComponent({
|
|
|
138
138
|
.text-secondary {
|
|
139
139
|
margin: 0.5rem !important;
|
|
140
140
|
}
|
|
141
|
-
.saooti-pin
|
|
141
|
+
.saooti-pin {
|
|
142
142
|
font-size: 22px;
|
|
143
143
|
}
|
|
144
144
|
.title-podcast-item {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
:title="$t('Downloading')"
|
|
7
7
|
@click="onDownload(podcast.audioUrl, podcast.title)"
|
|
8
8
|
>
|
|
9
|
-
<div class="saooti-download
|
|
9
|
+
<div class="saooti-download" />
|
|
10
10
|
</button>
|
|
11
11
|
<template
|
|
12
12
|
v-for="button in arrayShareButtons"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
:title="titleRssButton"
|
|
41
41
|
@click.prevent="openPopup()"
|
|
42
42
|
>
|
|
43
|
-
<div class="saooti-rss
|
|
43
|
+
<div class="saooti-rss" />
|
|
44
44
|
</a>
|
|
45
45
|
<button
|
|
46
46
|
:class="getClass()"
|
|
@@ -143,9 +143,9 @@ export default defineComponent({
|
|
|
143
143
|
},
|
|
144
144
|
arrayShareButtons(){
|
|
145
145
|
return [
|
|
146
|
-
{ title: 'Facebook', icon:'saooti-facebook
|
|
147
|
-
{ title: 'Twitter', icon:'saooti-twitter
|
|
148
|
-
{ title: 'Linkedin', icon:'saooti-
|
|
146
|
+
{ title: 'Facebook', icon:'saooti-facebook', nbPath:0, className:'btn-facebook', url :`https://www.facebook.com/sharer/sharer.php?u=${this.urlPage}`, condition: true},
|
|
147
|
+
{ title: 'Twitter', icon:'saooti-twitter', nbPath:0, className:'btn-twitter', url :`https://twitter.com/intent/tweet?text=${this.urlPage}`, condition: true},
|
|
148
|
+
{ title: 'Linkedin', icon:'saooti-linkedin', nbPath:0, className:'btn-linkedin', url :`https://www.linkedin.com/sharing/share-offsite/?url=${this.urlPage}`, condition: true},
|
|
149
149
|
{ title: 'Whatsapp', icon:'saooti-Whatsapp', nbPath:3, className:'btn-whatsapp', url :`whatsapp://send?text=${this.urlPage}`, condition: window.matchMedia('(hover: none)').matches}
|
|
150
150
|
]
|
|
151
151
|
},
|
|
@@ -24,8 +24,12 @@
|
|
|
24
24
|
class="text-dark"
|
|
25
25
|
>
|
|
26
26
|
<span :class="platform.icon">
|
|
27
|
-
<div
|
|
28
|
-
|
|
27
|
+
<div
|
|
28
|
+
v-for="index in platform.path"
|
|
29
|
+
:key="index"
|
|
30
|
+
:class="'path'+index"
|
|
31
|
+
/>
|
|
32
|
+
</span>{{ platform.title }}
|
|
29
33
|
</router-link>
|
|
30
34
|
</div>
|
|
31
35
|
<Snackbar
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
/>
|
|
16
16
|
<div
|
|
17
17
|
v-if="!textValue"
|
|
18
|
-
class="saooti-search
|
|
18
|
+
class="saooti-search search-icon-container"
|
|
19
19
|
/>
|
|
20
20
|
<div
|
|
21
21
|
v-else
|
|
22
|
-
class="saooti-remove
|
|
22
|
+
class="saooti-remove search-icon-container c-hand"
|
|
23
23
|
@click="textValue = ''"
|
|
24
24
|
/>
|
|
25
25
|
</div>
|
|
@@ -68,8 +68,8 @@ export default defineComponent({
|
|
|
68
68
|
border-radius: 10px;
|
|
69
69
|
margin: 0 !important;
|
|
70
70
|
}
|
|
71
|
-
.saooti-search
|
|
72
|
-
.saooti-remove
|
|
71
|
+
.saooti-search,
|
|
72
|
+
.saooti-remove {
|
|
73
73
|
font-size: 1rem;
|
|
74
74
|
}
|
|
75
75
|
.search-icon-container {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
class="dropdown btn-group"
|
|
14
14
|
>
|
|
15
15
|
<button
|
|
16
|
-
class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user
|
|
16
|
+
class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user"
|
|
17
17
|
data-bs-toggle="dropdown"
|
|
18
18
|
aria-expanded="false"
|
|
19
19
|
:title="$t('User menu')"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
</template>
|
|
48
48
|
</div>
|
|
49
49
|
<button
|
|
50
|
-
class="btn-transparent saooti-
|
|
50
|
+
class="btn-transparent saooti-menu"
|
|
51
51
|
:title="$t('open left Menu')"
|
|
52
52
|
@click="onDisplayMenu(false)"
|
|
53
53
|
/>
|
|
@@ -218,7 +218,7 @@ export default defineComponent({
|
|
|
218
218
|
padding: 0 0.5rem;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
|
-
.saooti-
|
|
221
|
+
.saooti-menu {
|
|
222
222
|
display: none;
|
|
223
223
|
cursor: pointer;
|
|
224
224
|
font-size: 2rem;
|
|
@@ -251,7 +251,7 @@ export default defineComponent({
|
|
|
251
251
|
.link-hover,.hosted-by {
|
|
252
252
|
display: none;
|
|
253
253
|
}
|
|
254
|
-
.saooti-
|
|
254
|
+
.saooti-menu {
|
|
255
255
|
display: block;
|
|
256
256
|
}
|
|
257
257
|
}
|
|
@@ -261,7 +261,7 @@ export default defineComponent({
|
|
|
261
261
|
.default-multiselect-width, .hosted-by, .link-hover {
|
|
262
262
|
display: none;
|
|
263
263
|
}
|
|
264
|
-
.saooti-
|
|
264
|
+
.saooti-menu {
|
|
265
265
|
display: block;
|
|
266
266
|
}
|
|
267
267
|
}
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
<h4 class="mb-3">
|
|
22
22
|
{{ $t('Configuration') }}
|
|
23
23
|
</h4>
|
|
24
|
-
<label for="share-url-newsletter">{{$t('Share')}}</label>
|
|
24
|
+
<label for="share-url-newsletter">{{ $t('Share') }}</label>
|
|
25
25
|
<input
|
|
26
|
-
v-model="shareUrl"
|
|
27
26
|
id="share-url-newsletter"
|
|
27
|
+
v-model="shareUrl"
|
|
28
28
|
class="form-input mb-2"
|
|
29
29
|
type="text"
|
|
30
30
|
:class="{ 'border border-danger': 0 === shareUrl }"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
>
|
|
43
43
|
<p>{{ embedLink }}</p>
|
|
44
44
|
<div
|
|
45
|
-
class="saooti-copy
|
|
45
|
+
class="saooti-copy"
|
|
46
46
|
@click="onCopyCode(embedLink, afterCopy)"
|
|
47
47
|
/>
|
|
48
48
|
</div>
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<div class="d-flex">
|
|
55
55
|
<p>{{ embedlyLink }}</p>
|
|
56
56
|
<div
|
|
57
|
-
class="saooti-copy
|
|
57
|
+
class="saooti-copy"
|
|
58
58
|
@click="onCopyCode(embedlyLink, afterCopy)"
|
|
59
59
|
/>
|
|
60
60
|
</div>
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
>
|
|
69
69
|
<p>{{ directLink.audioUrl }}</p>
|
|
70
70
|
<div
|
|
71
|
-
class="saooti-copy
|
|
71
|
+
class="saooti-copy"
|
|
72
72
|
@click="onCopyCode(directLink.audioUrl, snackbarRef)"
|
|
73
73
|
/>
|
|
74
74
|
</div>
|
|
@@ -178,7 +178,7 @@ export default defineComponent({
|
|
|
178
178
|
display: flex;
|
|
179
179
|
justify-content: space-between;
|
|
180
180
|
}
|
|
181
|
-
.saooti-copy
|
|
181
|
+
.saooti-copy {
|
|
182
182
|
cursor: pointer;
|
|
183
183
|
align-self: center;
|
|
184
184
|
}
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
v-if="!playerError"
|
|
17
17
|
:title="$t('Play')"
|
|
18
18
|
:class="{
|
|
19
|
-
'saooti-
|
|
20
|
-
'saooti-pause
|
|
19
|
+
'saooti-play': isPaused,
|
|
20
|
+
'saooti-pause': isPlaying,
|
|
21
21
|
'spinner-border':!isPaused&&!isPlaying
|
|
22
22
|
}"
|
|
23
23
|
class="btn play-button-box text-light primary-bg"
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
</div>
|
|
56
56
|
<button
|
|
57
57
|
:title="$t('Enlarge')"
|
|
58
|
-
class="btn play-button-box primary-bg text-light saooti-up
|
|
58
|
+
class="btn play-button-box primary-bg text-light saooti-up"
|
|
59
59
|
@click="changePlayerLargeVersion"
|
|
60
60
|
/>
|
|
61
61
|
<button
|
|
62
62
|
:title="$t('Close')"
|
|
63
|
-
class="btn play-button-box primary-bg text-light saooti-remove
|
|
63
|
+
class="btn play-button-box primary-bg text-light saooti-remove"
|
|
64
64
|
@click="stopPlayer"
|
|
65
65
|
/>
|
|
66
66
|
<PlayerTimeline
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
>
|
|
5
5
|
<button
|
|
6
6
|
:title="$t('Reduce')"
|
|
7
|
-
class="player-reduce-button btn bg-transparent text-light saooti-down
|
|
7
|
+
class="player-reduce-button btn bg-transparent text-light saooti-down"
|
|
8
8
|
@click="changePlayerLargeVersion"
|
|
9
9
|
/>
|
|
10
10
|
<router-link
|
|
@@ -55,15 +55,15 @@
|
|
|
55
55
|
v-if="!playerError"
|
|
56
56
|
:title="$t('Play')"
|
|
57
57
|
:class="{
|
|
58
|
-
'saooti-
|
|
59
|
-
'saooti-pause
|
|
58
|
+
'saooti-play': isPaused,
|
|
59
|
+
'saooti-pause': isPlaying,
|
|
60
60
|
'spinner-border':!isPaused&&!isPlaying
|
|
61
61
|
}"
|
|
62
62
|
class="btn play-big-button-box text-light primary-bg"
|
|
63
63
|
@click="switchPausePlay"
|
|
64
64
|
/>
|
|
65
65
|
<button
|
|
66
|
-
class="btn fs-1 bg-transparent text-light saooti-
|
|
66
|
+
class="btn fs-1 bg-transparent text-light saooti-forward"
|
|
67
67
|
@click="seekClick(15)"
|
|
68
68
|
/>
|
|
69
69
|
</div>
|
|
@@ -34,7 +34,10 @@
|
|
|
34
34
|
:organisation-id="myOrganisationId"
|
|
35
35
|
:is-education="isEducation"
|
|
36
36
|
/>
|
|
37
|
-
<ShareButtons
|
|
37
|
+
<ShareButtons
|
|
38
|
+
v-if="pageParameters.isShareButtons"
|
|
39
|
+
:playlist="playlist"
|
|
40
|
+
/>
|
|
38
41
|
</div>
|
|
39
42
|
</div>
|
|
40
43
|
<PodcastList :playlist="playlist" />
|
|
Binary file
|