Skip to content

Commit 4965ea2

Browse files
fix(imports): add imports to stores and components
1 parent 7e4053a commit 4965ea2

20 files changed

+45
-1
lines changed

components/Errors/Banner.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
</template>
4444

4545
<script setup>
46+
import { use_errors_store } from "@/stores/errors"
4647
const errors_store = use_errors_store()
4748
const { server_error } = storeToRefs(errors_store)
4849

components/Errors/Snackers.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
</template>
5656

5757
<script setup>
58+
import { use_errors_store } from "@/stores/errors"
5859
const errors_store = use_errors_store()
5960
const { errors } = storeToRefs(errors_store)
6061

components/ExtensionSelector.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
</template>
5151

5252
<script setup>
53+
import FetchingData from "@/components/FetchingData.vue"
5354
const emit = defineEmits([
5455
"update_values",
5556
"increment_step",

components/FileSelector.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
</template>
99

1010
<script setup>
11+
import FetchingData from "@/components/FetchingData.vue"
12+
import FileUploader from "@/components/FileUploader.vue"
1113
const emit = defineEmits([
1214
"update_values",
1315
"increment_step",

components/Launcher.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@
1818
</template>
1919

2020
<script setup>
21+
import Recaptcha from "@/components/Recaptcha.vue"
22+
import Loading from "@/components/Loading.vue"
23+
24+
import { storeToRefs } from "pinia"
25+
import { use_websocket_store } from "@/stores/websocket"
26+
import { use_cloud_store } from "@/stores/cloud"
27+
2128
const websocket_store = use_websocket_store()
2229
const cloud_store = use_cloud_store()
2330
const { is_captcha_validated, is_connexion_launched, is_running } =

components/MissingFilesSelector.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
</template>
4444

4545
<script setup>
46+
import FetchingData from "@/components/FetchingData.vue"
47+
import FileUploader from "@/components/FileUploader.vue"
4648
const emit = defineEmits([
4749
"update_values",
4850
"increment_step",

components/ObjectSelector.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
</template>
3232

3333
<script setup>
34+
import FetchingData from "@/components/FetchingData.vue"
3435
import geode_objects from "@/assets/geode_objects"
3536
3637
const emit = defineEmits(["update_values", "increment_step"])

components/PackagesVersions.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
</template>
2020

2121
<script setup>
22+
import { use_cloud_store } from "@/stores/cloud"
2223
const cloud_store = use_cloud_store()
2324
const { is_running } = storeToRefs(cloud_store)
2425

components/Recaptcha.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<script setup>
1515
import { VueRecaptcha } from "vue-recaptcha"
16-
16+
import { use_cloud_store } from "@/stores/cloud"
1717
const cloud_store = use_cloud_store()
1818
const { is_captcha_validated } = storeToRefs(cloud_store)
1919

components/RemoteRenderingView.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
<script setup>
2424
import vtkRemoteView from "@kitware/vtk.js/Rendering/Misc/RemoteView"
2525
import { useElementSize } from "@vueuse/core"
26+
import { use_viewer_store } from "@/stores/viewer"
27+
import { use_websocket_store } from "@/stores/websocket"
2628
2729
const viewer_store = use_viewer_store()
2830
const { picking_mode } = storeToRefs(viewer_store)

0 commit comments

Comments
 (0)