@saooti/octopus-sdk 30.0.20 → 30.0.24
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 +2 -2
- package/src/assets/bootstrap-diff.scss +32 -84
- package/src/assets/form.scss +6 -3
- package/src/assets/general.scss +14 -3
- package/src/assets/share.scss +0 -9
- package/src/components/display/aggregator/RssSection.vue +1 -3
- package/src/components/display/categories/CategoryChooser.vue +1 -3
- package/src/components/display/categories/CategoryFilter.vue +5 -4
- package/src/components/display/categories/CategoryList.vue +5 -16
- package/src/components/display/comments/CommentItem.vue +2 -2
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/edit/EditBox.vue +0 -2
- package/src/components/display/edit/EditCommentBox.vue +5 -5
- package/src/components/display/emission/EmissionChooser.vue +1 -3
- package/src/components/display/emission/EmissionInlineList.vue +2 -2
- package/src/components/display/emission/EmissionItem.vue +1 -2
- package/src/components/display/emission/EmissionList.vue +5 -2
- package/src/components/display/filter/AdvancedSearch.vue +2 -2
- package/src/components/display/filter/CategoryFilter.vue +0 -2
- package/src/components/display/filter/MonetizableFilter.vue +2 -4
- package/src/components/display/filter/ProductorSearch.vue +3 -3
- package/src/components/display/filter/RubriqueChoice.vue +1 -3
- package/src/components/display/filter/RubriqueFilter.vue +1 -3
- package/src/components/display/live/CountDown.vue +1 -3
- package/src/components/display/live/LiveHorizontalList.vue +6 -5
- package/src/components/display/organisation/OrganisationChooser.vue +1 -3
- package/src/components/display/playlist/PlaylistItem.vue +2 -4
- package/src/components/display/playlist/PlaylistList.vue +6 -5
- package/src/components/display/playlist/PodcastList.vue +5 -2
- package/src/components/display/podcasts/ParticipantDescription.vue +1 -3
- package/src/components/display/podcasts/PodcastFilterList.vue +1 -3
- package/src/components/display/podcasts/PodcastInlineList.vue +5 -7
- package/src/components/display/podcasts/PodcastList.vue +6 -5
- package/src/components/display/podcasts/PodcastModuleBox.vue +1 -3
- package/src/components/display/podcasts/TagList.vue +5 -2
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -3
- package/src/components/display/rubriques/RubriqueList.vue +3 -3
- package/src/components/display/sharing/QrCode.vue +1 -3
- package/src/components/display/sharing/ShareDistribution.vue +1 -6
- package/src/components/display/sharing/SharePlayer.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +3 -5
- package/src/components/display/studio/RecordingItemButton.vue +1 -3
- package/src/components/form/ClassicSearch.vue +21 -19
- package/src/components/misc/HomeDropdown.vue +74 -115
- package/src/components/misc/PlayerButtons.vue +1 -4
- package/src/components/misc/TopBar.vue +2 -2
- package/src/components/misc/modal/MessageModal.vue +2 -4
- package/src/components/misc/modal/QrCodeModal.vue +1 -3
- package/src/components/pages/Emission.vue +2 -6
- package/src/components/pages/Playlists.vue +1 -1
- package/src/components/pages/Rubrique.vue +1 -3
- package/src/locale/en.ts +2 -0
- package/src/locale/fr.ts +2 -0
- package/src/sass/_variables.scss +10 -7
- package/src/store/AppStore.ts +0 -3
- package/src/store/typeAppStore.ts +0 -1
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
}"
|
|
60
60
|
class="text-dark"
|
|
61
61
|
>
|
|
62
|
-
<div class="emission-producer primary-
|
|
62
|
+
<div class="emission-producer primary-darker">
|
|
63
63
|
© {{ playlist.organisation.name }}
|
|
64
64
|
</div>
|
|
65
65
|
</router-link>
|
|
@@ -137,6 +137,4 @@ export default defineComponent({
|
|
|
137
137
|
},
|
|
138
138
|
methods: {},
|
|
139
139
|
})
|
|
140
|
-
</script>
|
|
141
|
-
|
|
142
|
-
<style lang="scss"></style>
|
|
140
|
+
</script>
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<button
|
|
20
20
|
v-show="!allFetched && loaded"
|
|
21
21
|
class="btn"
|
|
22
|
-
:class="buttonPlus ? 'btn-link
|
|
22
|
+
:class="buttonPlus ? 'btn-link':'btn-more'"
|
|
23
23
|
:disabled="inFetching"
|
|
24
24
|
:title="$t('See more')"
|
|
25
25
|
@click="displayMore"
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
<template v-if="buttonPlus">
|
|
28
28
|
{{ $t('See more') }}
|
|
29
29
|
</template>
|
|
30
|
-
<div
|
|
30
|
+
<div
|
|
31
|
+
:class="buttonPlus?'ms-1':''"
|
|
32
|
+
class="saooti-plus"
|
|
33
|
+
/>
|
|
31
34
|
</button>
|
|
32
35
|
</div>
|
|
33
36
|
</template>
|
|
@@ -140,6 +143,4 @@ export default defineComponent({
|
|
|
140
143
|
},
|
|
141
144
|
},
|
|
142
145
|
})
|
|
143
|
-
</script>
|
|
144
|
-
|
|
145
|
-
<style lang="scss"></style>
|
|
146
|
+
</script>
|
|
@@ -40,14 +40,17 @@
|
|
|
40
40
|
<button
|
|
41
41
|
v-show="size < podcasts.length && loaded"
|
|
42
42
|
class="btn"
|
|
43
|
-
:class="buttonPlus ? 'btn-link
|
|
43
|
+
:class="buttonPlus ? 'btn-link':'btn-more'"
|
|
44
44
|
:title="$t('See more')"
|
|
45
45
|
@click="displayMore"
|
|
46
46
|
>
|
|
47
47
|
<template v-if="buttonPlus">
|
|
48
48
|
{{ $t('See more') }}
|
|
49
49
|
</template>
|
|
50
|
-
<div
|
|
50
|
+
<div
|
|
51
|
+
:class="buttonPlus?'ms-1':''"
|
|
52
|
+
class="saooti-plus"
|
|
53
|
+
/>
|
|
51
54
|
</button>
|
|
52
55
|
</div>
|
|
53
56
|
</template>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
class="hide-phone"
|
|
27
27
|
>
|
|
28
28
|
<button
|
|
29
|
-
class="btn
|
|
29
|
+
class="btn admin-button m-1"
|
|
30
30
|
:class="{ disabled: !previousAvailable }"
|
|
31
31
|
:title="$t('Display previous')"
|
|
32
32
|
@click="displayPrevious()"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<div class="saooti-arrow-left2" />
|
|
35
35
|
</button>
|
|
36
36
|
<button
|
|
37
|
-
class="btn
|
|
37
|
+
class="btn admin-button m-1"
|
|
38
38
|
:class="{ disabled: !nextAvailable }"
|
|
39
39
|
:title="$t('Display next')"
|
|
40
40
|
@click="displayNext()"
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
</transition-group>
|
|
64
64
|
<router-link
|
|
65
65
|
class="btn btn-link"
|
|
66
|
-
:class="buttonPlus ? 'btn-link
|
|
66
|
+
:class="buttonPlus ? 'btn-link' : ''"
|
|
67
67
|
:to="refTo"
|
|
68
68
|
>
|
|
69
69
|
{{ buttonText }}
|
|
70
70
|
<div
|
|
71
71
|
v-if="buttonPlus"
|
|
72
|
-
class="saooti-plus"
|
|
72
|
+
class="ms-1 saooti-plus"
|
|
73
73
|
/>
|
|
74
74
|
</router-link>
|
|
75
75
|
</div>
|
|
@@ -279,6 +279,4 @@ export default defineComponent({
|
|
|
279
279
|
},
|
|
280
280
|
},
|
|
281
281
|
})
|
|
282
|
-
</script>
|
|
283
|
-
|
|
284
|
-
<style lang="scss"></style>
|
|
282
|
+
</script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<button
|
|
24
24
|
v-show="!allFetched && loaded"
|
|
25
25
|
class="btn"
|
|
26
|
-
:class="buttonPlus ? 'btn-link
|
|
26
|
+
:class="buttonPlus ? 'btn-link' : 'btn-more'"
|
|
27
27
|
:disabled="inFetching"
|
|
28
28
|
:title="$t('See more')"
|
|
29
29
|
@click="displayMore"
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
<template v-if="buttonPlus">
|
|
32
32
|
{{ $t('See more') }}
|
|
33
33
|
</template>
|
|
34
|
-
<div
|
|
34
|
+
<div
|
|
35
|
+
:class="buttonPlus?'ms-1':''"
|
|
36
|
+
class="saooti-plus"
|
|
37
|
+
/>
|
|
35
38
|
</button>
|
|
36
39
|
</div>
|
|
37
40
|
</template>
|
|
@@ -201,6 +204,4 @@ export default defineComponent({
|
|
|
201
204
|
},
|
|
202
205
|
},
|
|
203
206
|
})
|
|
204
|
-
</script>
|
|
205
|
-
|
|
206
|
-
<style lang="scss"></style>
|
|
207
|
+
</script>
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
v-if="undefined !== tagList"
|
|
4
|
-
class="tag-list-component d-flex flex-wrap"
|
|
3
|
+
v-if="undefined !== tagList && 0!==tagList.length"
|
|
4
|
+
class="tag-list-component d-flex align-items-center flex-wrap"
|
|
5
5
|
>
|
|
6
|
+
<div class="fw-bold">
|
|
7
|
+
{{ $t('Podcast tags') + ": " }}
|
|
8
|
+
</div>
|
|
6
9
|
<div
|
|
7
10
|
v-for="(tag, index) in tagList"
|
|
8
11
|
:key="tag"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
v-for="rubrique in rubriqueDisplay"
|
|
21
21
|
:id="'rubrique' + rubrique.rubriqueId"
|
|
22
22
|
:key="rubrique.rubriqueId"
|
|
23
|
-
class="rubrique-item"
|
|
23
|
+
class="rubrique-item bg-white"
|
|
24
24
|
@click="addFilter(rubrique)"
|
|
25
25
|
>
|
|
26
26
|
{{ rubrique.name }}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
class="dropdown btn-group"
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
|
-
class="btn dropdown-toggle
|
|
34
|
+
class="btn dropdown-toggle admin-button dropdown-toggle-no-caret saooti-plus"
|
|
35
35
|
data-bs-toggle="dropdown"
|
|
36
36
|
aria-expanded="false"
|
|
37
37
|
:title="$t('See more')"
|
|
@@ -205,7 +205,7 @@ export default defineComponent({
|
|
|
205
205
|
white-space: nowrap;
|
|
206
206
|
flex-shrink: 0;
|
|
207
207
|
&:hover {
|
|
208
|
-
background: #
|
|
208
|
+
background: #eee !important;
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
</style>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<h3>{{ $t('Distribute') }}</h3>
|
|
4
4
|
<p class="sharing-distribution-container">
|
|
5
5
|
{{ $t('Rss feed:') }}
|
|
6
|
-
<span class="primary-
|
|
6
|
+
<span class="primary-darker hide-small-screen text-break">{{ rss }}</span>
|
|
7
7
|
<input
|
|
8
8
|
type="button"
|
|
9
9
|
:value="$t('Copy')"
|
|
@@ -192,10 +192,5 @@ export default defineComponent({
|
|
|
192
192
|
flex-wrap: wrap;
|
|
193
193
|
margin: 0.2rem 0.5rem;
|
|
194
194
|
}
|
|
195
|
-
@media (max-width: 450px) {
|
|
196
|
-
.primary-color {
|
|
197
|
-
display: none;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
195
|
}
|
|
201
196
|
</style>
|
|
@@ -366,7 +366,7 @@ export default defineComponent({
|
|
|
366
366
|
@import '../../../sass/_variables.scss';
|
|
367
367
|
.sticker {
|
|
368
368
|
align-self: center;
|
|
369
|
-
background:
|
|
369
|
+
background: $primaryColorMoreTransparent;
|
|
370
370
|
padding: 0.5rem;
|
|
371
371
|
transition: all 0.5s ease;
|
|
372
372
|
color: #41403e;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="module-box flex-grow-0">
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</h3>
|
|
7
|
-
</div>
|
|
3
|
+
<h3 class="mb-3">
|
|
4
|
+
{{ $t('Subscribe emission') }}
|
|
5
|
+
</h3>
|
|
8
6
|
<div class="d-flex flex-wrap">
|
|
9
7
|
<a
|
|
10
8
|
v-if="amazon"
|
|
@@ -60,23 +60,25 @@ export default defineComponent({
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
</script>
|
|
63
|
-
<style lang="scss"
|
|
64
|
-
.champs-searchPage
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
.saooti-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
63
|
+
<style lang="scss">
|
|
64
|
+
.champs-searchPage{
|
|
65
|
+
input {
|
|
66
|
+
border: 2px solid #dee2e6;
|
|
67
|
+
border-radius: 10px;
|
|
68
|
+
margin: 0 !important;
|
|
69
|
+
}
|
|
70
|
+
.saooti-search-bounty,
|
|
71
|
+
.saooti-cross {
|
|
72
|
+
font-size: 1rem;
|
|
73
|
+
}
|
|
74
|
+
.search-icon-container {
|
|
75
|
+
position: absolute;
|
|
76
|
+
top: 0;
|
|
77
|
+
bottom: 0;
|
|
78
|
+
right: 0;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
margin: 1rem;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
82
84
|
</style>
|
|
@@ -1,105 +1,97 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="
|
|
3
|
+
class="d-flex align-items-center"
|
|
4
4
|
>
|
|
5
|
-
<
|
|
5
|
+
<button
|
|
6
6
|
v-if="authenticated"
|
|
7
|
-
class="
|
|
7
|
+
class="btn btn-primary m-1"
|
|
8
|
+
@click="goToUrl('/main/priv/backoffice')"
|
|
9
|
+
>
|
|
10
|
+
{{ $t('My space') }}
|
|
11
|
+
</button>
|
|
12
|
+
<div
|
|
13
|
+
class="dropdown btn-group"
|
|
8
14
|
>
|
|
9
15
|
<button
|
|
10
|
-
class="btn
|
|
11
|
-
@click="goToUrl('/main/priv/backoffice')"
|
|
12
|
-
>
|
|
13
|
-
{{ $t('My space') }}
|
|
14
|
-
</button>
|
|
15
|
-
<button
|
|
16
|
-
class="btn dropdown-toggle btn-primary data-selenium-dropdown-topbar dropdown-toggle-split"
|
|
16
|
+
class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user-octopus"
|
|
17
17
|
data-bs-toggle="dropdown"
|
|
18
18
|
aria-expanded="false"
|
|
19
|
+
:title="$t('User menu')"
|
|
19
20
|
/>
|
|
20
21
|
<div class="dropdown-menu dropdown-menu-right px-4">
|
|
21
|
-
<
|
|
22
|
-
|
|
23
|
-
class="btn btn-primary w-100"
|
|
24
|
-
to="/main/priv/upload"
|
|
25
|
-
>
|
|
26
|
-
{{ $t('Upload') }}
|
|
27
|
-
</router-link>
|
|
28
|
-
<template v-if="!isPodcastmaker">
|
|
29
|
-
<router-link
|
|
30
|
-
to="/main/priv/backoffice"
|
|
31
|
-
class="show-phone dropdown-item"
|
|
32
|
-
>
|
|
33
|
-
{{ $t('My space') }}
|
|
34
|
-
</router-link>
|
|
35
|
-
<router-link
|
|
22
|
+
<template v-if="!authenticated">
|
|
23
|
+
<a
|
|
36
24
|
class="dropdown-item"
|
|
37
|
-
|
|
25
|
+
href="/sso/login"
|
|
38
26
|
>
|
|
39
|
-
{{ $t('
|
|
40
|
-
</
|
|
27
|
+
{{ $t('Login') }}
|
|
28
|
+
</a>
|
|
41
29
|
<router-link
|
|
42
|
-
v-if="
|
|
30
|
+
v-if="!isPodcastmaker"
|
|
43
31
|
class="dropdown-item"
|
|
44
|
-
to="/main/
|
|
32
|
+
to="/main/pub/create"
|
|
45
33
|
>
|
|
46
|
-
{{ $t('
|
|
34
|
+
{{ $t('Create an account') }}
|
|
47
35
|
</router-link>
|
|
48
36
|
</template>
|
|
49
|
-
<template v-
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
rel="noopener"
|
|
55
|
-
target="_blank"
|
|
56
|
-
>
|
|
57
|
-
{{ $t('Help') }}
|
|
58
|
-
</a>
|
|
59
|
-
<a
|
|
60
|
-
href="https://help.octopus.saooti.com/"
|
|
61
|
-
class="dropdown-item"
|
|
62
|
-
rel="noopener"
|
|
63
|
-
target="_blank"
|
|
64
|
-
>
|
|
65
|
-
{{ $t('TutoMag') }}
|
|
66
|
-
</a>
|
|
67
|
-
<hr class="dropdown-divider">
|
|
68
|
-
<a
|
|
69
|
-
class="dropdown-item"
|
|
70
|
-
href="/sso/logout"
|
|
37
|
+
<template v-else>
|
|
38
|
+
<router-link
|
|
39
|
+
v-if="isContribution && !isPodcastmaker"
|
|
40
|
+
class="btn btn-primary w-100"
|
|
41
|
+
to="/main/priv/upload"
|
|
71
42
|
>
|
|
72
|
-
{{ $t('
|
|
73
|
-
</
|
|
43
|
+
{{ $t('Upload') }}
|
|
44
|
+
</router-link>
|
|
45
|
+
<template v-if="!isPodcastmaker">
|
|
46
|
+
<router-link
|
|
47
|
+
to="/main/priv/backoffice"
|
|
48
|
+
class="show-phone dropdown-item"
|
|
49
|
+
>
|
|
50
|
+
{{ $t('My space') }}
|
|
51
|
+
</router-link>
|
|
52
|
+
<router-link
|
|
53
|
+
class="dropdown-item"
|
|
54
|
+
to="/main/priv/edit/profile"
|
|
55
|
+
>
|
|
56
|
+
{{ $t('Edit my profile') }}
|
|
57
|
+
</router-link>
|
|
58
|
+
<router-link
|
|
59
|
+
v-if="isOrganisation"
|
|
60
|
+
class="dropdown-item"
|
|
61
|
+
to="/main/priv/edit/organisation"
|
|
62
|
+
>
|
|
63
|
+
{{ $t('Edit my organisation') }}
|
|
64
|
+
</router-link>
|
|
65
|
+
</template>
|
|
66
|
+
<template v-if="!isEducation">
|
|
67
|
+
<hr class="dropdown-divider">
|
|
68
|
+
<a
|
|
69
|
+
href="https://help.octopus.saooti.com/Aide/"
|
|
70
|
+
class="dropdown-item"
|
|
71
|
+
rel="noopener"
|
|
72
|
+
target="_blank"
|
|
73
|
+
>
|
|
74
|
+
{{ $t('Help') }}
|
|
75
|
+
</a>
|
|
76
|
+
<a
|
|
77
|
+
href="https://help.octopus.saooti.com/"
|
|
78
|
+
class="dropdown-item"
|
|
79
|
+
rel="noopener"
|
|
80
|
+
target="_blank"
|
|
81
|
+
>
|
|
82
|
+
{{ $t('TutoMag') }}
|
|
83
|
+
</a>
|
|
84
|
+
<hr class="dropdown-divider">
|
|
85
|
+
<a
|
|
86
|
+
class="dropdown-item"
|
|
87
|
+
href="/sso/logout"
|
|
88
|
+
>
|
|
89
|
+
{{ $t('Logout') }}
|
|
90
|
+
</a>
|
|
91
|
+
</template>
|
|
74
92
|
</template>
|
|
75
93
|
</div>
|
|
76
94
|
</div>
|
|
77
|
-
<div
|
|
78
|
-
v-else
|
|
79
|
-
class="dropdown btn-group"
|
|
80
|
-
>
|
|
81
|
-
<button
|
|
82
|
-
class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user-octopus"
|
|
83
|
-
data-bs-toggle="dropdown"
|
|
84
|
-
aria-expanded="false"
|
|
85
|
-
title="Profile"
|
|
86
|
-
/>
|
|
87
|
-
<div class="dropdown-menu dropdown-menu-right px-4">
|
|
88
|
-
<a
|
|
89
|
-
class="dropdown-item"
|
|
90
|
-
href="/sso/login"
|
|
91
|
-
>
|
|
92
|
-
{{ $t('Login') }}
|
|
93
|
-
</a>
|
|
94
|
-
<router-link
|
|
95
|
-
v-if="!isPodcastmaker"
|
|
96
|
-
class="dropdown-item"
|
|
97
|
-
to="/main/pub/create"
|
|
98
|
-
>
|
|
99
|
-
{{ $t('Create an account') }}
|
|
100
|
-
</router-link>
|
|
101
|
-
</div>
|
|
102
|
-
</div>
|
|
103
95
|
</div>
|
|
104
96
|
</template>
|
|
105
97
|
|
|
@@ -136,37 +128,4 @@ export default defineComponent({
|
|
|
136
128
|
},
|
|
137
129
|
},
|
|
138
130
|
})
|
|
139
|
-
</script>
|
|
140
|
-
|
|
141
|
-
<style lang="scss">
|
|
142
|
-
.top-bar-dropdown {
|
|
143
|
-
display: flex;
|
|
144
|
-
align-items: center;
|
|
145
|
-
|
|
146
|
-
.main-button-dropdown {
|
|
147
|
-
padding-bottom: 0.4rem;
|
|
148
|
-
width: 140px;
|
|
149
|
-
text-align: left;
|
|
150
|
-
padding-left: 15px;
|
|
151
|
-
margin-right: 30px;
|
|
152
|
-
@media (max-width: 650px) {
|
|
153
|
-
display: none;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
.btn-group .dropdown-toggle-split {
|
|
157
|
-
align-items: center;
|
|
158
|
-
border-radius: 50%;
|
|
159
|
-
width: 40px !important;
|
|
160
|
-
height: 40px !important;
|
|
161
|
-
justify-content: center;
|
|
162
|
-
position: absolute;
|
|
163
|
-
right: 5px;
|
|
164
|
-
border: 4px solid white !important;
|
|
165
|
-
z-index: 2;
|
|
166
|
-
@media (max-width: 650px) {
|
|
167
|
-
position: relative;
|
|
168
|
-
right: auto;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
</style>
|
|
131
|
+
</script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
/>
|
|
24
24
|
</div>
|
|
25
25
|
<div
|
|
26
|
-
v-if="
|
|
26
|
+
v-if="isPlaying || isPaused"
|
|
27
27
|
class="play-button-box primary-bg text-light"
|
|
28
28
|
@click="stopPlayer"
|
|
29
29
|
>
|
|
@@ -61,9 +61,6 @@ export default defineComponent({
|
|
|
61
61
|
if (this.$store.state.player.podcast) return this.$store.state.player.podcast.imageUrl;
|
|
62
62
|
return '';
|
|
63
63
|
},
|
|
64
|
-
isStop(): boolean{
|
|
65
|
-
return this.$store.state.player.stop;
|
|
66
|
-
},
|
|
67
64
|
media(): undefined|Media{
|
|
68
65
|
return this.$store.state.player.media;
|
|
69
66
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
:reset="reset"
|
|
35
35
|
@selected="onOrganisationSelected"
|
|
36
36
|
/>
|
|
37
|
-
<div class="d-flex justify-content-
|
|
37
|
+
<div class="d-flex justify-content-end flex-grow-1">
|
|
38
38
|
<router-link
|
|
39
39
|
v-if="
|
|
40
40
|
isLiveTab &&
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
</div>
|
|
102
102
|
<div class="d-flex flex-column">
|
|
103
103
|
<div class="hosted-by">
|
|
104
|
-
<span>{{ $t('Hosted by') }}</span><span class="ms-1 me-1 primary-
|
|
104
|
+
<span>{{ $t('Hosted by') }}</span><span class="ms-1 me-1 primary-darker">Saooti</span>
|
|
105
105
|
</div>
|
|
106
106
|
<div class="d-flex justify-content-end flex-nowrap">
|
|
107
107
|
<HomeDropdown :is-education="isEducation" />
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
>
|
|
33
33
|
<button
|
|
34
34
|
v-if="canceltext"
|
|
35
|
-
class="btn
|
|
35
|
+
class="btn m-1"
|
|
36
36
|
@click="onCancel"
|
|
37
37
|
>
|
|
38
38
|
{{ canceltext }}
|
|
@@ -86,6 +86,4 @@ export default defineComponent({
|
|
|
86
86
|
},
|
|
87
87
|
},
|
|
88
88
|
})
|
|
89
|
-
</script>
|
|
90
|
-
|
|
91
|
-
<style lang="scss"></style>
|
|
89
|
+
</script>
|
|
@@ -233,12 +233,8 @@ export default defineComponent({
|
|
|
233
233
|
this.$emit('emissionTitle', this.name);
|
|
234
234
|
this.loaded = true;
|
|
235
235
|
if (!this.emission.annotations) return;
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
if (this.emission.annotations.FTP) {
|
|
240
|
-
this.ftpEmission = true;
|
|
241
|
-
}
|
|
236
|
+
this.rssEmission = this.emission.annotations.RSS? true: false;
|
|
237
|
+
this.ftpEmission = this.emission.annotations.FTP? true: false;
|
|
242
238
|
if (this.emission.annotations.exclusive) {
|
|
243
239
|
this.exclusive =
|
|
244
240
|
'true' === this.emission.annotations.exclusive ? true : false;
|
package/src/locale/en.ts
CHANGED