@saooti/octopus-sdk 32.0.4 → 32.0.5

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.
Files changed (39) hide show
  1. package/README.md +2 -1
  2. package/package.json +2 -2
  3. package/public/css/fonts/icomoon.eot +0 -0
  4. package/public/css/fonts/icomoon.svg +130 -0
  5. package/public/css/fonts/icomoon.ttf +0 -0
  6. package/public/css/fonts/icomoon.woff +0 -0
  7. package/public/css/fonts/style.css +185 -1275
  8. package/src/assets/form.scss +3 -1
  9. package/src/components/display/categories/CategoryChooser.vue +1 -1
  10. package/src/components/display/comments/CommentItem.vue +2 -2
  11. package/src/components/display/comments/CommentList.vue +0 -1
  12. package/src/components/display/comments/CommentSection.vue +1 -1
  13. package/src/components/display/edit/EditCommentBox.vue +3 -3
  14. package/src/components/display/emission/EmissionChooser.vue +1 -2
  15. package/src/components/display/emission/EmissionPlayerItem.vue +2 -2
  16. package/src/components/display/filter/AdvancedSearch.vue +1 -1
  17. package/src/components/display/filter/MonetizableFilter.vue +1 -1
  18. package/src/components/display/filter/RubriqueChoice.vue +1 -1
  19. package/src/components/display/organisation/OrganisationChooser.vue +1 -1
  20. package/src/components/display/podcasts/PodcastImage.vue +4 -4
  21. package/src/components/display/podcasts/PodcastItemInfo.vue +2 -2
  22. package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
  23. package/src/components/display/sharing/ShareButtonsIntern.vue +5 -5
  24. package/src/components/display/sharing/ShareDistribution.vue +6 -2
  25. package/src/components/form/ClassicSearch.vue +4 -4
  26. package/src/components/misc/HomeDropdown.vue +1 -1
  27. package/src/components/misc/TopBar.vue +4 -4
  28. package/src/components/misc/modal/MessageModal.vue +1 -1
  29. package/src/components/misc/modal/NewsletterModal.vue +2 -2
  30. package/src/components/misc/modal/ShareModalPlayer.vue +4 -4
  31. package/src/components/misc/player/PlayerCompact.vue +4 -4
  32. package/src/components/misc/player/PlayerLarge.vue +4 -4
  33. package/src/components/misc/player/PlayerTimeline.vue +1 -1
  34. package/src/components/pages/Playlist.vue +4 -1
  35. package/public/css/fonts/saooti-ui.eot +0 -0
  36. package/public/css/fonts/saooti-ui.svg +0 -843
  37. package/public/css/fonts/saooti-ui.ttf +0 -0
  38. package/public/css/fonts/saooti-ui.woff +0 -0
  39. package/public/css/fonts/stitcher-logo.svg +0 -83
@@ -8,9 +8,11 @@
8
8
  }
9
9
  select {
10
10
  background: white !important;
11
- padding: 0.5rem;
11
+ outline-color: transparent !important;
12
+ padding: 0.25rem 0.4rem;;
12
13
  border: 0.1rem solid #dee2e6;
13
14
  border-radius: 0.3rem;
15
+ height: 2rem;
14
16
  }
