fix flow of wizard
This commit is contained in:
parent
39192e4e7f
commit
468a7caa07
|
@ -1,13 +1,25 @@
|
|||
<script>
|
||||
import { goto } from "@roxi/routify"
|
||||
import { onMount } from "svelte"
|
||||
import CreateDatasourceModal from "components/backend/DatasourceNavigator/modals/CreateDatasourceModal.svelte"
|
||||
import { datasources } from "stores/backend"
|
||||
|
||||
let modal
|
||||
$: setupComplete =
|
||||
$datasources.list.find(x => (x._id = "bb_internal")).entities.length > 1 ||
|
||||
$datasources.list > 1
|
||||
$datasources.list.length >= 1
|
||||
$: console.log($datasources.list.length >= 1)
|
||||
$: console.log(
|
||||
$datasources.list.find(x => (x._id = "bb_internal")).entities.length > 1
|
||||
)
|
||||
onMount(() => {
|
||||
if (!setupComplete) {
|
||||
modal.show()
|
||||
} else {
|
||||
$goto("./table")
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
{#if !setupComplete}
|
||||
<CreateDatasourceModal />
|
||||
{/if}
|
||||
<CreateDatasourceModal bind:modal />
|
||||
<!-- routify:options index=false -->
|
||||
|
|
Loading…
Reference in New Issue