@saooti/octopus-sdk 30.0.13 → 30.0.17
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 +14 -14
- package/src/assets/bootstrap-diff.scss +6 -0
- package/src/assets/multiselect.scss +0 -1
- package/src/components/display/categories/CategoryChooser.vue +1 -1
- package/src/components/display/categories/CategoryFilter.vue +1 -1
- package/src/components/display/categories/CategoryList.vue +1 -1
- package/src/components/display/comments/CommentItem.vue +1 -1
- package/src/components/display/comments/CommentList.vue +1 -1
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/edit/EditCommentBox.vue +4 -4
- package/src/components/display/emission/EmissionChooser.vue +1 -1
- package/src/components/display/emission/EmissionInlineList.vue +2 -2
- package/src/components/display/emission/EmissionItem.vue +1 -1
- package/src/components/display/emission/EmissionList.vue +1 -1
- package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
- package/src/components/display/filter/RubriqueChoice.vue +1 -1
- package/src/components/display/live/LiveHorizontalList.vue +1 -1
- package/src/components/display/live/LiveItem.vue +1 -1
- package/src/components/display/organisation/OrganisationChooser.vue +1 -1
- package/src/components/display/organisation/OrganisationChooserLight.vue +4 -5
- package/src/components/display/participant/ParticipantItem.vue +1 -1
- package/src/components/display/participant/ParticipantList.vue +1 -1
- package/src/components/display/playlist/PlaylistItem.vue +1 -1
- package/src/components/display/playlist/PlaylistList.vue +1 -1
- package/src/components/display/playlist/PodcastList.vue +1 -1
- package/src/components/display/podcasts/AnimatorsItem.vue +1 -1
- package/src/components/display/podcasts/ParticipantDescription.vue +2 -2
- package/src/components/display/podcasts/PodcastImage.vue +4 -4
- package/src/components/display/podcasts/PodcastInlineList.vue +2 -2
- package/src/components/display/podcasts/PodcastList.vue +1 -1
- package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
- package/src/components/display/rubriques/RubriqueList.vue +1 -1
- package/src/components/display/sharing/PlayerParameters.vue +2 -2
- package/src/components/display/sharing/ShareButtons.vue +1 -10
- package/src/components/display/sharing/ShareDistribution.vue +1 -1
- package/src/components/display/sharing/SharePlayerTypes.vue +1 -1
- package/src/components/display/sharing/SubscribeButtons.vue +9 -9
- package/src/components/form/ClassicSearch.vue +1 -1
- package/src/components/misc/Footer.vue +1 -1
- package/src/components/misc/HomeDropdown.vue +1 -1
- package/src/components/misc/PlayerButtons.vue +2 -2
- package/src/components/misc/TopBar.vue +2 -2
- package/src/components/misc/modal/ClipboardModal.vue +2 -2
- package/src/components/misc/modal/MessageModal.vue +1 -1
- package/src/components/misc/modal/NewsletterModal.vue +4 -4
- package/src/components/misc/modal/QrCodeModal.vue +1 -1
- package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
- package/src/components/pages/Emission.vue +3 -2
- package/src/components/pages/Participant.vue +0 -1
package/README.md
CHANGED
|
@@ -510,4 +510,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
510
510
|
* 30.0.10 PB clearInterval
|
|
511
511
|
* 30.0.11 Version pour release
|
|
512
512
|
* 30.0.12 Export ClasicLoading
|
|
513
|
-
* 30.0.13 Améliorations css
|
|
513
|
+
* 30.0.13 Améliorations css
|
|
514
|
+
* 30.0.14 Améliorations css
|
|
515
|
+
* 30.0.15 Améliorations css
|
|
516
|
+
* 30.0.16 Change Aria-Label in title
|
|
517
|
+
* 30.0.17 Oups
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saooti/octopus-sdk",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.17",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript SDK for using octopus",
|
|
6
6
|
"author": "Saooti",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
},
|
|
15
15
|
"main": "./dist/octopus.common.js",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@popperjs/core": "^2.
|
|
17
|
+
"@popperjs/core": "^2.11.0",
|
|
18
18
|
"@saooti/octopus-api": "^0.30.2",
|
|
19
|
-
"@vue/cli": "^5.0.0-rc.
|
|
20
|
-
"@vue/compat": "^3.2.
|
|
19
|
+
"@vue/cli": "^5.0.0-rc.1",
|
|
20
|
+
"@vue/compat": "^3.2.26",
|
|
21
21
|
"axios": "^0.24.0",
|
|
22
22
|
"bootstrap": "^5.1.3",
|
|
23
23
|
"core-js": "^3.19.01",
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"webpack": "^5.62.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/bootstrap": "^5.1.
|
|
45
|
+
"@types/bootstrap": "^5.1.8",
|
|
46
46
|
"@types/hls.js": "^1.0.0",
|
|
47
|
-
"@types/jquery": "^3.5.
|
|
47
|
+
"@types/jquery": "^3.5.11",
|
|
48
48
|
"@types/vue-datetime": "^1.0.1",
|
|
49
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
50
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
-
"@vue/cli-plugin-babel": "^5.0.0-rc.
|
|
52
|
-
"@vue/cli-plugin-eslint": "^5.0.0-rc.
|
|
53
|
-
"@vue/cli-plugin-typescript": "^5.0.0-rc.
|
|
54
|
-
"@vue/cli-service": "^5.0.0-rc.
|
|
55
|
-
"@vue/compiler-sfc": "^3.2.
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
50
|
+
"@typescript-eslint/parser": "^5.8.1",
|
|
51
|
+
"@vue/cli-plugin-babel": "^5.0.0-rc.1",
|
|
52
|
+
"@vue/cli-plugin-eslint": "^5.0.0-rc.1",
|
|
53
|
+
"@vue/cli-plugin-typescript": "^5.0.0-rc.1",
|
|
54
|
+
"@vue/cli-service": "^5.0.0-rc.1",
|
|
55
|
+
"@vue/compiler-sfc": "^3.2.26",
|
|
56
56
|
"@vue/eslint-config-typescript": "^8.0.0",
|
|
57
57
|
"babel-eslint": "^10.1.0",
|
|
58
58
|
"eslint": "^8.2.0",
|
|
59
59
|
"eslint-plugin-vue": "^7.20.0",
|
|
60
|
-
"typescript": "^4.
|
|
60
|
+
"typescript": "^4.5.4"
|
|
61
61
|
},
|
|
62
62
|
"eslintConfig": {
|
|
63
63
|
"parser": "vue-eslint-parser",
|
|
@@ -255,10 +255,16 @@
|
|
|
255
255
|
.accordion-button {
|
|
256
256
|
padding: 0.5rem;
|
|
257
257
|
}
|
|
258
|
+
.accordion-item:not(:first-of-type) {
|
|
259
|
+
border-top: 0.1rem solid rgba(0, 0, 0, 0.125);
|
|
260
|
+
}
|
|
258
261
|
.breadcrumb{
|
|
259
262
|
padding: 1rem;
|
|
260
263
|
align-items: center;
|
|
261
264
|
}
|
|
265
|
+
.bg-secondary{
|
|
266
|
+
background: #eee !important;
|
|
267
|
+
}
|
|
262
268
|
}
|
|
263
269
|
|
|
264
270
|
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
class="btn dropdown-toggle category-rubrique-item-plus dropdown-toggle-no-caret saooti-plus"
|
|
23
23
|
data-bs-toggle="dropdown"
|
|
24
24
|
aria-expanded="false"
|
|
25
|
-
:
|
|
25
|
+
:title="$t('See more')"
|
|
26
26
|
/>
|
|
27
27
|
<ul class="dropdown-menu dropdown-menu-right px-4">
|
|
28
28
|
<div
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
</div>
|
|
150
150
|
<div
|
|
151
151
|
:id="'commentItemDetail'+comment.comId"
|
|
152
|
-
:
|
|
152
|
+
:titleledby="'commentItem'+comment.comId"
|
|
153
153
|
>
|
|
154
154
|
<CommentInput
|
|
155
155
|
v-if="!isFlat || (isFlat && !comment.commentIdReferer) && collapseVisible"
|
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
<div class="d-flex">
|
|
3
3
|
<button
|
|
4
4
|
class="btn btn-comment-edit saooti-edit-bounty"
|
|
5
|
-
|
|
5
|
+
title="edit"
|
|
6
6
|
@click="editComment"
|
|
7
7
|
/>
|
|
8
8
|
<button
|
|
9
9
|
v-if="'Pending' === comment.status || 'Invalid' === comment.status"
|
|
10
10
|
class="btn btn-comment-edit saooti-valid-stud"
|
|
11
|
-
|
|
11
|
+
title="valid"
|
|
12
12
|
@click="validComment"
|
|
13
13
|
/>
|
|
14
14
|
<button
|
|
15
15
|
v-if="'Pending' === comment.status || 'Valid' === comment.status"
|
|
16
16
|
class="btn btn-comment-edit saooti-cross"
|
|
17
|
-
|
|
17
|
+
title="invalid"
|
|
18
18
|
@click="invalidComment"
|
|
19
19
|
/>
|
|
20
20
|
<button
|
|
21
21
|
class="btn btn-comment-edit saooti-bin"
|
|
22
|
-
|
|
22
|
+
title="delete"
|
|
23
23
|
@click="deleteComment"
|
|
24
24
|
/>
|
|
25
25
|
</div>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<button
|
|
9
9
|
class="btn btn-arrow"
|
|
10
10
|
:class="{ disabled: !previousAvailable }"
|
|
11
|
-
:
|
|
11
|
+
:title="$t('Display previous')"
|
|
12
12
|
@click="displayPrevious()"
|
|
13
13
|
>
|
|
14
14
|
<div class="saooti-arrow-left2" />
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<button
|
|
17
17
|
class="btn btn-arrow"
|
|
18
18
|
:class="{ disabled: !nextAvailable }"
|
|
19
|
-
:
|
|
19
|
+
:title="$t('Display next')"
|
|
20
20
|
@click="displayNext()"
|
|
21
21
|
>
|
|
22
22
|
<div class="saooti-arrow-right2" />
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
>
|
|
88
88
|
<div
|
|
89
89
|
class="text-light saooti-play2-bounty"
|
|
90
|
-
:
|
|
90
|
+
:title="$t('Play')"
|
|
91
91
|
/>
|
|
92
92
|
</div>
|
|
93
93
|
<div
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
>
|
|
98
98
|
<div
|
|
99
99
|
class="text-light saooti-pause-bounty"
|
|
100
|
-
:
|
|
100
|
+
:title="$t('Pause')"
|
|
101
101
|
/>
|
|
102
102
|
</div>
|
|
103
103
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
v-if="(!value || init) && organisation"
|
|
4
|
-
class="default-multiselect-width"
|
|
4
|
+
class="default-multiselect-width organisation-chooser-light"
|
|
5
5
|
:style="{ width: width }"
|
|
6
6
|
>
|
|
7
7
|
<select
|
|
@@ -20,14 +20,13 @@
|
|
|
20
20
|
<label
|
|
21
21
|
:for="'organisation_chooser_light' + page"
|
|
22
22
|
class="d-inline"
|
|
23
|
-
:
|
|
23
|
+
:title="$t('select productor')"
|
|
24
24
|
/>
|
|
25
25
|
</div>
|
|
26
26
|
</template>
|
|
27
27
|
|
|
28
28
|
<script lang="ts">
|
|
29
29
|
import octopusApi from '@saooti/octopus-api';
|
|
30
|
-
|
|
31
30
|
import { Organisation } from '@/store/class/general/organisation';
|
|
32
31
|
import { defineComponent } from 'vue'
|
|
33
32
|
export default defineComponent({
|
|
@@ -83,8 +82,8 @@ export default defineComponent({
|
|
|
83
82
|
})
|
|
84
83
|
</script>
|
|
85
84
|
|
|
86
|
-
<style lang="scss"
|
|
87
|
-
select {
|
|
85
|
+
<style lang="scss">
|
|
86
|
+
.organisation-chooser-light select {
|
|
88
87
|
-webkit-appearance: none;
|
|
89
88
|
-moz-appearance: none;
|
|
90
89
|
appearance: none;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
params: { participantId: animator.participantId },
|
|
13
13
|
query: { productor: $store.state.filter.organisationId },
|
|
14
14
|
}"
|
|
15
|
-
:
|
|
15
|
+
:title="$t('Participant')"
|
|
16
16
|
>
|
|
17
17
|
<div class="podcast-item-animator text-dark">
|
|
18
18
|
{{ getAnimatorName(animator) }}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
:id="idPopover"
|
|
9
9
|
tabindex="-1"
|
|
10
10
|
class="saooti-help m-0"
|
|
11
|
-
:
|
|
11
|
+
:title="$t('Help')"
|
|
12
12
|
/>
|
|
13
13
|
<span class="mx-1">:</span>
|
|
14
14
|
<Popover
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<router-link
|
|
38
38
|
v-for="participant in participants"
|
|
39
39
|
:key="participant.participantId"
|
|
40
|
-
:
|
|
40
|
+
:title="$t('Participant')"
|
|
41
41
|
class="fw-bold"
|
|
42
42
|
:to="{
|
|
43
43
|
name: 'participant',
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
>
|
|
39
39
|
<div
|
|
40
40
|
v-show="!playingPodcast"
|
|
41
|
-
:
|
|
41
|
+
:title="$t('Play')"
|
|
42
42
|
class="saooti-play2-bounty primary-color"
|
|
43
43
|
/>
|
|
44
44
|
<div
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
class="icon-container error-icon"
|
|
61
61
|
>
|
|
62
62
|
<div
|
|
63
|
-
:
|
|
63
|
+
:title="textVisible"
|
|
64
64
|
class="big-icon-error"
|
|
65
65
|
:class="iconName"
|
|
66
66
|
/>
|
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
<div
|
|
76
76
|
v-if="!isDescription && displayDescription && isMobile"
|
|
77
77
|
class="background-icon primary-bg saooti-arrow-up2"
|
|
78
|
-
:
|
|
78
|
+
:title="$t('Show description')"
|
|
79
79
|
@click="showDescription"
|
|
80
80
|
/>
|
|
81
81
|
<div
|
|
82
82
|
v-if="isDescription && displayDescription && isMobile"
|
|
83
83
|
class="background-icon primary-bg saooti-arrow-down2"
|
|
84
|
-
:
|
|
84
|
+
:title="$t('Hide description')"
|
|
85
85
|
@click="showDescription"
|
|
86
86
|
/>
|
|
87
87
|
</div>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<button
|
|
29
29
|
class="btn btn-arrow"
|
|
30
30
|
:class="{ disabled: !previousAvailable }"
|
|
31
|
-
:
|
|
31
|
+
:title="$t('Display previous')"
|
|
32
32
|
@click="displayPrevious()"
|
|
33
33
|
>
|
|
34
34
|
<div class="saooti-arrow-left2" />
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<button
|
|
37
37
|
class="btn btn-arrow"
|
|
38
38
|
:class="{ disabled: !nextAvailable }"
|
|
39
|
-
:
|
|
39
|
+
:title="$t('Display next')"
|
|
40
40
|
@click="displayNext()"
|
|
41
41
|
>
|
|
42
42
|
<div class="saooti-arrow-right2" />
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
class="btn dropdown-toggle category-rubrique-item-plus dropdown-toggle-no-caret saooti-plus"
|
|
35
35
|
data-bs-toggle="dropdown"
|
|
36
36
|
aria-expanded="false"
|
|
37
|
-
:
|
|
37
|
+
:title="$t('See more')"
|
|
38
38
|
/>
|
|
39
39
|
<ul class="dropdown-menu dropdown-menu-right px-4">
|
|
40
40
|
<div
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<div
|
|
23
23
|
id="playerParameters"
|
|
24
24
|
class="accordion-collapse collapse"
|
|
25
|
-
|
|
25
|
+
titleledby="labelPlayerParameter"
|
|
26
26
|
data-bs-parent="#accordionParameters"
|
|
27
27
|
>
|
|
28
28
|
<div class="accordion-body">
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
>
|
|
67
67
|
<label
|
|
68
68
|
for="number-input"
|
|
69
|
-
:
|
|
69
|
+
:title="$t('Number of player podcasts')"
|
|
70
70
|
/>
|
|
71
71
|
<span class="flex-shrink-0">{{ $t('Last podcasts') }}</span>
|
|
72
72
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
id="popover-share-help"
|
|
16
16
|
tabindex="-1"
|
|
17
17
|
class="saooti-help ms-2"
|
|
18
|
-
:
|
|
18
|
+
:title="$t('Help')"
|
|
19
19
|
/>
|
|
20
20
|
<Popover
|
|
21
21
|
v-if="authenticated"
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
rel="noopener"
|
|
41
41
|
target="_blank"
|
|
42
42
|
download
|
|
43
|
-
:aria-label="$t('Downloading')"
|
|
44
43
|
>
|
|
45
44
|
<div class="saooti-download-bounty" />
|
|
46
45
|
</a>
|
|
@@ -53,7 +52,6 @@
|
|
|
53
52
|
verticalDisplay ? '' : 'mx-2',
|
|
54
53
|
]"
|
|
55
54
|
title="Facebook"
|
|
56
|
-
aria-label="Facebook"
|
|
57
55
|
>
|
|
58
56
|
<span
|
|
59
57
|
v-if="!bigRound"
|
|
@@ -73,7 +71,6 @@
|
|
|
73
71
|
]"
|
|
74
72
|
:href="twitterURL"
|
|
75
73
|
title="Twitter"
|
|
76
|
-
aria-label="Twitter"
|
|
77
74
|
>
|
|
78
75
|
<span
|
|
79
76
|
v-if="!bigRound"
|
|
@@ -93,7 +90,6 @@
|
|
|
93
90
|
]"
|
|
94
91
|
:href="linkedinURL"
|
|
95
92
|
title="Linkedin"
|
|
96
|
-
aria-label="Linkedin"
|
|
97
93
|
>
|
|
98
94
|
<span
|
|
99
95
|
v-if="!bigRound"
|
|
@@ -114,7 +110,6 @@
|
|
|
114
110
|
]"
|
|
115
111
|
:href="rssUrl"
|
|
116
112
|
:title="$t('Subscribe to this emission')"
|
|
117
|
-
aria-label="RSS"
|
|
118
113
|
@click.prevent="openPopup()"
|
|
119
114
|
>
|
|
120
115
|
<span
|
|
@@ -133,7 +128,6 @@
|
|
|
133
128
|
bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
|
|
134
129
|
verticalDisplay ? '' : 'mx-2',
|
|
135
130
|
]"
|
|
136
|
-
aria-label="copy"
|
|
137
131
|
:title="$t('Copy this page URL')"
|
|
138
132
|
@click="onCopyCode(urlPage,afterCopy)"
|
|
139
133
|
>
|
|
@@ -154,7 +148,6 @@
|
|
|
154
148
|
bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
|
|
155
149
|
verticalDisplay ? '' : 'mx-2',
|
|
156
150
|
]"
|
|
157
|
-
:aria-label="$t('Share newsletter')"
|
|
158
151
|
:title="$t('Share newsletter')"
|
|
159
152
|
@click="newsletter = true"
|
|
160
153
|
>
|
|
@@ -175,7 +168,6 @@
|
|
|
175
168
|
bigRound ? 'btn btn-big-round' : 'btn btn-rss share-btn mb-2',
|
|
176
169
|
verticalDisplay ? '' : 'mx-2',
|
|
177
170
|
]"
|
|
178
|
-
:aria-label="$t('Share QR Code')"
|
|
179
171
|
:title="$t('Share QR Code')"
|
|
180
172
|
@click="qrCode = true"
|
|
181
173
|
>
|
|
@@ -197,7 +189,6 @@
|
|
|
197
189
|
bigRound ? 'btn btn-big-round' : 'btn btn-whatsapp share-btn mb-2',
|
|
198
190
|
verticalDisplay ? '' : 'mx-2',
|
|
199
191
|
]"
|
|
200
|
-
aria-label="Whatsapp"
|
|
201
192
|
title="Whatsapp"
|
|
202
193
|
>
|
|
203
194
|
<span
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
target="_blank"
|
|
13
13
|
class="btn me-3 mb-2 share-btn"
|
|
14
14
|
:href="amazon"
|
|
15
|
-
|
|
15
|
+
title="amazon"
|
|
16
16
|
>
|
|
17
17
|
<span class="saooti-amazon">
|
|
18
18
|
<div class="path1" />
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
target="_blank"
|
|
27
27
|
class="btn me-3 mb-2 share-btn"
|
|
28
28
|
:href="applePodcast"
|
|
29
|
-
|
|
29
|
+
title="Apple"
|
|
30
30
|
>
|
|
31
31
|
<span class="saooti-apple" />
|
|
32
32
|
</a>
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
target="_blank"
|
|
37
37
|
class="btn me-3 mb-2 share-btn"
|
|
38
38
|
:href="deezer"
|
|
39
|
-
|
|
39
|
+
title="Deezer"
|
|
40
40
|
>
|
|
41
41
|
<span class="saooti-deezer" />
|
|
42
42
|
</a>
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
target="_blank"
|
|
47
47
|
class="btn me-3 mb-2 share-btn"
|
|
48
48
|
:href="playerFm"
|
|
49
|
-
|
|
49
|
+
title="playerFm"
|
|
50
50
|
>
|
|
51
51
|
<span class="saooti-playerfm" />
|
|
52
52
|
</a>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
target="_blank"
|
|
57
57
|
class="btn me-3 mb-2 share-btn"
|
|
58
58
|
:href="podcastAddict"
|
|
59
|
-
|
|
59
|
+
title="podcastAddict"
|
|
60
60
|
>
|
|
61
61
|
<span class="saooti-podcast-addict" />
|
|
62
62
|
</a>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
target="_blank"
|
|
67
67
|
class="btn me-3 mb-2 btn-radioline share-btn"
|
|
68
68
|
:href="radioline"
|
|
69
|
-
|
|
69
|
+
title="Radioline"
|
|
70
70
|
>
|
|
71
71
|
<span class="saooti-radioline" />
|
|
72
72
|
</a>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
target="_blank"
|
|
77
77
|
class="btn me-3 mb-2 share-btn"
|
|
78
78
|
:href="spotify"
|
|
79
|
-
|
|
79
|
+
title="Spotify"
|
|
80
80
|
>
|
|
81
81
|
<span class="saooti-spotify" />
|
|
82
82
|
</a>
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
target="_blank"
|
|
87
87
|
class="btn me-3 mb-2 share-btn"
|
|
88
88
|
:href="stitcher"
|
|
89
|
-
|
|
89
|
+
title="stitcher"
|
|
90
90
|
>
|
|
91
91
|
<span class="saooti-stitcher-logo">
|
|
92
92
|
<div class="path1" />
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
target="_blank"
|
|
115
115
|
class="btn me-3 mb-2 share-btn"
|
|
116
116
|
:href="tunein"
|
|
117
|
-
|
|
117
|
+
title="Tunin"
|
|
118
118
|
>
|
|
119
119
|
<span class="saooti-tunin" />
|
|
120
120
|
</a>
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
href="https://www.acpm.fr/L-ACPM/Certifications-et-Labels/Les-Podcasts"
|
|
107
107
|
rel="noopener"
|
|
108
108
|
target="_blank"
|
|
109
|
-
:
|
|
109
|
+
:title="$t('Octopus is ACPM Podcast accredited')"
|
|
110
110
|
>
|
|
111
111
|
<img
|
|
112
112
|
class="acpm_image"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
@click="switchPausePlay"
|
|
16
16
|
>
|
|
17
17
|
<div
|
|
18
|
-
:
|
|
18
|
+
:title="$t('Play')"
|
|
19
19
|
:class="{
|
|
20
20
|
'saooti-play2-bounty': isPaused,
|
|
21
21
|
'saooti-pause-bounty': isPlaying,
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
>
|
|
30
30
|
<div
|
|
31
31
|
class="saooti-stop-bounty"
|
|
32
|
-
:
|
|
32
|
+
:title="$t('Stop')"
|
|
33
33
|
/>
|
|
34
34
|
</div>
|
|
35
35
|
</template>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
>
|
|
6
6
|
<div
|
|
7
7
|
class="saooti-burger-menu"
|
|
8
|
-
:
|
|
8
|
+
:title="$t('open left Menu')"
|
|
9
9
|
@click="onDisplayMenu(false)"
|
|
10
10
|
/>
|
|
11
11
|
<router-link
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
<div class="d-flex justify-content-end flex-nowrap">
|
|
107
107
|
<HomeDropdown :is-education="isEducation" />
|
|
108
108
|
<router-link
|
|
109
|
-
:
|
|
109
|
+
:title="$t('Search')"
|
|
110
110
|
:to="{
|
|
111
111
|
name: 'podcasts',
|
|
112
112
|
query: { productor: $store.state.filter.organisationId },
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<button
|
|
11
11
|
type="button"
|
|
12
12
|
class="btn-close"
|
|
13
|
-
|
|
13
|
+
title="Close"
|
|
14
14
|
@click="closePopup"
|
|
15
15
|
/>
|
|
16
16
|
</div>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
type="button"
|
|
23
23
|
:value="$t('Copy')"
|
|
24
24
|
class="btn btn-primary"
|
|
25
|
-
:
|
|
25
|
+
:title="$t('Copy')"
|
|
26
26
|
@click="onCopyCode(link, afterCopy)"
|
|
27
27
|
>
|
|
28
28
|
</p>
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
type="button"
|
|
53
53
|
:value="$t('Copy')"
|
|
54
54
|
class="btn btn-primary"
|
|
55
|
-
:
|
|
55
|
+
:title="$t('Copy')"
|
|
56
56
|
@click="onCopyCode(newsletterHtml, afterCopy)"
|
|
57
57
|
>
|
|
58
58
|
</div>
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
/>
|
|
65
65
|
<label
|
|
66
66
|
for="newsletter_code_textarea"
|
|
67
|
-
:
|
|
67
|
+
:title="$t('HTML Code')"
|
|
68
68
|
/>
|
|
69
69
|
</div>
|
|
70
70
|
</div>
|
|
@@ -143,7 +143,7 @@ export default defineComponent({
|
|
|
143
143
|
if(this.podcast.article && 0 !== this.podcast.article.length){
|
|
144
144
|
return (`<a href="` +
|
|
145
145
|
this.podcast.article +
|
|
146
|
-
`"
|
|
146
|
+
`" title="` +
|
|
147
147
|
this.$t('See associated article') +
|
|
148
148
|
`">
|
|
149
149
|
<img width="44" height="44" style="display: inline-block;vertical-align: middle; margin-right:3px" src="` +
|
|
@@ -239,7 +239,7 @@ export default defineComponent({
|
|
|
239
239
|
<div style="font-family: Arial, sans-serif;font-size: 12px;line-height: 20px;background: #f3f3f3;vertical-align: middle;padding: 15px 10px;display: flex; align-items:center; flex-wrap:wrap">
|
|
240
240
|
<a href="` +
|
|
241
241
|
window.location.href +
|
|
242
|
-
`"
|
|
242
|
+
`" title="` +
|
|
243
243
|
this.$t('Listen this episode') +
|
|
244
244
|
`">
|
|
245
245
|
<img width="44" height="44" style="display: inline-block;vertical-align: middle" src="` +
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
:rss-emission="rssEmission"
|
|
15
15
|
:ftp-emission="ftpEmission"
|
|
16
16
|
:is-ready="isReady"
|
|
17
|
+
@isUpdated="getEmissionDetails"
|
|
17
18
|
/>
|
|
18
19
|
<div class="module-box">
|
|
19
20
|
<h2 v-if="!isOuestFrance">
|
|
@@ -215,8 +216,6 @@ export default defineComponent({
|
|
|
215
216
|
},
|
|
216
217
|
watch: {
|
|
217
218
|
emissionId(): void {
|
|
218
|
-
this.loaded = false;
|
|
219
|
-
this.error = false;
|
|
220
219
|
this.getEmissionDetails();
|
|
221
220
|
},
|
|
222
221
|
},
|
|
@@ -226,6 +225,8 @@ export default defineComponent({
|
|
|
226
225
|
},
|
|
227
226
|
methods: {
|
|
228
227
|
async getEmissionDetails(): Promise<void> {
|
|
228
|
+
this.loaded = false;
|
|
229
|
+
this.error = false;
|
|
229
230
|
try {
|
|
230
231
|
const data: Emission = await octopusApi.fetchEmission(this.emissionId);
|
|
231
232
|
this.emission = data;
|