@saooti/octopus-sdk 30.0.4 → 30.0.8

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 (151) hide show
  1. package/README.md +5 -0
  2. package/index.ts +13 -2
  3. package/package.json +1 -1
  4. package/src/App.vue +4 -4
  5. package/src/api/comments.ts +1 -1
  6. package/src/assets/bootstrap-diff.scss +2 -1
  7. package/src/assets/form.scss +7 -15
  8. package/src/assets/general.scss +14 -20
  9. package/src/assets/multiselect.scss +2 -2
  10. package/src/assets/share.scss +1 -12
  11. package/src/components/display/categories/CategoryChooser.vue +1 -1
  12. package/src/components/display/categories/CategoryFilter.vue +4 -4
  13. package/src/components/display/categories/CategoryList.vue +1 -1
  14. package/src/components/display/comments/CommentInput.vue +3 -3
  15. package/src/components/display/comments/CommentItem.vue +4 -3
  16. package/src/components/display/comments/CommentList.vue +4 -4
  17. package/src/components/display/comments/CommentParentInfo.vue +1 -1
  18. package/src/components/display/comments/CommentPlayer.vue +2 -2
  19. package/src/components/display/comments/CommentSection.vue +3 -3
  20. package/src/components/display/edit/EditBox.vue +1 -1
  21. package/src/components/display/edit/EditCommentBox.vue +1 -1
  22. package/src/components/display/emission/EmissionChooser.vue +2 -2
  23. package/src/components/display/emission/EmissionInlineList.vue +3 -3
  24. package/src/components/display/emission/EmissionItem.vue +3 -3
  25. package/src/components/display/emission/EmissionList.vue +4 -4
  26. package/src/components/display/emission/EmissionPlayerItem.vue +3 -3
  27. package/src/components/display/filter/AdvancedSearch.vue +40 -106
  28. package/src/components/display/filter/CategoryFilter.vue +10 -14
  29. package/src/components/display/filter/MonetizableFilter.vue +1 -1
  30. package/src/components/display/filter/ProductorSearch.vue +21 -40
  31. package/src/components/display/filter/RubriqueChoice.vue +4 -4
  32. package/src/components/display/filter/RubriqueFilter.vue +10 -14
  33. package/src/components/display/live/LiveHorizontalList.vue +1 -1
  34. package/src/components/display/live/LiveItem.vue +2 -2
  35. package/src/components/display/live/LiveList.vue +1 -1
  36. package/src/components/display/organisation/OrganisationChooser.vue +1 -1
  37. package/src/components/display/organisation/OrganisationChooserLight.vue +9 -3
  38. package/src/components/display/participant/ParticipantItem.vue +1 -1
  39. package/src/components/display/participant/ParticipantList.vue +1 -1
  40. package/src/components/display/playlist/PlaylistItem.vue +2 -2
  41. package/src/components/display/playlist/PlaylistList.vue +1 -1
  42. package/src/components/display/playlist/PodcastList.vue +10 -21
  43. package/src/components/display/podcasts/AnimatorsItem.vue +1 -1
  44. package/src/components/display/podcasts/ParticipantDescription.vue +2 -1
  45. package/src/components/display/podcasts/PodcastFilterList.vue +11 -20
  46. package/src/components/display/podcasts/PodcastImage.vue +3 -3
  47. package/src/components/display/podcasts/PodcastInlineList.vue +3 -3
  48. package/src/components/display/podcasts/PodcastItem.vue +3 -3
  49. package/src/components/display/podcasts/PodcastList.vue +2 -2
  50. package/src/components/display/podcasts/PodcastModuleBox.vue +2 -2
  51. package/src/components/display/rubriques/RubriqueChooser.vue +1 -1
  52. package/src/components/display/rubriques/RubriqueList.vue +4 -4
  53. package/src/components/display/sharing/PlayerParameters.vue +31 -103
  54. package/src/components/display/sharing/ShareButtons.vue +3 -3
  55. package/src/components/display/sharing/ShareDistribution.vue +1 -1
  56. package/src/components/display/sharing/SharePlayer.vue +35 -51
  57. package/src/components/display/sharing/SharePlayerColors.vue +2 -2
  58. package/src/components/display/sharing/SharePlayerTypes.vue +5 -5
  59. package/src/components/display/sharing/SubscribeButtons.vue +2 -2
  60. package/src/components/form/ClassicCheckbox.vue +61 -0
  61. package/src/components/form/ClassicLoading.vue +28 -0
  62. package/src/components/form/ClassicRadio.vue +61 -0
  63. package/src/components/form/ClassicSearch.vue +82 -0
  64. package/src/components/misc/ErrorMessage.vue +1 -1
  65. package/src/components/misc/Footer.vue +28 -37
  66. package/src/components/misc/HomeDropdown.vue +44 -93
  67. package/src/components/misc/LeftMenu.vue +111 -144
  68. package/src/components/misc/Player.vue +16 -30
  69. package/src/components/misc/PlayerButtons.vue +16 -39
  70. package/src/components/misc/PlayerClockAndTimeline.vue +1 -1
  71. package/src/components/misc/PlayerProgressBar.vue +16 -51
  72. package/src/components/misc/Popover.vue +8 -2
  73. package/src/components/misc/TopBar.vue +142 -224
  74. package/src/components/misc/modal/ClipboardModal.vue +1 -1
  75. package/src/components/misc/modal/NewsletterModal.vue +15 -29
  76. package/src/components/misc/modal/QrCodeModal.vue +2 -2
  77. package/src/components/misc/modal/ShareModalPlayer.vue +1 -1
  78. package/src/components/mixins/init.ts +1 -1
  79. package/src/components/mixins/organisationFilter.ts +1 -1
  80. package/src/components/pages/Category.vue +4 -9
  81. package/src/components/pages/Emission.vue +13 -25
  82. package/src/components/pages/Emissions.vue +10 -19
  83. package/src/components/pages/Home.vue +5 -7
  84. package/src/components/pages/Lives.vue +3 -5
  85. package/src/components/pages/Participant.vue +19 -27
  86. package/src/components/pages/Participants.vue +7 -15
  87. package/src/components/pages/Playlist.vue +17 -30
  88. package/src/components/pages/Playlists.vue +1 -11
  89. package/src/components/pages/Podcast.vue +20 -34
  90. package/src/components/pages/Podcasts.vue +12 -26
  91. package/src/components/pages/Search.vue +26 -64
  92. package/src/store/class/{adserverConfig.ts → adserver/adserverConfig.ts} +0 -0
  93. package/src/store/class/adserver/adserverOtherEmission.ts +13 -0
  94. package/src/store/class/{adserverTiming.ts → adserver/adserverTiming.ts} +0 -0
  95. package/src/store/class/cartouchier/cartouche.ts +15 -0
  96. package/src/store/class/cartouchier/cartouchier.ts +9 -0
  97. package/src/store/class/conference/conference.ts +35 -0
  98. package/src/store/class/conference/conferenceMessage.ts +10 -0
  99. package/src/store/class/conference/conferenceParticipant.ts +18 -0
  100. package/src/store/class/conference/pad.ts +15 -0
  101. package/src/store/class/conference/studioCall.ts +7 -0
  102. package/src/store/class/contract/contract.ts +7 -0
  103. package/src/store/class/contract/contractOrganisation.ts +7 -0
  104. package/src/store/class/ftp/ftpEmission.ts +41 -0
  105. package/src/store/class/ftp/ftpParam.ts +12 -0
  106. package/src/store/class/ftp/testFtpEmission.ts +5 -0
  107. package/src/store/class/general/audioView.ts +21 -0
  108. package/src/store/class/{category.ts → general/category.ts} +1 -1
  109. package/src/store/class/general/comment.ts +16 -0
  110. package/src/store/class/general/customPlayer.ts +8 -0
  111. package/src/store/class/{emission.ts → general/emission.ts} +2 -2
  112. package/src/store/class/general/fetchParam.ts +33 -0
  113. package/src/store/class/general/initState.ts +25 -0
  114. package/src/store/class/general/ituneCategory.ts +5 -0
  115. package/src/store/class/general/media.ts +14 -0
  116. package/src/store/class/general/organisation.ts +19 -0
  117. package/src/store/class/general/pageable.ts +13 -0
  118. package/src/store/class/{participant.ts → general/participant.ts} +0 -0
  119. package/src/store/class/{player.ts → general/player.ts} +0 -0
  120. package/src/store/class/{playlist.ts → general/playlist.ts} +2 -2
  121. package/src/store/class/{podcast.ts → general/podcast.ts} +2 -1
  122. package/src/store/class/general/sortPageable.ts +5 -0
  123. package/src/store/class/general/soundcastCategory.ts +8 -0
  124. package/src/store/class/ouestFrance/ofTag.ts +36 -0
  125. package/src/store/class/ouestFrance/ofTagInfo.ts +9 -0
  126. package/src/store/class/ouestFrance/ofTagPage.ts +7 -0
  127. package/src/store/class/ouestFrance/ofTagSeo.ts +7 -0
  128. package/src/store/class/ouestFrance/ofTagVente.ts +6 -0
  129. package/src/store/class/ouestFrance/ofTagWithParents.ts +26 -0
  130. package/src/store/class/rss/aggregator.ts +28 -0
  131. package/src/store/class/rss/rssEmission.ts +14 -0
  132. package/src/store/class/rss/rssInfo.ts +8 -0
  133. package/src/store/class/{rubriquage.ts → rubrique/rubriquage.ts} +0 -0
  134. package/src/store/class/rubrique/rubriquageFilter.ts +6 -0
  135. package/src/store/class/rubrique/rubrique.ts +8 -0
  136. package/src/store/class/stat/statArrayIncome.ts +6 -0
  137. package/src/store/class/stat/statArrayObject.ts +34 -0
  138. package/src/store/class/stat/statGraph.ts +7 -0
  139. package/src/store/class/{person.ts → user/person.ts} +2 -2
  140. package/src/store/class/user/profile.ts +12 -0
  141. package/src/store/class/user/userKeycloak.ts +24 -0
  142. package/src/store/paramStore.ts +1 -1
  143. package/src/store/typeAppStore.ts +10 -10
  144. package/src/store/class/comment.ts +0 -16
  145. package/src/store/class/conference.ts +0 -31
  146. package/src/store/class/customPlayer.ts +0 -8
  147. package/src/store/class/fetchParam.ts +0 -33
  148. package/src/store/class/media.ts +0 -14
  149. package/src/store/class/organisation.ts +0 -19
  150. package/src/store/class/rubriquageFilter.ts +0 -6
  151. package/src/store/class/rubrique.ts +0 -9
