@saooti/octopus-sdk 38.0.1 → 38.0.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/assets/form.scss +1 -1
- package/src/components/display/sharing/ShareButtonsIntern.vue +12 -0
- package/src/locale/de.ts +1 -0
- package/src/locale/en.ts +1 -0
- package/src/locale/es.ts +1 -0
- package/src/locale/fr.ts +1 -0
- package/src/locale/it.ts +1 -0
- package/src/locale/sl.ts +1 -0
- package/src/router/router.ts +5 -0
- package/src/stores/ParamSdkStore.ts +19 -19
package/package.json
CHANGED
package/src/assets/form.scss
CHANGED
|
@@ -18,6 +18,15 @@
|
|
|
18
18
|
<div :class="button.icon" />
|
|
19
19
|
</a>
|
|
20
20
|
</template>
|
|
21
|
+
<router-link
|
|
22
|
+
v-if="!isPodcastmaker && authenticated && podcast && isProduction"
|
|
23
|
+
:class="getClass('saooti-share')"
|
|
24
|
+
:title="$t('Advanced sharing')"
|
|
25
|
+
:to="{
|
|
26
|
+
name: 'advancedShare',
|
|
27
|
+
params: { podcastId: podcast.podcastId }
|
|
28
|
+
}"
|
|
29
|
+
/>
|
|
21
30
|
</div>
|
|
22
31
|
</div>
|
|
23
32
|
<div v-if="podcast || emission || playlist" class="d-flex flex-column me-2">
|
|
@@ -206,6 +215,9 @@ export default defineComponent({
|
|
|
206
215
|
authenticated(): boolean {
|
|
207
216
|
return state.generalParameters.authenticated as boolean;
|
|
208
217
|
},
|
|
218
|
+
isProduction() : boolean{
|
|
219
|
+
return state.generalParameters.isProduction as boolean;
|
|
220
|
+
},
|
|
209
221
|
rssUrl(): string {
|
|
210
222
|
let api = state.generalParameters.ApiUri + "rss/";
|
|
211
223
|
if (this.emission) {
|
package/src/locale/de.ts
CHANGED
package/src/locale/en.ts
CHANGED
package/src/locale/es.ts
CHANGED
package/src/locale/fr.ts
CHANGED
package/src/locale/it.ts
CHANGED
package/src/locale/sl.ts
CHANGED
package/src/router/router.ts
CHANGED
|
@@ -3,16 +3,16 @@ import { Category } from "./class/general/category";
|
|
|
3
3
|
|
|
4
4
|
const state: ParamStore = {
|
|
5
5
|
generalParameters: {
|
|
6
|
-
organisationId:
|
|
7
|
-
authenticated:
|
|
8
|
-
isAdmin:
|
|
9
|
-
isRoleLive:
|
|
10
|
-
isCommments:
|
|
11
|
-
isOrganisation:
|
|
12
|
-
isPlaylist:
|
|
13
|
-
isProduction:
|
|
14
|
-
isContribution:
|
|
15
|
-
ApiUri: "https://api.
|
|
6
|
+
organisationId:"ecbd98d9-79bd-4312-ad5e-fc7c1c4a191c",
|
|
7
|
+
authenticated: true,
|
|
8
|
+
isAdmin: true,
|
|
9
|
+
isRoleLive: true,
|
|
10
|
+
isCommments: true,
|
|
11
|
+
isOrganisation:true,
|
|
12
|
+
isPlaylist: true,
|
|
13
|
+
isProduction: true,
|
|
14
|
+
isContribution: true,
|
|
15
|
+
ApiUri: "https://api.dev2.saooti.org/",
|
|
16
16
|
podcastmaker: false,
|
|
17
17
|
buttonPlus: true,
|
|
18
18
|
allCategories: [],
|
|
@@ -26,8 +26,8 @@ const state: ParamStore = {
|
|
|
26
26
|
SharePlayer: true,
|
|
27
27
|
ShareButtons: true,
|
|
28
28
|
ShareDistribution: true,
|
|
29
|
-
MiniplayerUri: "https://playerbeta.
|
|
30
|
-
hlsUri: "https://hls.live.
|
|
29
|
+
MiniplayerUri: "https://playerbeta.dev2.saooti.org/",
|
|
30
|
+
hlsUri: "https://hls.live.dev2.saooti.org/",
|
|
31
31
|
mainRubrique: 0,
|
|
32
32
|
resourceUrl: undefined,
|
|
33
33
|
podcastItemShowEmission: false,
|
|
@@ -79,13 +79,13 @@ const state: ParamStore = {
|
|
|
79
79
|
userName: "",
|
|
80
80
|
},
|
|
81
81
|
octopusApi: {
|
|
82
|
-
url: "https://api.
|
|
83
|
-
commentsUrl: "https://comments.
|
|
84
|
-
imageUrl: "https://imageproxy.
|
|
85
|
-
studioUrl: "https://studio.
|
|
86
|
-
playerUrl: "https://playerbeta.
|
|
87
|
-
speechToTextUrl: "https://speech2text.
|
|
88
|
-
recoUrl: "https://reco.
|
|
82
|
+
url: "https://api.dev2.saooti.org/",
|
|
83
|
+
commentsUrl: "https://comments.dev2.saooti.org/",
|
|
84
|
+
imageUrl: "https://imageproxy.dev2.saooti.org/",
|
|
85
|
+
studioUrl: "https://studio.dev2.saooti.org/",
|
|
86
|
+
playerUrl: "https://playerbeta.dev2.saooti.org/",
|
|
87
|
+
speechToTextUrl: "https://speech2text.dev2.saooti.org/",
|
|
88
|
+
recoUrl: "https://reco.dev2.saooti.org/",
|
|
89
89
|
organisationId: undefined,
|
|
90
90
|
rubriqueIdFilter: undefined,
|
|
91
91
|
},
|