@saooti/octopus-sdk 33.0.5 → 33.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 +3 -0
- package/package.json +1 -1
- package/src/components/display/categories/CategoryChooser.vue +2 -3
- package/src/components/display/comments/AddCommentModal.vue +2 -1
- package/src/components/display/podcasts/PodcastModuleBox.vue +12 -0
- package/src/components/display/rubriques/RubriqueList.vue +5 -0
- package/src/components/pages/Category.vue +4 -21
- package/src/locale/de.ts +2 -0
- package/src/locale/en.ts +2 -0
- package/src/locale/es.ts +2 -0
- package/src/locale/fr.ts +2 -0
- package/src/locale/it.ts +2 -0
- package/src/locale/sl.ts +2 -0
- package/src/shims-vue-recaptcha-v3.d.ts +0 -9
package/README.md
CHANGED
|
@@ -688,7 +688,10 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
688
688
|
* 32.0.35 Enlever Dummy param
|
|
689
689
|
* 32.0.36 Select -> font family
|
|
690
690
|
* 32.0.40 Problème majeur !!!
|
|
691
|
+
* 32.0.42 Parlement européen
|
|
691
692
|
|
|
692
693
|
* 33.0.3 SpeechToText player octopus
|
|
693
694
|
* 33.0.4 Image webp
|
|
694
695
|
* 33.0.5 Change recaptcha
|
|
696
|
+
* 33.0.6 Crédits
|
|
697
|
+
|
package/package.json
CHANGED
|
@@ -85,6 +85,12 @@
|
|
|
85
85
|
{{ podcast.organisation.name }}
|
|
86
86
|
</router-link>
|
|
87
87
|
</div>
|
|
88
|
+
<div v-if="''!==photoCredit">
|
|
89
|
+
{{ $t('Photo credits') + " : "+ photoCredit }}
|
|
90
|
+
</div>
|
|
91
|
+
<div v-if="''!==audioCredit">
|
|
92
|
+
{{ $t('Audio credits') + " : "+ audioCredit }}
|
|
93
|
+
</div>
|
|
88
94
|
<a
|
|
89
95
|
v-if="podcast.article"
|
|
90
96
|
class="btn d-flex align-items-center my-2 width-fit-content"
|
|
@@ -224,6 +230,12 @@ export default defineComponent({
|
|
|
224
230
|
podcastNotValid(): boolean {
|
|
225
231
|
return undefined!==this.podcast?.availability && false === this.podcast?.valid;
|
|
226
232
|
},
|
|
233
|
+
photoCredit():string{
|
|
234
|
+
return (this.podcast?.annotations?.photoCredit as string) ?? '';
|
|
235
|
+
},
|
|
236
|
+
audioCredit():string{
|
|
237
|
+
return (this.podcast?.annotations?.audioCredit as string) ?? '';
|
|
238
|
+
}
|
|
227
239
|
},
|
|
228
240
|
methods: {
|
|
229
241
|
playPodcast(podcast: Podcast): void {
|
|
@@ -4,7 +4,12 @@
|
|
|
4
4
|
ref="rubriqueListContainer"
|
|
5
5
|
class="rubrique-list-container"
|
|
6
6
|
>
|
|
7
|
+
<label
|
|
8
|
+
for="rubrique-list-select"
|
|
9
|
+
class="hid"
|
|
10
|
+
>{{$t('By topic')}}</label>
|
|
7
11
|
<select
|
|
12
|
+
id="rubrique-list-select"
|
|
8
13
|
v-model="rubriquage"
|
|
9
14
|
class="c-hand"
|
|
10
15
|
@change="onRubriquageSelected"
|
|
@@ -23,12 +23,6 @@ export default defineComponent({
|
|
|
23
23
|
iabId: { default: undefined, type: Number},
|
|
24
24
|
},
|
|
25
25
|
|
|
26
|
-
data() {
|
|
27
|
-
return {
|
|
28
|
-
title: '' as string,
|
|
29
|
-
};
|
|
30
|
-
},
|
|
31
|
-
|
|
32
26
|
computed: {
|
|
33
27
|
categories(): Array<Category> {
|
|
34
28
|
return this.$store.state.categories;
|
|
@@ -36,22 +30,11 @@ export default defineComponent({
|
|
|
36
30
|
filterOrga(): string {
|
|
37
31
|
return this.$store.state.filter.organisationId;
|
|
38
32
|
},
|
|
39
|
-
|
|
40
|
-
watch: {
|
|
41
|
-
iabId(): void {
|
|
42
|
-
this.extractTitle();
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
|
|
46
|
-
mounted() {
|
|
47
|
-
this.extractTitle();
|
|
48
|
-
},
|
|
49
|
-
methods: {
|
|
50
|
-
extractTitle(): void {
|
|
33
|
+
title():string{
|
|
51
34
|
const matchCategories = this.categories.filter((c: Category) => c.id === this.iabId);
|
|
52
|
-
if (1 !== matchCategories.length) return;
|
|
53
|
-
|
|
54
|
-
}
|
|
35
|
+
if (1 !== matchCategories.length) return "";
|
|
36
|
+
return matchCategories[0]['name'];
|
|
37
|
+
}
|
|
55
38
|
},
|
|
56
39
|
})
|
|
57
40
|
</script>
|
package/src/locale/de.ts
CHANGED
package/src/locale/en.ts
CHANGED
package/src/locale/es.ts
CHANGED
|
@@ -307,4 +307,6 @@ export default{
|
|
|
307
307
|
"Warning":"Advertencia",
|
|
308
308
|
"Visual":"Imagen de {name}",
|
|
309
309
|
"If the transcript is available, show it":"Si la transcripción está disponible, muéstrela",
|
|
310
|
+
"Photo credits":"Créditos fotográficos",
|
|
311
|
+
"Audio credits":"Créditos de audio",
|
|
310
312
|
}
|
package/src/locale/fr.ts
CHANGED
package/src/locale/it.ts
CHANGED
package/src/locale/sl.ts
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ReCaptchaInstance } from 'recaptcha-v3'
|
|
2
|
-
|
|
3
|
-
declare module '@vue/runtime-core' {
|
|
4
|
-
interface ComponentCustomProperties {
|
|
5
|
-
$recaptcha: (action: string) => Promise<string>
|
|
6
|
-
$recaptchaLoaded: () => Promise<boolean>
|
|
7
|
-
$recaptchaInstance: ReCaptchaInstance
|
|
8
|
-
}
|
|
9
|
-
}
|