package/README.md CHANGED
@@ -496,8 +496,13 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
496
496
  * 29.0.27 Petit cursor:pointer des familles
497
497
  * 29.0.28 Petite couleur des familles
498
498
  * 29.0.29 Amélioration Popover
499
+ * 29.0.30 Amélioration Popover
499
500
 
500
501
  * 30.0.1 Nouveau sprint
501
502
  * 30.0.2 Correction css
502
503
  * 30.0.3 Ajout tag page podcast
503
504
  * 30.0.4 Remplacer la version "classique" des miniplayers par la version beta
505
+ * 30.0.5 Tri des classes dans des sous dossiers
506
+ * 30.0.6 Merge 29
507
+ * 30.0.7 Améliorations css
508
+ * 30.0.8 Améliorations diverses
package/index.ts CHANGED
@@ -49,6 +49,11 @@ import RubriqueChooser from "./src/components/display/rubriques/RubriqueChooser.
49
49
  import CommentList from "./src/components/display/comments/CommentList.vue";
50
50
  import CommentInput from "./src/components/display/comments/CommentInput.vue";
51
51
 
52
+ //form
53
+ import ClassicSearch from "./src/components/form/ClassicSearch.vue";
54
+ import ClassicCheckbox from "./src/components/form/ClassicCheckbox.vue";
55
+ import ClassicRadio from "./src/components/form/ClassicRadio.vue";
56
+
52
57
  //mixins
