1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

component tree layout/screen agnostic

This commit is contained in:
Martin McKeaveney 2020-12-02 15:19:38 +00:00
parent e9297ee1c7
commit f9736ec3bc
2 changed files with 13 additions and 7 deletions

View file

@ -24,11 +24,12 @@
const path = store.actions.components.findRoute(component)
// Go to correct URL
if (layout) {
$goto(`./layouts/:layout/${path}`)
} else {
$goto(`./screens/:screen/${path}`)
}
$goto(`./${path}`)
// if (layout) {
// $goto(`./layouts/:layout/${path}`)
// } else {
// $goto(`./screens/:screen/${path}`)
// }
}
const dragstart = component => e => {

View file

@ -28,6 +28,7 @@
store.actions.components.create(component._component, component.presetProps)
const path = store.actions.components.findRoute($store.currentComponentInfo)
$goto(`./:screen/${path}`)
// $goto(`./${path}`)
close()
}
</script>
@ -39,9 +40,13 @@
class="category"
on:click={() => onCategoryChosen(category, idx)}
class:active={idx === selectedIndex}>
{#if category.icon}<i class={category.icon} />{/if}
{#if category.icon}
<i class={category.icon} />
{/if}
<span>{category.name}</span>
{#if category.isCategory}<i class="ri-arrow-down-s-line arrow" />{/if}
{#if category.isCategory}
<i class="ri-arrow-down-s-line arrow" />
{/if}
</div>
{/each}
</div>