@saooti/octopus-sdk 39.3.1 → 39.3.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/package.json +1 -1
- package/src/components/display/filter/AdvancedSearch.vue +1 -1
- package/src/components/display/filter/ProductorSearch.vue +1 -1
- package/src/components/display/live/RadioPlanning.vue +1 -1
- package/src/components/display/podcasts/PodcastInlineListTemplate.vue +1 -1
- package/src/components/misc/player/PlayerCompact.vue +1 -0
- package/src/components/pages/HomePage.vue +2 -0
- package/src/stores/CommentStore.ts +3 -0
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="d-flex flex-column justify-content-center align-items-center">
|
|
2
|
+
<div id="advanced-search" class="d-flex flex-column justify-content-center align-items-center">
|
|
3
3
|
<button
|
|
4
4
|
class="d-flex justify-content-center align-items-center mb-3 text-secondary btn-transparent"
|
|
5
5
|
@click="clickShowFilters"
|
|
@@ -130,7 +130,7 @@ export default defineComponent({
|
|
|
130
130
|
this.$emit("displayNext");
|
|
131
131
|
},
|
|
132
132
|
handleSeeMoreButton(event: { preventDefault: () => void }) {
|
|
133
|
-
if (
|
|
133
|
+
if (this.href ||
|
|
134
134
|
!this.rubriqueId ||
|
|
135
135
|
0 === this.rubriqueId.length ||
|
|
136
136
|
this.noRubriquageId.length
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
<!-- <AdsSkipButton/> -->
|
|
25
25
|
<PlayerSpeedButton v-if="!radioUrl" />
|
|
26
26
|
<button
|
|
27
|
+
id="player-up-btn"
|
|
27
28
|
:title="'' != transcriptText ? $t('View transcript') : $t('Enlarge')"
|
|
28
29
|
class="btn play-button-box btn-transparent text-light me-0"
|
|
29
30
|
@click="changePlayerLargeVersion"
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
style="min-height: 650px"
|
|
30
30
|
:rubrique-id="rubriqueId.concat(r.rubriqueId)"
|
|
31
31
|
:title="r.name"
|
|
32
|
+
:href="rubriqueMorePath? rubriqueMorePath+r.rubriqueId: undefined"
|
|
32
33
|
:button-text="$t('All podcast button', { name: r.name })"
|
|
33
34
|
/>
|
|
34
35
|
<template #preview>
|
|
@@ -84,6 +85,7 @@ export default defineComponent({
|
|
|
84
85
|
mixins: [rubriquesFilterComputed],
|
|
85
86
|
props: {
|
|
86
87
|
displayWithoutRubriques: { default: true, type: Boolean },
|
|
88
|
+
rubriqueMorePath: { default: undefined, type: String },
|
|
87
89
|
},
|
|
88
90
|
emits: ["categoriesLength"],
|
|
89
91
|
data() {
|
|
@@ -106,6 +106,9 @@ export const useCommentStore = defineStore("CommentStore", {
|
|
|
106
106
|
uuid: uuid,
|
|
107
107
|
uuidHash: hash,
|
|
108
108
|
};
|
|
109
|
+
if ("#miniplayer" === this.commentUser?.name) {
|
|
110
|
+
this.commentUser.name = null;
|
|
111
|
+
}
|
|
109
112
|
},
|
|
110
113
|
setCommentUser(name: string) {
|
|
111
114
|
const authStore = useAuthStore();
|