@saooti/octopus-sdk 30.0.65 → 30.0.68
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 +1 -1
- package/src/components/display/categories/CategoryFilter.vue +4 -4
- package/src/components/display/categories/CategoryList.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +4 -4
- package/src/components/display/filter/CategoryFilter.vue +1 -1
- package/src/components/display/filter/RubriqueFilter.vue +1 -1
- package/src/components/display/podcasts/PodcastItem.vue +1 -4
- package/src/components/display/podcasts/PodcastList.vue +4 -4
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -4
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/misc/modal/NewsletterModal.vue +1 -4
- package/src/locale/en.ts +7 -7
- package/src/locale/fr.ts +3 -3
- package/src/locale/it.ts +4 -4
package/README.md
CHANGED
|
@@ -561,4 +561,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
561
561
|
* 30.0.62 Italian translation
|
|
562
562
|
* 30.0.63 Italian translation
|
|
563
563
|
* 30.0.64 Modif Le soir
|
|
564
|
-
* 30.0.65 OAuthType
|
|
564
|
+
* 30.0.65 OAuthType
|
|
565
|
+
* 30.0.66 ScrollBehavior
|
|
566
|
+
* 30.0.67 Parlement européen
|
|
567
|
+
* 30.0.68 Parlement européen
|
|
568
|
+
|
package/package.json
CHANGED
|
@@ -122,7 +122,7 @@ export default defineComponent({
|
|
|
122
122
|
this.$store.commit('filterRubrique', filter);
|
|
123
123
|
const queries = this.$route.query;
|
|
124
124
|
const queryString = filter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
125
|
-
this.$router.
|
|
125
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
getRubriques(rubriquageId: number): Array<Rubrique>{
|
|
@@ -138,7 +138,7 @@ export default defineComponent({
|
|
|
138
138
|
const queries = this.$route.query;
|
|
139
139
|
if(this.categoryFilter){
|
|
140
140
|
if (queries.iabId) {
|
|
141
|
-
this.$router.
|
|
141
|
+
this.$router.replace({ query: {...queries, ...{iabId: undefined} } });
|
|
142
142
|
}
|
|
143
143
|
this.$store.commit('filterIab', undefined);
|
|
144
144
|
}else{
|
|
@@ -147,9 +147,9 @@ export default defineComponent({
|
|
|
147
147
|
if (queries.rubriquesId) {
|
|
148
148
|
const queryString = newFilter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
149
149
|
if("" !== queryString){
|
|
150
|
-
this.$router.
|
|
150
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
151
151
|
}else{
|
|
152
|
-
this.$router.
|
|
152
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: undefined }} });
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
this.$store.commit('filterRubrique', newFilter);
|
|
@@ -139,7 +139,7 @@ export default defineComponent({
|
|
|
139
139
|
}
|
|
140
140
|
const queries = this.$route.query;
|
|
141
141
|
if(!queries.iabId || ('string'===typeof queries.iabId && parseInt(queries.iabId ,10) !== category.id)) {
|
|
142
|
-
this.$router.
|
|
142
|
+
this.$router.replace({ query: { ...queries, ...{ iabId: category.id.toString() }} });
|
|
143
143
|
}
|
|
144
144
|
this.$store.commit('filterIab',category);
|
|
145
145
|
},
|
|
@@ -132,13 +132,13 @@ export default defineComponent({
|
|
|
132
132
|
sortText(): string {
|
|
133
133
|
switch (this.sort) {
|
|
134
134
|
case 'SCORE':
|
|
135
|
-
return this.$t('sort by score').toString();
|
|
135
|
+
return " "+this.$t('sort by score').toString();
|
|
136
136
|
case 'LAST_PODCAST_DESC':
|
|
137
|
-
return this.$t('sort by date').toString();
|
|
137
|
+
return " "+this.$t('sort by date').toString();
|
|
138
138
|
case 'NAME':
|
|
139
|
-
return this.$t('sort by alphabetical').toString();
|
|
139
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
140
140
|
default:
|
|
141
|
-
return this.$t('sort by date').toString();
|
|
141
|
+
return " "+this.$t('sort by date').toString();
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
filterOrga(): string {
|
|
@@ -105,7 +105,7 @@ export default defineComponent({
|
|
|
105
105
|
}
|
|
106
106
|
const queries = this.$route.query;
|
|
107
107
|
if (queries.iabId) {
|
|
108
|
-
this.$router.
|
|
108
|
+
this.$router.replace({ query: {...queries, ...{iabId: undefined} } });
|
|
109
109
|
}
|
|
110
110
|
this.$store.commit('filterIab', undefined);
|
|
111
111
|
}
|
|
@@ -229,7 +229,7 @@ export default defineComponent({
|
|
|
229
229
|
}
|
|
230
230
|
const queries = this.$route.query;
|
|
231
231
|
if (queries.rubriquesId) {
|
|
232
|
-
this.$router.
|
|
232
|
+
this.$router.replace({ query: {...queries, ...{rubriquesId: undefined} } });
|
|
233
233
|
}
|
|
234
234
|
this.$store.commit('filterRubrique', []);
|
|
235
235
|
}
|
|
@@ -128,10 +128,7 @@ export default defineComponent({
|
|
|
128
128
|
return (state.podcastsPage.podcastBorderBottom as boolean);
|
|
129
129
|
},
|
|
130
130
|
date(): string {
|
|
131
|
-
|
|
132
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
133
|
-
}
|
|
134
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
131
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
135
132
|
},
|
|
136
133
|
displayDate(): string {
|
|
137
134
|
return moment(this.podcast.pubDate).format('X');
|
|
@@ -118,13 +118,13 @@ export default defineComponent({
|
|
|
118
118
|
sortText(): string {
|
|
119
119
|
switch (this.sortCriteria) {
|
|
120
120
|
case 'SCORE':
|
|
121
|
-
return this.$t('sort by score').toString();
|
|
121
|
+
return " "+this.$t('sort by score').toString();
|
|
122
122
|
case 'DATE':
|
|
123
|
-
return this.$t('sort by date').toString();
|
|
123
|
+
return " "+this.$t('sort by date').toString();
|
|
124
124
|
case 'NAME':
|
|
125
|
-
return this.$t('sort by alphabetical').toString();
|
|
125
|
+
return " "+this.$t('sort by alphabetical').toString();
|
|
126
126
|
default:
|
|
127
|
-
return this.$t('sort by date').toString();
|
|
127
|
+
return " "+this.$t('sort by date').toString();
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
isProduction(): boolean {
|
|
@@ -214,10 +214,7 @@ export default defineComponent({
|
|
|
214
214
|
},
|
|
215
215
|
date(): string {
|
|
216
216
|
if (this.podcast && 1970 !== moment(this.podcast.pubDate).year()){
|
|
217
|
-
|
|
218
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
219
|
-
}
|
|
220
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
217
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
221
218
|
}
|
|
222
219
|
return '';
|
|
223
220
|
},
|
|
@@ -130,7 +130,7 @@ export default defineComponent({
|
|
|
130
130
|
this.$store.commit('filterRubrique', newFilter);
|
|
131
131
|
const queries = this.$route.query;
|
|
132
132
|
const queryString = newFilter.map(value => value.rubriquageId+':'+value.rubriqueId).join();
|
|
133
|
-
this.$router.
|
|
133
|
+
this.$router.replace({ query: { ...queries, ...{ rubriquesId: queryString }} });
|
|
134
134
|
this.selectNewRubriquage();
|
|
135
135
|
},
|
|
136
136
|
selectNewRubriquage(){
|
|
@@ -258,10 +258,7 @@ export default defineComponent({
|
|
|
258
258
|
|
|
259
259
|
date(): string {
|
|
260
260
|
if (1970 !== moment(this.podcast.pubDate).year()){
|
|
261
|
-
|
|
262
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [à] HH[h]mm');
|
|
263
|
-
}
|
|
264
|
-
return moment(this.podcast.pubDate).format('D MMMM YYYY [at] HH[h]mm');
|
|
261
|
+
return moment(this.podcast.pubDate).format('D MMMM YYYY, HH[h]mm');
|
|
265
262
|
}
|
|
266
263
|
return '';
|
|
267
264
|
},
|
package/src/locale/en.ts
CHANGED
|
@@ -154,10 +154,10 @@ export default{
|
|
|
154
154
|
'Podcast in error': 'Podcast in error',
|
|
155
155
|
'See podcasts no visible':
|
|
156
156
|
'See podcasts not visible to the audience',
|
|
157
|
-
'Number podcasts': '{nb}
|
|
158
|
-
'Number emissions': '{nb}
|
|
159
|
-
'Number participants': '{nb}
|
|
160
|
-
'Number productors': '{nb}
|
|
157
|
+
'Number podcasts': '{nb} podcasts',
|
|
158
|
+
'Number emissions': '{nb} series',
|
|
159
|
+
'Number participants': '{nb} speakers',
|
|
160
|
+
'Number productors': '{nb} Producers',
|
|
161
161
|
'Display next': 'Display the following episodes',
|
|
162
162
|
'Display previous': 'Display previous episodes',
|
|
163
163
|
Play: 'Play',
|
|
@@ -240,9 +240,9 @@ export default{
|
|
|
240
240
|
'All live emission button': "All lives in the serie",
|
|
241
241
|
'player parameters': 'Setting of player',
|
|
242
242
|
'Start at': 'Start at',
|
|
243
|
-
'sort by score': '
|
|
244
|
-
'sort by alphabetical': '
|
|
245
|
-
'sort by date': '
|
|
243
|
+
'sort by score': 'by relevancy score',
|
|
244
|
+
'sort by alphabetical': 'sorted alphabetically',
|
|
245
|
+
'sort by date': 'sorted by date',
|
|
246
246
|
'Be the first to react': 'Be the first to react',
|
|
247
247
|
"Podcast's comments": "Podcast's comments",
|
|
248
248
|
'()': '({nb})',
|
package/src/locale/fr.ts
CHANGED
|
@@ -240,9 +240,9 @@ export default{
|
|
|
240
240
|
'All live emission button': "Tous les lives de l'émission",
|
|
241
241
|
'player parameters': 'Paramètres du player',
|
|
242
242
|
'Start at': 'Démarrer à',
|
|
243
|
-
'sort by score': '
|
|
244
|
-
'sort by alphabetical': '
|
|
245
|
-
'sort by date': '
|
|
243
|
+
'sort by score': 'triés par pertinence',
|
|
244
|
+
'sort by alphabetical': 'triés par ordre alphabétique',
|
|
245
|
+
'sort by date': 'triés par ordre antéchronologique',
|
|
246
246
|
'Be the first to react': 'Soyez le premier à réagir à ce podcast',
|
|
247
247
|
"Podcast's comments": "Commentaires de l'épisode",
|
|
248
248
|
'()': '({nb})',
|
package/src/locale/it.ts
CHANGED
|
@@ -151,10 +151,10 @@ export default{
|
|
|
151
151
|
'Podcast in error': 'Podcast in errore',
|
|
152
152
|
'See podcasts no visible':
|
|
153
153
|
'Vedi podcast non visibili al pubblico',
|
|
154
|
-
'Number podcasts': '{nb}
|
|
155
|
-
'Number emissions': '{nb}
|
|
156
|
-
'Number participants': '{nb}
|
|
157
|
-
'Number productors': '{nb}
|
|
154
|
+
'Number podcasts': '{nb} podcast',
|
|
155
|
+
'Number emissions': '{nb} serie',
|
|
156
|
+
'Number participants': '{nb} speaker',
|
|
157
|
+
'Number productors': '{nb} producer',
|
|
158
158
|
'Display next': 'Mostra episodi seguenti',
|
|
159
159
|
'Display previous': 'Mostra episodi precedenti',
|
|
160
160
|
Play: 'Play',
|