1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

adds functionality to navigate to specific component via URL

This commit is contained in:
kevmodrome 2020-05-01 16:20:25 +02:00
parent 3fba410cf8
commit bb213d743a

View file

@ -1,14 +1,51 @@
<script> <script>
import { onMount } from "svelte" import { onMount } from "svelte"
import { params } from "@sveltech/routify" import { params, leftover } from "@sveltech/routify"
import { store } from "builderStore" import { store } from "builderStore"
// Get any leftover params not caught by Routifys params store.
const componentIds = $leftover.split("/").filter(id => id !== "")
// It's a screen, set it to that screen
if ($params.screen !== "page-layout") { if ($params.screen !== "page-layout") {
store.setCurrentScreen($params.screen) store.setCurrentScreen($params.screen)
// There are leftover stuff, like IDs, so navigate the components and find the ID and select it.
if ($leftover) {
// Get the correct screen children.
const screenChildren = $store.pages[$params.page]._screens.find(
screen => screen.name === $params.screen
).props._children
findComponent(componentIds, screenChildren)
}
} else { } else {
// It's a page, so set the screentype to page.
store.setScreenType("page") store.setScreenType("page")
// There are leftover stuff, like IDs, so navigate the components and find the ID and select it.
if ($leftover) {
findComponent(componentIds, $store.pages[$params.page].props._children)
}
}
// Find Component with ID and continue
function findComponent(ids, children) {
// Setup stuff
let componentToSelect
let currentChildren = children
// Loop through each ID
ids.forEach(id => {
// Find ID and select it
componentToSelect = currentChildren.find(child => child._id === id)
// Update childrens array to selected components children
currentChildren = componentToSelect._children
})
// Select Component!
store.selectComponent(componentToSelect)
} }
</script> </script>
<slot /> <slot />
store.setScreenType("page")