@saooti/octopus-sdk 35.2.2 → 35.2.4
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
|
@@ -138,7 +138,6 @@ import { Conference } from '@/stores/class/conference/conference';
|
|
|
138
138
|
import CommentBasicView from './CommentBasicView.vue';
|
|
139
139
|
import Constants from '../../../../public/config';
|
|
140
140
|
import { useCommentStore } from '@/stores/CommentStore';
|
|
141
|
-
import { useGeneralStore } from '@/stores/GeneralStore';
|
|
142
141
|
import { mapState, mapActions } from 'pinia';
|
|
143
142
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
144
143
|
const CommentInput = defineAsyncComponent(() => import('./CommentInput.vue'));
|
|
@@ -219,7 +218,7 @@ export default defineComponent({
|
|
|
219
218
|
},
|
|
220
219
|
},
|
|
221
220
|
methods: {
|
|
222
|
-
...mapActions(
|
|
221
|
+
...mapActions(useCommentStore, ['setCommentIdentity']),
|
|
223
222
|
answerComment(): void {
|
|
224
223
|
this.collapseVisible = true;
|
|
225
224
|
this.focus = !this.focus;
|
|
@@ -112,7 +112,7 @@ export default defineComponent({
|
|
|
112
112
|
this.knownIdentity = this.getCookie('comment-octopus-name');
|
|
113
113
|
},
|
|
114
114
|
methods: {
|
|
115
|
-
...mapActions(
|
|
115
|
+
...mapActions(useCommentStore, ['setCommentIdentity', 'setCommentLoaded']),
|
|
116
116
|
updateFetch(value: { count: number, comments: Array<CommentPodcast> }): void {
|
|
117
117
|
this.loaded = true;
|
|
118
118
|
this.setCommentLoaded({
|
|
@@ -66,8 +66,7 @@
|
|
|
66
66
|
</div>
|
|
67
67
|
<button
|
|
68
68
|
:title="''!=transcriptText ? $t('View transcript'): $t('Enlarge')"
|
|
69
|
-
class="btn play-button-box btn-transparent text-light"
|
|
70
|
-
:class="''!=transcriptText ? 'saooti-text-to-speech':'saooti-up'"
|
|
69
|
+
class="btn play-button-box btn-transparent text-light saooti-up me-0"
|
|
71
70
|
@click="changePlayerLargeVersion"
|
|
72
71
|
/>
|
|
73
72
|
<button
|
|
@@ -157,7 +156,7 @@ export default defineComponent({
|
|
|
157
156
|
justify-content: center;
|
|
158
157
|
margin: 0 0.5rem;
|
|
159
158
|
border-radius: 50% !important;
|
|
160
|
-
font-size:
|
|
159
|
+
font-size: 1rem !important;
|
|
161
160
|
flex-shrink: 0;
|
|
162
161
|
cursor: pointer;
|
|
163
162
|
}
|
|
@@ -12,7 +12,7 @@ const state:ParamStore = {
|
|
|
12
12
|
isPlaylist: false,
|
|
13
13
|
isProduction: false,
|
|
14
14
|
isContribution: false,
|
|
15
|
-
ApiUri: 'https://api.
|
|
15
|
+
ApiUri: 'https://api.dev2.saooti.org/',
|
|
16
16
|
podcastmaker: false,
|
|
17
17
|
buttonPlus: true,
|
|
18
18
|
allCategories: [],
|
|
@@ -26,9 +26,9 @@ const state:ParamStore = {
|
|
|
26
26
|
SharePlayer: true,
|
|
27
27
|
ShareButtons: true,
|
|
28
28
|
ShareDistribution: true,
|
|
29
|
-
MiniplayerUri: 'https://playerbeta.
|
|
29
|
+
MiniplayerUri: 'https://playerbeta.dev2.saooti.org/',
|
|
30
30
|
downloadButton: false,
|
|
31
|
-
hlsUri: 'https://hls.
|
|
31
|
+
hlsUri: 'https://hls.dev2.saooti.org/',
|
|
32
32
|
mainRubrique: 0,
|
|
33
33
|
resourceUrl: undefined,
|
|
34
34
|
podcastItemShowEmission: false,
|
|
@@ -83,13 +83,13 @@ const state:ParamStore = {
|
|
|
83
83
|
userName: '',
|
|
84
84
|
},
|
|
85
85
|
octopusApi: {
|
|
86
|
-
url: 'https://api.
|
|
87
|
-
commentsUrl: 'https://comments.
|
|
88
|
-
imageUrl:'https://imageproxy.
|
|
89
|
-
studioUrl: 'https://studio.
|
|
90
|
-
playerUrl: 'https://playerbeta.
|
|
91
|
-
speechToTextUrl:'https://speech2text.
|
|
92
|
-
recoUrl: 'https://reco.
|
|
86
|
+
url: 'https://api.dev2.saooti.org/',
|
|
87
|
+
commentsUrl: 'https://comments.dev2.saooti.org/',
|
|
88
|
+
imageUrl:'https://imageproxy.dev2.saooti.org/',
|
|
89
|
+
studioUrl: 'https://studio.dev2.saooti.org/',
|
|
90
|
+
playerUrl: 'https://playerbeta.dev2.saooti.org/',
|
|
91
|
+
speechToTextUrl:'https://speech2text.dev2.saooti.org/',
|
|
92
|
+
recoUrl: 'https://reco.dev2.saooti.org/',
|
|
93
93
|
organisationId: undefined,
|
|
94
94
|
rubriqueIdFilter: undefined,
|
|
95
95
|
},
|