53
58
  import {selenium} from "./src/components/mixins/functions";
54
59
  import {cookies} from "./src/components/mixins/functions";
@@ -99,7 +104,10 @@ const components = {
99
104
  orgaFilter,
100
105
  initSDK,
101
106
  Popover,
102
- tagOfMixins
107
+ tagOfMixins,
108
+ ClassicSearch,
109
+ ClassicCheckbox,
110
+ ClassicRadio
103
111
  }
104
112
 
105
113
  export default components;
@@ -146,5 +154,8 @@ export {
146
154
  orgaFilter,
147
155
  initSDK,
148
156
  Popover,
149
- tagOfMixins
157
+ tagOfMixins,
158
+ ClassicSearch,
159
+ ClassicCheckbox,
160
+ ClassicRadio
150
161
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.4",
3
+ "version": "30.0.8",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
package/src/App.vue CHANGED
@@ -24,12 +24,12 @@ import LeftMenu from '@/components/misc/LeftMenu.vue';
24
24
  import Footer from '@/components/misc/Footer.vue';
25
25
  import CategoryFilter from '@/components/display/categories/CategoryFilter.vue';
26
26
  import { state } from './store/paramStore';
27
- import { Rubriquage } from './store/class/rubriquage';
28
- import { RubriquageFilter } from './store/class/rubriquageFilter';
29
- import { Rubrique } from './store/class/rubrique';
27
+ import { Rubriquage } from './store/class/rubrique/rubriquage';
28
+ import { RubriquageFilter } from './store/class/rubrique/rubriquageFilter';
29
+ import { Rubrique } from './store/class/rubrique/rubrique';
30
30
  import { initSDK } from './components/mixins/init';
31
31
  import { defineComponent } from 'vue'
32
- import { Category } from './store/class/category';
32
+ import { Category } from './store/class/general/category';
33
33
  export default defineComponent({
34
34
  name: 'App',
35
35
 
@@ -1,4 +1,4 @@
1
- import { CommentPodcast } from "@/store/class/comment";
1
+ import { CommentPodcast } from "@/store/class/general/comment";
2
2
  import { StoreState } from "@/store/typeAppStore";
3
3
 
4
4
  import octopusApi from '@saooti/octopus-api';
@@ -240,12 +240,13 @@
240
240
  display: none;
241
241
  }
242
242
  .dropdown-menu {
243
- padding: $dropdown-padding-y 0.5rem;
243
+ padding: 0.5rem;
244
244
  @media (max-width: 450px) {
245
245
  min-width: 15rem;
246
246
  }
247
247
  }
248
248
  .dropdown-item {
249
+ cursor: pointer;
249
250
  font-size: 0.8rem;
250
251
  @media (max-width: 450px) {
251
252
  padding: 0.25rem 0;
@@ -5,6 +5,13 @@
5
5
  .width-auto{
6
6
  width: auto !important;
7
7
  }
8
+ select {
9
+ background: white !important;
10
+ outline-color: transparent !important;
11
+ padding: 0.5rem;
12
+ border: 0.1rem solid #dee2e6;
13
+ border-radius: 0.3rem;
14
+ }
8
15
 
9
16
  .form-input {
10
17
  -webkit-appearance: none;
@@ -35,21 +42,6 @@
35
42
  cursor: pointer;
36
43
  }
37
44
 
38
- .basic-select{
39
- background: white;
40
- min-height: 40px;
41
- text-align: left;
42
- color: #35495e;
43
- padding: 0.5rem;
44
- border-radius: 0.3rem;
45
- border-style: none;
46
- outline: transparent;
47
- width: 350px;
48
- margin-bottom: 1rem;
49
- overflow: hidden;
50
- text-overflow: ellipsis;
51
- }
52
-
53
45
  .filter-search-input{
54
46
  flex-grow: 1;
55
47
  height: 2rem;
@@ -51,6 +51,13 @@ body{
51
51
  }
52
52
 
53
53
  }
54
+ .d-flex-column{
55
+ display: flex;
56
+ flex-direction: row;
57
+ @media (max-width: 960px) {
58
+ flex-direction: column;
59
+ }
60
+ }
54
61
 
55
62
  .primary-color{
56
63
  color: $octopus-primary-color;
@@ -66,14 +73,6 @@ body{
66
73
  background: $octopus-background;
67
74
  }
68
75
 
69
- .border-primary{
70
- border-color:$octopus-primary-color !important;
71
- border-radius: 3rem;
72
- border-radius: 3rem;
73
- border-style: inset;
74
- border-width: 1px;;
75
- }
76
-
77
76
  .pe-5 {
78
77
  @media (max-width: 960px) {
79
78
  padding-right: 5px !important;
@@ -84,6 +83,10 @@ body{
84
83
  padding-left: 5px !important;
85
84
  }
86
85
  }
86
+ .horizontal-separator {
87
+ border-top: 1px solid rgb(243, 243, 243);
88
+ margin: 0.5rem 0;
89
+ }
87
90
 
88
91
  .page-box{
89
92
  background-color: $octopus-background;
@@ -132,15 +135,12 @@ body{
132
135
  text-decoration: none;
133
136
  outline-width: 0;
134
137
  }
135
-
136
- a.linkHover.router-link-exact-active.router-link-active {
137
- color: $octopus-primary-color !important;
138
+ a.link-hover{
139
+ color: black !important;
138
140
  }
139
-
140
- a.linkHover:hover{
141
+ a.link-hover.router-link-exact-active.router-link-active, a.link-hover:hover {
141
142
  color: $octopus-primary-color !important;
142
143
  }
143
-
144
144
  .descriptionText{
145
145
  white-space: pre-wrap;
146
146
  word-wrap: break-word;
@@ -154,15 +154,9 @@ body{
154
154
  .alert-text{
155
155
  color: $octopus-alert-text;
156
156
  }
157
- .flex-grow{
158
- flex-grow: 1;
159
- }
160
157
  .flex-super-grow{
161
158
  flex-grow: 2;
162
159
  }
163
- .flex-shrink{
164
- flex-shrink: 0;
165
- }
166
160
  .text-center-mobile{
167
161
  text-align: inherit;
168
162
  @media (max-width: 960px) {
@@ -7,7 +7,7 @@
7
7
  .default-multiselect-width {
8
8
  width: 100%;
9
9
  }
10
- .default-multiselect-width .basic-select {
10
+ .default-multiselect-width {
11
11
  width: auto;
12
12
  -webkit-appearance: none;
13
13
  -moz-appearance: none;
@@ -15,7 +15,7 @@
15
15
  text-overflow: '';
16
16
  font-size: 1rem;
17
17
  @media (max-width: 450px) {
18
- background: #eee !important;
18
+ background: transparent !important;
19
19
  width: 98%;
20
20
  }
21
21
  }
@@ -1,14 +1,6 @@
1
1
  @import '../sass/_variables.scss';
2
2
  .octopus-app{
3
- .search-icon-container {
4
- position: absolute;
5
- top: 0;
6
- bottom: 0;
7
- right: 0;
8
- display: flex;
9
- align-items: center;
10
- }
11
- .share-container {
3
+ .flex-grow-mobile {
12
4
  @media (max-width: 960px) {
13
5
  flex-grow: 1;
14
6
  }
@@ -18,9 +10,6 @@
18
10
  margin-bottom: 2px;
19
11
  height: 25px;
20
12
  }
21
- .flex-no-grow {
22
- flex-grow: 0 !important;
23
- }
24
13
  .custom-radio .custom-control-label {
25
14
  cursor: pointer;
26
15
  }
@@ -75,7 +75,7 @@ const getDefaultCategory = (defaultName: string) => {
75
75
  return { name: defaultName, id: 0 };
76
76
  };
77
77
 
78
- import { Category } from '@/store/class/category';
78
+ import { Category } from '@/store/class/general/category';
79
79
  import { defineComponent } from 'vue'
80
80
  export default defineComponent({
81
81
  components: {
@@ -60,10 +60,10 @@
60
60
  </template>
61
61
 
62
62
  <script lang="ts">
63
- import { Category } from '@/store/class/category';
64
- import { Rubriquage } from '@/store/class/rubriquage';
65
- import { RubriquageFilter } from '@/store/class/rubriquageFilter';
66
- import { Rubrique } from '@/store/class/rubrique';
63
+ import { Category } from '@/store/class/general/category';
64
+ import { Rubriquage } from '@/store/class/rubrique/rubriquage';
65
+ import { RubriquageFilter } from '@/store/class/rubrique/rubriquageFilter';
66
+ import { Rubrique } from '@/store/class/rubrique/rubrique';
67
67
  import { defineComponent, defineAsyncComponent } from 'vue';
68
68
  const CategoryList = defineAsyncComponent(() => import('./CategoryList.vue'));
69
69
  const RubriqueList = defineAsyncComponent(() => import('./../rubriques/RubriqueList.vue'));
@@ -44,7 +44,7 @@
44
44
  import octopusApi from '@saooti/octopus-api';
45
45
  import { state } from '../../../store/paramStore';
46
46
 
47
- import { Category } from '@/store/class/category';
47
+ import { Category } from '@/store/class/general/category';
48
48
  import { defineComponent } from 'vue'
49
49
  export default defineComponent({
50
50
  name: 'CategoryList',
@@ -80,9 +80,9 @@ import octopusApi from '@saooti/octopus-api';
80
80
  import commentApi from '@/api/comments';
81
81
  import { cookies } from '../../mixins/functions';
82
82
  import { state } from '../../../store/paramStore';
83
- import { Podcast } from '@/store/class/podcast';
84
- import { Conference } from '@/store/class/conference';
85
- import { CommentPodcast } from '@/store/class/comment';
83
+ import { Podcast } from '@/store/class/general/podcast';
84
+ import { Conference } from '@/store/class/conference/conference';
85
+ import { CommentPodcast } from '@/store/class/general/comment';
86
86
 
87
87
  import { defineComponent, defineAsyncComponent } from 'vue';
88
88
  const AddCommentModal = defineAsyncComponent(() => import('./AddCommentModal.vue'));
@@ -18,6 +18,7 @@
18
18
  <template v-else>
19
19
  <b
20
20
  :id="'popover-comment' + comment.comId"
21
+ tabindex="-1"
21
22
  class="mr-2 text-danger"
22
23
  >{{
23
24
  comment.name
@@ -181,9 +182,9 @@
181
182
  <script lang="ts">
182
183
  import { state } from '../../../store/paramStore';
183
184
  import { displayMethods, selenium } from '../../mixins/functions';
184
- import { CommentPodcast } from '@/store/class/comment';
185
- import { Podcast } from '@/store/class/podcast';
186
- import { Conference } from '@/store/class/conference';
185
+ import { CommentPodcast } from '@/store/class/general/comment';
186
+ import { Podcast } from '@/store/class/general/podcast';
187
+ import { Conference } from '@/store/class/conference/conference';
187
188
  import moment from 'moment';
188
189
  import Popover from '../../misc/Popover.vue';
189
190
  import { defineComponent, defineAsyncComponent } from 'vue';
@@ -52,11 +52,11 @@ import { state } from '../../../store/paramStore';
52
52
  import octopusApi from '@saooti/octopus-api';
53
53
  import moment from 'moment';
54
54
 
55
- import { Podcast } from '@/store/class/podcast';
56
- import { Conference } from '@/store/class/conference';
57
- import { CommentPodcast } from '@/store/class/comment';
55
+ import { Podcast } from '@/store/class/general/podcast';
56
+ import { Conference } from '@/store/class/conference/conference';
57
+ import { CommentPodcast } from '@/store/class/general/comment';
58
58
  import { defineComponent, defineAsyncComponent } from 'vue';
59
- import { FetchParam } from '@/store/class/fetchParam';
59
+ import { FetchParam } from '@/store/class/general/fetchParam';
60
60
  /* eslint-disable */
61
61
  const CommentItem: any = defineAsyncComponent(() => import('./CommentItem.vue'));
62
62
  /* eslint-enable */
@@ -35,7 +35,7 @@
35
35
  <script lang="ts">
36
36
  import octopusApi from '@saooti/octopus-api';
37
37
  import moment from 'moment';
38
- import { CommentPodcast } from '@/store/class/comment';
38
+ import { CommentPodcast } from '@/store/class/general/comment';
39
39
  import { defineComponent } from 'vue'
40
40
  export default defineComponent({
41
41
  name: 'CommentParentInfo',
@@ -22,7 +22,7 @@
22
22
  v-if="displayContent"
23
23
  class="comment-content"
24
24
  >
25
- <div class="primary-color flex-shrink">
25
+ <div class="primary-color flex-shrink-0">
26
26
  {{ displayContent.name }}
27
27
  </div>
28
28
  <div class="ms-1 me-1">
@@ -36,7 +36,7 @@
36
36
  </template>
37
37
 
38
38
  <script lang="ts">
39
- import { CommentPodcast } from '@/store/class/comment';
39
+ import { CommentPodcast } from '@/store/class/general/comment';
40
40
  import { selenium } from '../../mixins/functions';
41
41
  import { defineComponent } from 'vue'
42
42
  export default defineComponent({
@@ -43,12 +43,12 @@
43
43
  import CommentList from './CommentList.vue';
44
44
  import CommentInput from './CommentInput.vue';
45
45
  import { cookies } from '../../mixins/functions';
46
- import { Podcast } from '@/store/class/podcast';
47
- import { Conference } from '@/store/class/conference';
46
+ import { Podcast } from '@/store/class/general/podcast';
47
+ import { Conference } from '@/store/class/conference/conference';
48
48
 
49
49
  import { defineComponent } from 'vue'
50
50
  import CommentListVue from './CommentList.vue';
51
- import { CommentPodcast } from '@/store/class/comment';
51
+ import { CommentPodcast } from '@/store/class/general/comment';
52
52
  export default defineComponent({
53
53
  name: 'CommentSection',
54
54
 
@@ -3,7 +3,7 @@
3
3
  </template>
4
4
 
5
5
  <script lang="ts">
6
- import { CommentPodcast } from '@/store/class/comment';
6
+ import { CommentPodcast } from '@/store/class/general/comment';
7
7
  import { defineComponent } from 'vue'
8
8
  export default defineComponent({
9
9
  methods:{
@@ -34,7 +34,7 @@
34
34
  </template>
35
35
 
36
36
  <script lang="ts">
37
- import { CommentPodcast } from '@/store/class/comment';
37
+ import { CommentPodcast } from '@/store/class/general/comment';
38
38
  import { defineComponent } from 'vue'
39
39
  export default defineComponent({
40
40
  props: {
@@ -107,9 +107,9 @@ const getDefaultEmission = (defaultName: string): Emission|undefined => {
107
107
  };
108
108
  };
109
109
 
110
- import { Emission } from '@/store/class/emission';
110
+ import { Emission } from '@/store/class/general/emission';
111
111
  import { defineComponent } from 'vue'
112
- import { FetchParam } from '@/store/class/fetchParam';
112
+ import { FetchParam } from '@/store/class/general/fetchParam';
113
113
  export default defineComponent({
114
114
  components: {
115
115
  VueMultiselect
@@ -47,7 +47,7 @@
47
47
  <EmissionPlayerItem
48
48
  v-for="e in emissions"
49
49
  :key="e.emissionId"
50
- class="flex-shrink item-phone-margin"
50
+ class="flex-shrink-0 item-phone-margin"
51
51
  :emission="e"
52
52
  :class="[alignLeft ? 'me-3' : '', mainRubriquage(e)]"
53
53
  :nb-podcasts="nbPodcasts"
@@ -74,8 +74,8 @@ import { state } from '../../../store/paramStore';
74
74
 
75
75
  const PHONE_WIDTH = 960;
76
76
 
77
- import { Emission } from '@/store/class/emission';
78
- import { Rubrique } from '@/store/class/rubrique';
77
+ import { Emission } from '@/store/class/general/emission';
78
+ import { Rubrique } from '@/store/class/rubrique/rubrique';
79
79
  import { defineComponent } from 'vue'
80
80
  export default defineComponent({
81
81
  name: 'EmissionInlineList',
@@ -26,7 +26,7 @@
26
26
  class="d-flex"
27
27
  >
28
28
  <div
29
- class="img-box-light flex-shrink"
29
+ class="img-box-light flex-shrink-0"
30
30
  :style="{ 'background-image': 'url(\'' + emission.imageUrl + '\')' }"
31
31
  />
32
32
  <div class="emission-light-title">
@@ -70,7 +70,7 @@
70
70
  <!-- eslint-enable -->
71
71
  </div>
72
72
  </router-link>
73
- <div class="flex-grow" />
73
+ <div class="flex-grow-1" />
74
74
  <router-link
75
75
  v-if="!isPodcastmaker"
76
76
  :to="{
@@ -89,7 +89,7 @@
89
89
  </template>
90
90
 
91
91
  <script lang="ts">
92
- import { Emission } from '@/store/class/emission';
92
+ import { Emission } from '@/store/class/general/emission';
93
93
  import { state } from '../../../store/paramStore';
94
94
  import octopusApi from '@saooti/octopus-api';
95
95
  import { displayMethods } from '../../mixins/functions';
@@ -37,7 +37,7 @@
37
37
  v-for="e in emissions"
38
38
  :key="e.emissionId"
39
39
  :emission="e"
40
- class="m-3 flex-shrink"
40
+ class="m-3 flex-shrink-0"
41
41
  :class="mainRubriquage(e)"
42
42
  :rubrique-name="rubriquesId(e)"
43
43
  @emissionNotVisible="displayCount--"
@@ -63,10 +63,10 @@
63
63
  import octopusApi from '@saooti/octopus-api';
64
64
  import { state } from '../../../store/paramStore';
65
65
 
66
- import { Emission } from '@/store/class/emission';
67
- import { Rubrique } from '@/store/class/rubrique';
66
+ import { Emission } from '@/store/class/general/emission';
67
+ import { Rubrique } from '@/store/class/rubrique/rubrique';
68
68
  import { defineComponent, defineAsyncComponent } from 'vue';
69
- import { FetchParam } from '@/store/class/fetchParam';
69
+ import { FetchParam } from '@/store/class/general/fetchParam';
70
70
  const EmissionItem = defineAsyncComponent(() => import('./EmissionItem.vue'));
71
71
  const EmissionPlayerItem = defineAsyncComponent(() => import('./EmissionPlayerItem.vue'));
72
72
  export default defineComponent({
@@ -52,7 +52,7 @@
52
52
  :key="p.podcastId"
53
53
  class="border-top emission-item-border-color p-2 secondary-bg d-flex"
54
54
  >
55
- <div class="d-flex justify-content-between flex-grow">
55
+ <div class="d-flex justify-content-between flex-grow-1">
56
56
  <router-link
57
57
  :to="{
58
58
  name: 'podcast',
@@ -122,8 +122,8 @@
122
122
 
123
123
  <script lang="ts">
124
124
  import octopusApi from '@saooti/octopus-api';
125
- import { Emission } from '@/store/class/emission';
126
- import { Podcast } from '@/store/class/podcast';
125
+ import { Emission } from '@/store/class/general/emission';
126
+ import { Podcast } from '@/store/class/general/podcast';
127
127
  import { state } from '../../../store/paramStore';
128
128
  import { displayMethods } from '../../mixins/functions';
129
129
  import { defineComponent } from 'vue'