@saooti/octopus-sdk 30.0.30 → 30.0.34

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 CHANGED
@@ -527,4 +527,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
527
527
  * 30.0.27 Top bar responsive
528
528
  * 30.0.28 Limiter caractères des commentaires
529
529
  * 30.0.29 Pour podcastmaker sudPresse
530
- * 30.0.30 Problème fetch participants
530
+ * 30.0.30 Problème fetch participants
531
+ * 30.0.31 Amélioration interface
532
+ * 30.0.32 Amélioration interface
533
+ * 30.0.33 Pb categories list
534
+ * 30.0.34 Bouton css
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "30.0.30",
3
+ "version": "30.0.34",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -120,26 +120,28 @@
120
120
 
121
121
  &.admin-button{
122
122
  padding: 0.3rem;
123
- height: 1.8rem;
124
- width: 1.8rem;
125
- font-size: 1rem;
123
+ height: 2.2rem !important;
124
+ width: 2.2rem !important;
125
+ font-size: 1.1rem;
126
126
  display: inline-flex;
127
127
  align-items: center;
128
128
  justify-content: center;
129
129
  color : $octopus-primary-dark;
130
+ flex-shrink: 0;
130
131
  }
131
132
 
132
133
  }
133
134
 
134
135
  .share-btn {
135
136
  font-size: 1.3rem;
136
- width: 2.5rem;
137
+ width: 2.5rem !important;
137
138
  height: 2.5rem !important;
138
139
  padding: 0.5rem;
139
140
  display: inline-flex;
140
141
  align-items: center;
141
142
  justify-content: center;
142
143
  color : $octopus-primary-dark;
144
+ flex-shrink: 0;
143
145
  }
144
146
 
