@saooti/octopus-sdk 38.3.11 → 38.3.12
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/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
<
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
<div class="d-flex flex-column h-100 octopus-app">
|
|
3
|
+
<template v-if="pageFullyLoad">
|
|
4
|
+
<TopBar :is-education="false" />
|
|
5
|
+
<CategoryFilter v-if="firstDisplayCategoryFilter" />
|
|
6
|
+
<div v-else class="category-filter-no-filter" />
|
|
7
|
+
<router-view />
|
|
8
|
+
<ClassicLazy :min-height="125">
|
|
9
|
+
<FooterOctopus />
|
|
10
|
+
</ClassicLazy>
|
|
11
|
+
<PlayerComponent />
|
|
12
|
+
</template>
|
|
11
13
|
</div>
|
|
12
14
|
</template>
|
|
13
15
|
|
|
@@ -47,7 +49,6 @@ export default defineComponent({
|
|
|
47
49
|
data() {
|
|
48
50
|
return {
|
|
49
51
|
reload: false as boolean,
|
|
50
|
-
isInit: false as boolean,
|
|
51
52
|
pageFullyLoad: false as boolean,
|
|
52
53
|
firstDisplayCategoryFilter: false as boolean,
|
|
53
54
|
};
|
|
@@ -97,7 +98,6 @@ export default defineComponent({
|
|
|
97
98
|
await this.handleOrganisationFilter();
|
|
98
99
|
this.handleIabIdFilter();
|
|
99
100
|
this.handleRubriquesFilter();
|
|
100
|
-
this.isInit = true;
|
|
101
101
|
},
|
|
102
102
|
async handleOrganisationFilter() {
|
|
103
103
|
let orgaId = "";
|