@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "39.3.1",
3
+ "version": "39.3.2",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -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"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="d-flex-column align-items-center my-3">
2
+ <div id="productor-search" class="d-flex-column align-items-center my-3">
3
3
  <div
4
4
  v-if="!isPodcastmaker && !filterOrgaId"
5
5
  class="w-50-responsive pe-3 position-relative"
@@ -325,7 +325,7 @@ export default defineComponent({
325
325
  this.fetchOccurrences();
326
326
  },
327
327
  dateDisplay(date: Date): string {
328
- return dayjs(date).format("HH:mm:ss");
328
+ return dayjs(date).format("HH:mm");
329
329
  },
330
330
  },
331
331
  });
@@ -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();