145
147
  .btn-rss {
@@ -13,9 +13,11 @@ body{
13
13
  overscroll-behavior-y: contain;
14
14
  }
15
15
  .octopus-app{
16
+ h1{
17
+ margin-bottom: 2rem;
18
+ }
16
19
  h1,h2,h3,h4,h5,h6{
17
20
  font-weight: 600;
18
- margin-bottom: 0.25rem;
19
21
  margin-top: 0;
20
22
  @media (max-width: 500px){
21
23
  margin: 0.2rem;
@@ -35,6 +37,10 @@ body{
35
37
  font-size: 1rem;
36
38
  }
37
39
  }
40
+ hr{
41
+ height: 0.01rem;
42
+ color: #999;
43
+ }
38
44
 
39
45
  .small-text{
40
46
  font-size: 0.6rem;
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div
3
- v-if="isDisplay"
3
+ v-show="isDisplay"
4
4
  class="mt-3"
5
5
  >
6
6
  <nav
@@ -54,12 +54,18 @@
54
54
  <CategoryList
55
55
  v-if="!categoryFilter && !rubriquageFilter.length"
56
56
  :is-filter="true"
57
+ :is-display="isDisplay"
58
+ @categoriesLength="checkIfCategories"
57
59
  />
58
60
  <RubriqueList
59
61
  v-else-if="rubriquageFilter.length !== rubriqueFilter.length"
60
62
  :rubriquages="rubriquageFilter"
61
63
  />
62
64
  </div>
65
+ <div
66
+ v-if="!isDisplay"
67
+ class="categary-filter-no-filter"
68
+ />
63
69
  </template>
64
70
 
65
71
  <script lang="ts">
@@ -79,6 +85,11 @@ export default defineComponent({
79
85
  RubriqueList,
80
86
  RubriqueChooser
81
87
  },
88
+ data() {
89
+ return {
90
+ isCategories: false as boolean,
91
+ };
92
+ },
82
93
  computed: {
83
94
  categoryFilter(): Category|undefined{
84
95
  return this.$store.state.filter.iab;
@@ -87,16 +98,20 @@ export default defineComponent({
87
98
  return this.$store.state.filter.rubriqueFilter;
88
99
  },
89
100
  isDisplay(): boolean {
90
- return "homePriv" === this.$route.name ||"home" === this.$route.name ||"podcasts" === this.$route.name||"emissions" === this.$route.name;
101
+ return ("homePriv" === this.$route.name ||"home" === this.$route.name ||"podcasts" === this.$route.name||"emissions" === this.$route.name)
102
+ && (this.isCategories || undefined!==this.categoryFilter || 0!==this.rubriqueFilter.length || 0!==this.rubriquageFilter.length);
91
103
  },
92
104
  rubriquageFilter(): Array<Rubriquage>{
93
105
  if(this.$store.state.filter.organisationId){
94
106
  return this.$store.state.filter.rubriquageArray;
95
107
  }
96
108
  return [];
97
- }
109
+ },
98
110
  },
99
111
  methods:{
112
+ checkIfCategories(length: number): void{
113
+ this.isCategories = 0!==length;
114
+ },
100
115
  onRubriqueSelected(index: number, rubrique: Rubrique): void {
101
116
  if(!rubrique ||this.rubriqueFilter[index].rubriqueId === rubrique.rubriqueId){
102
117
  return;
@@ -145,4 +160,15 @@ export default defineComponent({
145
160
  }
146
161
  }
147
162
  })
148
- </script>
163
+ </script>
164
+ <style lang="scss">
165
+ .categary-filter-no-filter{
166
+ position: absolute;
167
+ top: 0;
168
+ bottom: 0;
169
+ right: 0;
170
+ left: 0;
171
+ background: white;
172
+ z-index: -1;
173
+ }
174
+ </style>
@@ -1,5 +1,8 @@
1
1
  <template>
2
- <div class="d-inline-flex w-100 mb-3 ps-3 pe-3 hide-phone category-list">
2
+ <div
3
+ v-if="categories.length"
4
+ class="d-inline-flex w-100 mb-3 ps-3 pe-3 hide-phone category-list"
5
+ >
3
6
  <div
4
7
  id="category-list-container"
5
8
  class="category-list-container"
@@ -49,7 +52,9 @@ export default defineComponent({
49
52
 
50
53
  props: {
51
54
  isFilter: { default: false, type: Boolean },
55
+ isDisplay: { default: false, type: Boolean },
52
56
  },
57
+ emits:['categoriesLength'],
53
58
 
54
59
  data() {
55
60
  return {
@@ -65,27 +70,36 @@ export default defineComponent({
65
70
  return this.$store.state.categories;
66
71
  },
67
72
  categories(): Array<Category> {
73
+ let arrayCategories: Array<Category> = [];
68
74
  if (this.filterOrga) {
69
- return this.$store.state.categoriesOrga.filter((c: Category) => {
75
+ arrayCategories = this.$store.state.categoriesOrga.filter((c: Category) => {
70
76
  return c.podcastOrganisationCount;
71
77
  });
78
+ }else{
79
+ arrayCategories = this.$store.state.categories.filter((c: Category) => {
80
+ if (this.isPodcastmaker) return c.podcastOrganisationCount;
81
+ return c.podcastCount;
82
+ });
72
83
  }
73
- return this.$store.state.categories.filter((c: Category) => {
74
- if (this.isPodcastmaker) return c.podcastOrganisationCount;
75
- return c.podcastCount;
76
- });
84
+ this.$emit('categoriesLength', arrayCategories.length);
85
+ return arrayCategories;
77
86
  },
78
87
  filterOrga(): string {
79
88
  return this.$store.state.filter.organisationId;
80
89
  },
81
90
  },
82
91
  watch: {
83
- categories: {
84
- deep: true,
85
- handler(){
92
+ isDisplay():void{
86
93
  this.$nextTick(() => {
87
94
  this.resizeWindow();
88
95
  });
96
+ },
97
+ categories: {
98
+ deep: true,
99
+ handler(){
100
+ this.$nextTick(() => {
101
+ this.resizeWindow();
102
+ });
89
103
  }
90
104
  },
91
105
  filterOrga(): void {
@@ -12,7 +12,7 @@
12
12
  </template>
13
13
  </h1>
14
14
  <div
15
- class="d-flex flex-column align-items-center"
15
+ class="d-flex flex-column align-items-center mb-3"
16
16
  >
17
17
  <div
18
18
  class="img-box-circle mb-3"
@@ -43,7 +43,7 @@
43
43
  <div class="saooti-rss-bounty" />
44
44
  </a>
45
45
  </div>
46
- <div class="d-flex">
46
+ <div class="d-flex mt-3">
47
47
  <EditBox
48
48
  v-if="editRight && isEditBox"
49
49
  :participant="participant"
@@ -68,6 +68,7 @@
68
68
  :fetch-conference="fetchConference"
69
69
  />
70
70
  <PodcastInlineList
71
+ class="mt-4"
71
72
  :emission-id="podcast.emission.emissionId"
72
73
  :href="'/main/pub/emission/' + podcast.emission.emissionId"
73
74
  :title="$t('More episodes of this emission')"