@saooti/octopus-sdk 30.0.19 → 30.0.23
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 +5 -1
- package/package.json +2 -2
- package/src/assets/bootstrap-diff.scss +30 -84
- package/src/assets/form.scss +6 -3
- package/src/assets/general.scss +14 -3
- package/src/assets/share.scss +17 -43
- package/src/components/display/aggregator/RssSection.vue +1 -3
- package/src/components/display/categories/CategoryChooser.vue +1 -3
- package/src/components/display/categories/CategoryFilter.vue +5 -4
- package/src/components/display/categories/CategoryList.vue +4 -15
- package/src/components/display/comments/AddCommentModal.vue +35 -50
- package/src/components/display/comments/CommentBasicView.vue +96 -0
- package/src/components/display/comments/CommentInput.vue +22 -28
- package/src/components/display/comments/CommentItem.vue +56 -148
- package/src/components/display/comments/CommentList.vue +56 -112
- package/src/components/display/comments/CommentParentInfo.vue +17 -57
- package/src/components/display/comments/CommentPlayer.vue +2 -7
- package/src/components/display/comments/CommentSection.vue +9 -24
- package/src/components/display/edit/EditBox.vue +0 -2
- package/src/components/display/edit/EditCommentBox.vue +123 -23
- package/src/components/display/emission/EmissionChooser.vue +1 -3
- package/src/components/display/emission/EmissionInlineList.vue +2 -2
- package/src/components/display/emission/EmissionItem.vue +1 -2
- package/src/components/display/emission/EmissionList.vue +5 -2
- package/src/components/display/filter/AdvancedSearch.vue +2 -2
- package/src/components/display/filter/CategoryFilter.vue +0 -2
- package/src/components/display/filter/MonetizableFilter.vue +1 -3
- package/src/components/display/filter/ProductorSearch.vue +2 -2
- package/src/components/display/filter/RubriqueChoice.vue +1 -3
- package/src/components/display/filter/RubriqueFilter.vue +1 -3
- package/src/components/display/live/CountDown.vue +1 -3
- package/src/components/display/live/LiveHorizontalList.vue +6 -5
- package/src/components/display/organisation/OrganisationChooser.vue +1 -3
- package/src/components/display/playlist/PlaylistItem.vue +2 -4
- package/src/components/display/playlist/PlaylistList.vue +6 -5
- package/src/components/display/playlist/PodcastList.vue +5 -2
- package/src/components/display/podcasts/ParticipantDescription.vue +1 -3
- package/src/components/display/podcasts/PodcastFilterList.vue +1 -3
- package/src/components/display/podcasts/PodcastImage.vue +1 -1
- package/src/components/display/podcasts/PodcastInlineList.vue +5 -7
- package/src/components/display/podcasts/PodcastList.vue +6 -5
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -3
- package/src/components/display/podcasts/TagList.vue +2 -1
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -3
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/display/sharing/QrCode.vue +1 -3
- package/src/components/display/sharing/ShareDistribution.vue +1 -6
- package/src/components/display/sharing/SharePlayer.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +3 -5
- package/src/components/display/studio/RecordingItemButton.vue +1 -3
- package/src/components/form/ClassicSearch.vue +21 -19
- package/src/components/misc/HomeDropdown.vue +74 -115
- package/src/components/misc/PlayerButtons.vue +1 -4
- package/src/components/misc/TopBar.vue +2 -2
- package/src/components/misc/modal/MessageModal.vue +2 -4
- package/src/components/misc/modal/QrCodeModal.vue +1 -3
- package/src/components/pages/Emission.vue +2 -6
- package/src/components/pages/Rubrique.vue +1 -3
- package/src/locale/en.ts +2 -0
- package/src/locale/fr.ts +2 -0
- package/src/sass/_variables.scss +10 -7
- package/src/store/AppStore.ts +0 -3
- package/src/store/typeAppStore.ts +0 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
>
|
|
7
7
|
<div class="hide-phone">
|
|
8
8
|
<button
|
|
9
|
-
class="btn
|
|
9
|
+
class="btn admin-button m-1"
|
|
10
10
|
:class="{ disabled: !previousAvailable }"
|
|
11
11
|
:title="$t('Display previous')"
|
|
12
12
|
@click="displayPrevious()"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div class="saooti-arrow-left2" />
|
|
15
15
|
</button>
|
|
16
16
|
<button
|
|
17
|
-
class="btn
|
|
17
|
+
class="btn admin-button m-1"
|
|
18
18
|
:class="{ disabled: !nextAvailable }"
|
|
19
19
|
:title="$t('Display next')"
|
|
20
20
|
@click="displayNext()"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<button
|
|
42
42
|
v-show="!allFetched"
|
|
43
43
|
class="btn"
|
|
44
|
-
:class="buttonPlus ? 'btn-link
|
|
44
|
+
:class="buttonPlus ? 'btn-link' : 'btn-more'"
|
|
45
45
|
:disabled="loading"
|
|
46
46
|
:title="$t('See more')"
|
|
47
47
|
@click="fetchContent(false)"
|
|
@@ -49,7 +49,10 @@
|
|
|
49
49
|
<template v-if="buttonPlus">
|
|
50
50
|
{{ $t('See more') }}
|
|
51
51
|
</template>
|
|
52
|
-
<div
|
|
52
|
+
<div
|
|
53
|
+
:class="buttonPlus?'ms-1':''"
|
|
54
|
+
class="saooti-plus"
|
|
55
|
+
/>
|
|
53
56
|
</button>
|
|
54
57
|
</template>
|
|
55
58
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
class="advanced-search-container"
|
|
16
16
|
>
|
|
17
17
|
<div class="d-flex flex-column">
|
|
18
|
-
<div class="primary-
|
|
18
|
+
<div class="primary-darker mb-2">
|
|
19
19
|
{{ $t('Filter') }}
|
|
20
20
|
</div>
|
|
21
21
|
<MonetizableFilter
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
</div>
|
|
112
112
|
</div>
|
|
113
113
|
<div class="d-flex flex-column">
|
|
114
|
-
<div class="primary-
|
|
114
|
+
<div class="primary-darker mb-2">
|
|
115
115
|
{{ $t('Sort') }}
|
|
116
116
|
</div>
|
|
117
117
|
<ClassicRadio
|
|
@@ -146,7 +146,7 @@ export default defineComponent({
|
|
|
146
146
|
|
|
147
147
|
.filter-speech-bubble {
|
|
148
148
|
position: absolute;
|
|
149
|
-
background: $octopus-primary-
|
|
149
|
+
background: $octopus-primary-dark;
|
|
150
150
|
border-radius: 0.4em;
|
|
151
151
|
width: 10rem;
|
|
152
152
|
right: 4rem;
|
|
@@ -165,7 +165,7 @@ export default defineComponent({
|
|
|
165
165
|
width: 0;
|
|
166
166
|
height: 0;
|
|
167
167
|
border: 18px solid transparent;
|
|
168
|
-
border-left-color: $octopus-primary-
|
|
168
|
+
border-left-color: $octopus-primary-dark;
|
|
169
169
|
border-right: 0;
|
|
170
170
|
border-bottom: 0;
|
|
171
171
|
margin-top: -9px;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<button
|
|
17
17
|
v-show="!allFetched"
|
|
18
18
|
class="btn"
|
|
19
|
-
:class="buttonPlus ? 'btn-link
|
|
19
|
+
:class="buttonPlus ? 'btn-link mt-3' : 'btn-more'"
|
|
20
20
|
:disabled="inFetching"
|
|
21
21
|
:title="$t('See more')"
|
|
22
22
|
@click="displayMore"
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
<template v-if="buttonPlus">
|
|
25
25
|
{{ $t('See more') }}
|
|
26
26
|
</template>
|
|
27
|
-
<div
|
|
27
|
+
<div
|
|
28
|
+
:class="buttonPlus?'ms-1':''"
|
|
29
|
+
class="saooti-plus"
|
|
30
|
+
/>
|
|
28
31
|
</button>
|
|
29
32
|
</div>
|
|
30
33
|
</template>
|
|
@@ -111,6 +114,4 @@ export default defineComponent({
|
|
|
111
114
|
},
|
|
112
115
|
},
|
|
113
116
|
})
|
|
114
|
-
</script>
|
|
115
|
-
|
|
116
|
-
<style lang="scss"></style>
|
|
117
|
+
</script>
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
}"
|
|
60
60
|
class="text-dark"
|
|
61
61
|
>
|
|
62
|
-
<div class="emission-producer primary-
|
|
62
|
+
<div class="emission-producer primary-darker">
|
|
63
63
|
© {{ playlist.organisation.name }}
|
|
64
64
|
</div>
|
|
65
65
|
</router-link>
|
|
@@ -137,6 +137,4 @@ export default defineComponent({
|
|
|
137
137
|
},
|
|
138
138
|
methods: {},
|
|
139
139
|
})
|
|
140
|
-
</script>
|
|
141
|
-
|
|
142
|
-
<style lang="scss"></style>
|
|
140
|
+
</script>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<button
|
|
20
20
|
v-show="!allFetched && loaded"
|
|
21
21
|
class="btn"
|
|
22
|
-
:class="buttonPlus ? 'btn-link
|
|
22
|
+
:class="buttonPlus ? 'btn-link':'btn-more'"
|
|
23
23
|
:disabled="inFetching"
|
|
24
24
|
:title="$t('See more')"
|
|
25
25
|
@click="displayMore"
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
<template v-if="buttonPlus">
|
|
28
28
|
{{ $t('See more') }}
|
|
29
29
|
</template>
|
|
30
|
-
<div
|
|
30
|
+
<div
|
|
31
|
+
:class="buttonPlus?'ms-1':''"
|
|
32
|
+
class="saooti-plus"
|
|
33
|
+
/>
|
|
31
34
|
</button>
|
|
32
35
|
</div>
|
|
33
36
|
</template>
|
|
@@ -140,6 +143,4 @@ export default defineComponent({
|
|
|
140
143
|
},
|
|
141
144
|
},
|
|
142
145
|
})
|
|
143
|
-
</script>
|
|
144
|
-
|
|
145
|
-
<style lang="scss"></style>
|
|
146
|
+
</script>
|
|
@@ -40,14 +40,17 @@
|
|
|
40
40
|
<button
|
|
41
41
|
v-show="size < podcasts.length && loaded"
|
|
42
42
|
class="btn"
|
|
43
|
-
:class="buttonPlus ? 'btn-link
|
|
43
|
+
:class="buttonPlus ? 'btn-link':'btn-more'"
|
|
44
44
|
:title="$t('See more')"
|
|
45
45
|
@click="displayMore"
|
|
46
46
|
>
|
|
47
47
|
<template v-if="buttonPlus">
|
|
48
48
|
{{ $t('See more') }}
|
|
49
49
|
</template>
|
|
50
|
-
<div
|
|
50
|
+
<div
|
|
51
|
+
:class="buttonPlus?'ms-1':''"
|
|
52
|
+
class="saooti-plus"
|
|
53
|
+
/>
|
|
51
54
|
</button>
|
|
52
55
|
</div>
|
|
53
56
|
</template>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
class="hide-phone"
|
|
27
27
|
>
|
|
28
28
|
<button
|
|
29
|
-
class="btn
|
|
29
|
+
class="btn admin-button m-1"
|
|
30
30
|
:class="{ disabled: !previousAvailable }"
|
|
31
31
|
:title="$t('Display previous')"
|
|
32
32
|
@click="displayPrevious()"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<div class="saooti-arrow-left2" />
|
|
35
35
|
</button>
|
|
36
36
|
<button
|
|
37
|
-
class="btn
|
|
37
|
+
class="btn admin-button m-1"
|
|
38
38
|
:class="{ disabled: !nextAvailable }"
|
|
39
39
|
:title="$t('Display next')"
|
|
40
40
|
@click="displayNext()"
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
</transition-group>
|
|
64
64
|
<router-link
|
|
65
65
|
class="btn btn-link"
|
|
66
|
-
:class="buttonPlus ? 'btn-link
|
|
66
|
+
:class="buttonPlus ? 'btn-link' : ''"
|
|
67
67
|
:to="refTo"
|
|
68
68
|
>
|
|
69
69
|
{{ buttonText }}
|
|
70
70
|
<div
|
|
71
71
|
v-if="buttonPlus"
|
|
72
|
-
class="saooti-plus"
|
|
72
|
+
class="ms-1 saooti-plus"
|
|
73
73
|
/>
|
|
74
74
|
</router-link>
|
|
75
75
|
</div>
|
|
@@ -279,6 +279,4 @@ export default defineComponent({
|
|
|
279
279
|
},
|
|
280
280
|
},
|
|
281
281
|
})
|
|
282
|
-
</script>
|
|
283
|
-
|
|
284
|
-
<style lang="scss"></style>
|
|
282
|
+
</script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<button
|
|
24
24
|
v-show="!allFetched && loaded"
|
|
25
25
|
class="btn"
|
|
26
|
-
:class="buttonPlus ? 'btn-link
|
|
26
|
+
:class="buttonPlus ? 'btn-link' : 'btn-more'"
|
|
27
27
|
:disabled="inFetching"
|
|
28
28
|
:title="$t('See more')"
|
|
29
29
|
@click="displayMore"
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
<template v-if="buttonPlus">
|
|
32
32
|
{{ $t('See more') }}
|
|
33
33
|
</template>
|
|
34
|
-
<div
|
|
34
|
+
<div
|
|
35
|
+
:class="buttonPlus?'ms-1':''"
|
|
36
|
+
class="saooti-plus"
|
|
37
|
+
/>
|
|
35
38
|
</button>
|
|
36
39
|
</div>
|
|
37
40
|
</template>
|
|
@@ -201,6 +204,4 @@ export default defineComponent({
|
|
|
201
204
|
},
|
|
202
205
|
},
|
|
203
206
|
})
|
|
204
|
-
</script>
|
|
205
|
-
|
|
206
|
-
<style lang="scss"></style>
|
|
207
|
+
</script>
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
v-if="undefined !== tagList"
|
|
4
|
-
class="tag-list-component d-flex flex-wrap"
|
|
4
|
+
class="tag-list-component d-flex align-items-center flex-wrap"
|
|
5
5
|
>
|
|
6
|
+
<div class="fw-bold">{{ $t('Podcast tags') + ": "}}</div>
|
|
6
7
|
<div
|
|
7
8
|
v-for="(tag, index) in tagList"
|
|
8
9
|
:key="tag"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
class="dropdown btn-group"
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
|
-
class="btn dropdown-toggle
|
|
34
|
+
class="btn dropdown-toggle admin-button dropdown-toggle-no-caret saooti-plus"
|
|
35
35
|
data-bs-toggle="dropdown"
|
|
36
36
|
aria-expanded="false"
|
|
37
37
|
:title="$t('See more')"
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<h3>{{ $t('Distribute') }}</h3>
|
|
4
4
|
<p class="sharing-distribution-container">
|
|
5
5
|
{{ $t('Rss feed:') }}
|
|
6
|
-
<span class="primary-
|
|
6
|
+
<span class="primary-darker hide-small-screen text-break">{{ rss }}</span>
|
|
7
7
|
<input
|
|
8
8
|
type="button"
|
|
9
9
|
:value="$t('Copy')"
|
|
@@ -192,10 +192,5 @@ export default defineComponent({
|
|
|
192
192
|
flex-wrap: wrap;
|
|
193
193
|
margin: 0.2rem 0.5rem;
|
|
194
194
|
}
|
|
195
|
-
@media (max-width: 450px) {
|
|
196
|
-
.primary-color {
|
|
197
|
-
display: none;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
195
|
}
|
|
201
196
|
</style>
|
|
@@ -366,7 +366,7 @@ export default defineComponent({
|
|
|
366
366
|
@import '../../../sass/_variables.scss';
|
|
367
367
|
.sticker {
|
|
368
368
|
align-self: center;
|
|
369
|
-
background:
|
|
369
|
+
background: $primaryColorMoreTransparent;
|
|
370
370
|
padding: 0.5rem;
|
|
371
371
|
transition: all 0.5s ease;
|
|
372
372
|
color: #41403e;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="module-box flex-grow-0">
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</h3>
|
|
7
|
-
</div>
|
|
3
|
+
<h3 class="mb-3">
|
|
4
|
+
{{ $t('Subscribe emission') }}
|
|
5
|
+
</h3>
|
|
8
6
|
<div class="d-flex flex-wrap">
|
|
9
7
|
<a
|
|
10
8
|
v-if="amazon"
|
|
@@ -60,23 +60,25 @@ export default defineComponent({
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
</script>
|
|
63
|
-
<style lang="scss"
|
|
64
|
-
.champs-searchPage
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
.saooti-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
63
|
+
<style lang="scss">
|
|
64
|
+
.champs-searchPage{
|
|
65
|
+
input {
|
|
66
|
+
border: 2px solid #dee2e6;
|
|
67
|
+
border-radius: 10px;
|
|
68
|
+
margin: 0 !important;
|
|
69
|
+
}
|
|
70
|
+
.saooti-search-bounty,
|
|
71
|
+
.saooti-cross {
|
|
72
|
+
font-size: 1rem;
|
|
73
|
+
}
|
|
74
|
+
.search-icon-container {
|
|
75
|
+
position: absolute;
|
|
76
|
+
top: 0;
|
|
77
|
+
bottom: 0;
|
|
78
|
+
right: 0;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
margin: 1rem;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
82
84
|
</style>
|