15
17
  .form-check-label {
16
18
  cursor: pointer;
@@ -56,7 +56,7 @@
56
56
  <template #caret="">
57
57
  <div class="position-relative">
58
58
  <span
59
- class="saooti-arrow_down octopus-arrow-down"
59
+ class="saooti-down octopus-arrow-down"
60
60
  />
61
61
  </div>
62
62
  </template>
@@ -83,7 +83,7 @@
83
83
  </span>
84
84
  <span
85
85
  :class="collapseVisible? 'arrow-transform': ''"
86
- class="saooti-arrow_down"
86
+ class="saooti-down"
87
87
  />
88
88
  </button>
89
89
  <EditCommentBox
@@ -136,7 +136,7 @@ import { Podcast } from '@/store/class/general/podcast';
136
136
  import { Conference } from '@/store/class/conference/conference';
137
137
  import CommentBasicView from './CommentBasicView.vue';
138
138
  import Constants from '../../../../public/config';
139
- import { defineComponent, defineAsyncComponent, nextTick } from 'vue';
139
+ import { defineComponent, defineAsyncComponent } from 'vue';
140
140
  const CommentInput = defineAsyncComponent(() => import('./CommentInput.vue'));
141
141
  const CommentParentInfo = defineAsyncComponent(() => import('./CommentParentInfo.vue'));
142
142
  const EditCommentBox = defineAsyncComponent(() => import('@/components/display/edit/EditCommentBox.vue'));
@@ -43,7 +43,6 @@ import { Conference } from '@/store/class/conference/conference';
43
43
  import { CommentPodcast } from '@/store/class/general/comment';
44
44
  import { InterfacePageable } from '@/store/class/general/interfacePageable';
45
45
  import { defineComponent, defineAsyncComponent } from 'vue';
46
- import { FetchParam } from '@/store/class/general/fetchParam';
47
46
  /* eslint-disable */
48
47
  const CommentItem: any = defineAsyncComponent(() => import('./CommentItem.vue'));
49
48
  /* eslint-enable */
@@ -13,7 +13,7 @@
13
13
  <button
14
14
  v-if="!isLive"
15
15
  :title="$t('Refresh')"
16
- class="btn admin-button saooti-refresh-stud"
16
+ class="btn admin-button saooti-refresh"
17
17
  @click="reload = !reload"
18
18
  />
19
19
  </div>
@@ -6,7 +6,7 @@
6
6
  @click="editComment"
7
7
  >
8
8
  <span
9
- class="saooti-edit-bounty"
9
+ class="saooti-edit"
10
10
  :data-selenium="'Edit-Comment-' + seleniumFormat(comment.name)"
11
11
  />
12
12
  </button>
@@ -17,7 +17,7 @@
17
17
  @click="commentModal('Valid')"
18
18
  >
19
19
  <span
20
- class="saooti-valid-stud"
20
+ class="saooti-checkmark"
21
21
  :data-selenium="'Validate-Comment-' + seleniumFormat(comment.name)"
22
22
  />
23
23
  </button>
@@ -28,7 +28,7 @@
28
28
  @click="commentModal('Invalid')"
29
29
  >
30
30
  <span
31
- class="saooti-remove-bounty"
31
+ class="saooti-remove"
32
32
  :data-selenium="'Invalidate-Comment-' + seleniumFormat(comment.name)"
33
33
  />
34
34
  </button>
@@ -71,7 +71,7 @@
71
71
  <template #caret="">
72
72
  <div class="position-relative">
73
73
  <span
74
- class="saooti-arrow_down octopus-arrow-down"
74
+ class="saooti-down octopus-arrow-down"
75
75
  />
76
76
  </div>
77
77
  </template>
@@ -108,7 +108,6 @@ const getDefaultEmission = (defaultName: string): Emission|undefined => {
108
108
 
109
109
  import { Emission } from '@/store/class/general/emission';
110
110
  import { defineComponent } from 'vue'
111
- import { FetchParam } from '@/store/class/general/fetchParam';
112
111
  export default defineComponent({
113
112
  components: {
114
113
  VueMultiselect
@@ -102,7 +102,7 @@
102
102
  @click="play(p)"
103
103
  >
104
104
  <div
105
- class="text-light saooti-play2-bounty"
105
+ class="text-light saooti-play"
106
106
  :title="$t('Play')"
107
107
  />
108
108
  </div>
@@ -112,7 +112,7 @@
112
112
  @click="pause(p)"
113
113
  >
114
114
  <div
115
- class="text-light saooti-pause-bounty"
115
+ class="text-light saooti-pause"
116
116
  :title="$t('Pause')"
117
117
  />
118
118
  </div>
@@ -6,7 +6,7 @@
6
6
  >
7
7
  <div>{{ $t('Advanced filters') }}</div>
8
8
  <div
9
- class="h3 saooti-arrow_down m-0"
9
+ class="h3 saooti-down m-0"
10
10
  :class="{ 'arrow-transform': showFilters }"
11
11
  />
12
12
  </button>
@@ -12,7 +12,7 @@
12
12
  <option value="YES">{{ $t('Authorized advertising') }}</option>
13
13
  <option value="NO">{{ $t('Prohibited advertising') }}</option>
14
14
  </select>
15
- <div class="saooti-arrow_down octopus-arrow-down" />
15
+ <div class="saooti-down octopus-arrow-down" />
16
16
  </label>
17
17
  </div>
18
18
  </template>
@@ -13,7 +13,7 @@
13
13
  >{{ rubriquage.title }}</option>
14
14
  </select>
15
15
  <div
16
- class="saooti-arrow_down octopus-arrow-down"
16
+ class="saooti-down octopus-arrow-down"
17
17
  />
18
18
  </label>
19
19
  <template v-if="rubriquageId">
@@ -100,7 +100,7 @@
100
100
  class="position-relative"
101
101
  >
102
102
  <span
103
- class="saooti-arrow_down octopus-arrow-down"
103
+ class="saooti-down octopus-arrow-down"
104
104
  />
105
105
  </div>
106
106
  </template>
@@ -42,7 +42,7 @@
42
42
  <div
43
43
  v-show="!playingPodcast"
44
44
  :title="$t('Play')"
45
- class="saooti-play2-bounty primary-color"
45
+ class="saooti-play primary-color"
46
46
  />
47
47
  <div
48
48
  v-if="!classicPodcastPlay"
@@ -77,8 +77,8 @@
77
77
  </button>
78
78
  <div
79
79
  v-if="displayDescription && isMobile"
80
- class="background-icon primary-bg saooti-arrow-up2"
81
- :class="isDescription ? 'saooti-arrow-down2':'saooti-arrow-up2'"
80
+ class="background-icon primary-bg saooti-arrow-up"
81
+ :class="isDescription ? 'saooti-arrow-down':'saooti-arrow-up'"
82
82
  :title="isDescription ? $t('Hide description'):$t('Show description')"
83
83
  @click="showDescription"
84
84
  />
@@ -354,7 +354,7 @@ export default defineComponent({
354
354
  &:hover {
355
355
  background: #00000030;
356
356
  }
357
- > .saooti-play2-bounty {
357
+ > .saooti-play {
358
358
  font-size: 2em;
359
359
  position: relative;
360
360
  right: -0.2rem;
@@ -46,7 +46,7 @@
46
46
  </router-link>
47
47
  <span
48
48
  v-if="editRight && podcastOrder && podcastOrder > 1"
49
- class="saooti-pin-octopus text-danger pe-2"
49
+ class="saooti-pin text-danger pe-2"
50
50
  />
51
51
  </div>
52
52
  </div>
@@ -138,7 +138,7 @@ export default defineComponent({
138
138
  .text-secondary {
139
139
  margin: 0.5rem !important;
140
140
  }
141
- .saooti-pin-octopus {
141
+ .saooti-pin {
142
142
  font-size: 22px;
143
143
  }
144
144
  .title-podcast-item {
@@ -60,7 +60,7 @@
60
60
  {{ $t('No elements found. Consider changing the search query.') }}
61
61
  </template>
62
62
  <template #caret>
63
- <span class="saooti-arrow_down octopus-arrow-down" />
63
+ <span class="saooti-down octopus-arrow-down" />
64
64
  </template>
65
65
  </VueMultiselect>
66
66
  </div>
@@ -6,7 +6,7 @@
6
6
  :title="$t('Downloading')"
7
7
  @click="onDownload(podcast.audioUrl, podcast.title)"
8
8
  >
9
- <div class="saooti-download-bounty" />
9
+ <div class="saooti-download" />
10
10
  </button>
11
11
  <template
12
12
  v-for="button in arrayShareButtons"
@@ -40,7 +40,7 @@
40
40
  :title="titleRssButton"
41
41
  @click.prevent="openPopup()"
42
42
  >
43
- <div class="saooti-rss-bounty" />
43
+ <div class="saooti-rss" />
44
44
  </a>
45
45
  <button
46
46
  :class="getClass()"
@@ -143,9 +143,9 @@ export default defineComponent({
143
143
  },
144
144
  arrayShareButtons(){
145
145
  return [
146
- { title: 'Facebook', icon:'saooti-facebook-bounty', nbPath:0, className:'btn-facebook', url :`https://www.facebook.com/sharer/sharer.php?u=${this.urlPage}`, condition: true},
147
- { title: 'Twitter', icon:'saooti-twitter-bounty', nbPath:0, className:'btn-twitter', url :`https://twitter.com/intent/tweet?text=${this.urlPage}`, condition: true},
148
- { title: 'Linkedin', icon:'saooti-linkedin1', nbPath:0, className:'btn-linkedin', url :`https://www.linkedin.com/sharing/share-offsite/?url=${this.urlPage}`, condition: true},
146
+ { title: 'Facebook', icon:'saooti-facebook', nbPath:0, className:'btn-facebook', url :`https://www.facebook.com/sharer/sharer.php?u=${this.urlPage}`, condition: true},
147
+ { title: 'Twitter', icon:'saooti-twitter', nbPath:0, className:'btn-twitter', url :`https://twitter.com/intent/tweet?text=${this.urlPage}`, condition: true},
148
+ { title: 'Linkedin', icon:'saooti-linkedin', nbPath:0, className:'btn-linkedin', url :`https://www.linkedin.com/sharing/share-offsite/?url=${this.urlPage}`, condition: true},
149
149
  { title: 'Whatsapp', icon:'saooti-Whatsapp', nbPath:3, className:'btn-whatsapp', url :`whatsapp://send?text=${this.urlPage}`, condition: window.matchMedia('(hover: none)').matches}
150
150
  ]
151
151
  },
@@ -24,8 +24,12 @@
24
24
  class="text-dark"
25
25
  >
26
26
  <span :class="platform.icon">
27
- <div v-for="index in platform.path" :key="index" :class="'path'+index" />
28
- </span>{{platform.title}}
27
+ <div
28
+ v-for="index in platform.path"
29
+ :key="index"
30
+ :class="'path'+index"
31
+ />
32
+ </span>{{ platform.title }}
29
33
  </router-link>
30
34
  </div>
31
35
  <Snackbar
@@ -15,11 +15,11 @@
15
15
  />
16
16
  <div
17
17
  v-if="!textValue"
18
- class="saooti-search-bounty search-icon-container"
18
+ class="saooti-search search-icon-container"
19
19
  />
20
20
  <div
21
21
  v-else
22
- class="saooti-remove-bounty search-icon-container c-hand"
22
+ class="saooti-remove search-icon-container c-hand"
23
23
  @click="textValue = ''"
24
24
  />
25
25
  </div>
@@ -68,8 +68,8 @@ export default defineComponent({
68
68
  border-radius: 10px;
69
69
  margin: 0 !important;
70
70
  }
71
- .saooti-search-bounty,
72
- .saooti-remove-bounty {
71
+ .saooti-search,
72
+ .saooti-remove {
73
73
  font-size: 1rem;
74
74
  }
75
75
  .search-icon-container {
@@ -13,7 +13,7 @@
13
13
  class="dropdown btn-group"
14
14
  >
15
15
  <button
16
- class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user-octopus"
16
+ class="btn dropdown-toggle m-1 admin-button dropdown-toggle-no-caret saooti-user"
17
17
  data-bs-toggle="dropdown"
18
18
  aria-expanded="false"
19
19
  :title="$t('User menu')"
@@ -47,7 +47,7 @@
47
47
  </template>
48
48
  </div>
49
49
  <button
50
- class="btn-transparent saooti-burger-menu"
50
+ class="btn-transparent saooti-menu"
51
51
  :title="$t('open left Menu')"
52
52
  @click="onDisplayMenu(false)"
53
53
  />
@@ -218,7 +218,7 @@ export default defineComponent({
218
218
  padding: 0 0.5rem;
219
219
  }
220
220
 
221
- .saooti-burger-menu {
221
+ .saooti-menu {
222
222
  display: none;
223
223
  cursor: pointer;
224
224
  font-size: 2rem;
@@ -251,7 +251,7 @@ export default defineComponent({
251
251
  .link-hover,.hosted-by {
252
252
  display: none;
253
253
  }
254
- .saooti-burger-menu {
254
+ .saooti-menu {
255
255
  display: block;
256
256
  }
257
257
  }
@@ -261,7 +261,7 @@ export default defineComponent({
261
261
  .default-multiselect-width, .hosted-by, .link-hover {
262
262
  display: none;
263
263
  }
264
- .saooti-burger-menu {
264
+ .saooti-menu {
265
265
  display: block;
266
266
  }
267
267
  }
@@ -47,8 +47,8 @@
47
47
  {{ thirdText }}
48
48
  </button>
49
49
  <button
50
- class="btn btn-primary m-1"
51
50
  :ref="!closable && !canceltext?'focusElement':''"
51
+ class="btn btn-primary m-1"
52
52
  @click="onValid"
53
53
  >
54
54
  {{ validatetext }}
@@ -21,10 +21,10 @@
21
21
  <h4 class="mb-3">
22
22
  {{ $t('Configuration') }}
23
23
  </h4>
24
- <label for="share-url-newsletter">{{$t('Share')}}</label>
24
+ <label for="share-url-newsletter">{{ $t('Share') }}</label>
25
25
  <input
26
- v-model="shareUrl"
27
26
  id="share-url-newsletter"
27
+ v-model="shareUrl"
28
28
  class="form-input mb-2"
29
29
  type="text"
30
30
  :class="{ 'border border-danger': 0 === shareUrl }"
@@ -42,7 +42,7 @@
42
42
  >
43
43
  <p>{{ embedLink }}</p>
44
44
  <div
45
- class="saooti-copy-octopus"
45
+ class="saooti-copy"
46
46
  @click="onCopyCode(embedLink, afterCopy)"
47
47
  />
48
48
  </div>
@@ -54,7 +54,7 @@
54
54
  <div class="d-flex">
55
55
  <p>{{ embedlyLink }}</p>
56
56
  <div
57
- class="saooti-copy-octopus"
57
+ class="saooti-copy"
58
58
  @click="onCopyCode(embedlyLink, afterCopy)"
59
59
  />
60
60
  </div>
@@ -68,7 +68,7 @@
68
68
  >
69
69
  <p>{{ directLink.audioUrl }}</p>
70
70
  <div
71
- class="saooti-copy-octopus"
71
+ class="saooti-copy"
72
72
  @click="onCopyCode(directLink.audioUrl, snackbarRef)"
73
73
  />
74
74
  </div>
@@ -178,7 +178,7 @@ export default defineComponent({
178
178
  display: flex;
179
179
  justify-content: space-between;
180
180
  }
181
- .saooti-copy-octopus {
181
+ .saooti-copy {
182
182
  cursor: pointer;
183
183
  align-self: center;
184
184
  }
@@ -16,8 +16,8 @@
16
16
  v-if="!playerError"
17
17
  :title="$t('Play')"
18
18
  :class="{
19
- 'saooti-play2-bounty': isPaused,
20
- 'saooti-pause-bounty': isPlaying,
19
+ 'saooti-play': isPaused,
20
+ 'saooti-pause': isPlaying,
21
21
  'spinner-border':!isPaused&&!isPlaying
22
22
  }"
23
23
  class="btn play-button-box text-light primary-bg"
@@ -55,12 +55,12 @@
55
55
  </div>
56
56
  <button
57
57
  :title="$t('Enlarge')"
58
- class="btn play-button-box primary-bg text-light saooti-up-bounty"
58
+ class="btn play-button-box primary-bg text-light saooti-up"
59
59
  @click="changePlayerLargeVersion"
60
60
  />
61
61
  <button
62
62
  :title="$t('Close')"
63
- class="btn play-button-box primary-bg text-light saooti-remove-bounty"
63
+ class="btn play-button-box primary-bg text-light saooti-remove"
64
64
  @click="stopPlayer"
65
65
  />
66
66
  <PlayerTimeline
@@ -4,7 +4,7 @@
4
4
  >
5
5
  <button
6
6
  :title="$t('Reduce')"
7
- class="player-reduce-button btn bg-transparent text-light saooti-down-bounty"
7
+ class="player-reduce-button btn bg-transparent text-light saooti-down"
8
8
  @click="changePlayerLargeVersion"
9
9
  />
10
10
  <router-link
@@ -55,15 +55,15 @@
55
55
  v-if="!playerError"
56
56
  :title="$t('Play')"
57
57
  :class="{
58
- 'saooti-play2-bounty': isPaused,
59
- 'saooti-pause-bounty': isPlaying,
58
+ 'saooti-play': isPaused,
59
+ 'saooti-pause': isPlaying,
60
60
  'spinner-border':!isPaused&&!isPlaying
61
61
  }"
62
62
  class="btn play-big-button-box text-light primary-bg"
63
63
  @click="switchPausePlay"
64
64
  />
65
65
  <button
66
- class="btn fs-1 bg-transparent text-light saooti-forward2"
66
+ class="btn fs-1 bg-transparent text-light saooti-forward"
67
67
  @click="seekClick(15)"
68
68
  />
69
69
  </div>
@@ -5,7 +5,7 @@
5
5
  @click="$emit('update:showTimeline', !showTimeline)"
6
6
  >
7
7
  <div
8
- class="saooti-arrow_down"
8
+ class="saooti-down"
9
9
  :class="showTimeline ? '' : 'arrow-transform'"
10
10
  />
11
11
  <div>Timeline</div>
@@ -34,7 +34,10 @@
34
34
  :organisation-id="myOrganisationId"
35
35
  :is-education="isEducation"
36
36
  />
37
- <ShareButtons v-if="pageParameters.isShareButtons" :playlist="playlist" />
37
+ <ShareButtons
38
+ v-if="pageParameters.isShareButtons"
39
+ :playlist="playlist"
40
+ />
38
41
  </div>
39
42
  </div>
40
43
  <PodcastList :playlist="playlist" />
Binary file