141 lines
3.6 KiB
Svelte
141 lines
3.6 KiB
Svelte
<script>
|
|
import { onMount } from "svelte"
|
|
import { goto, params } from "@roxi/routify"
|
|
import {
|
|
store,
|
|
allScreens,
|
|
selectedAccessRole,
|
|
screenSearchString,
|
|
} from "builderStore"
|
|
import { roles } from "stores/backend"
|
|
import ComponentNavigationTree from "components/design/NavigationPanel/ComponentNavigationTree/index.svelte"
|
|
import Layout from "components/design/NavigationPanel/Layout.svelte"
|
|
import NewScreenModal from "components/design/NavigationPanel/NewScreenModal.svelte"
|
|
import NewLayoutModal from "components/design/NavigationPanel/NewLayoutModal.svelte"
|
|
import { Icon, Modal, Select, Search, Tabs, Tab } from "@budibase/bbui"
|
|
|
|
const tabs = [
|
|
{
|
|
title: "Screens",
|
|
key: "screen",
|
|
},
|
|
{
|
|
title: "Layouts",
|
|
key: "layout",
|
|
},
|
|
]
|
|
|
|
let modal
|
|
$: selected =
|
|
tabs.find((t) => t.key === $params.assetType)?.title || "Screens"
|
|
|
|
const navigate = ({ detail }) => {
|
|
const { key } = tabs.find((t) => t.title === detail)
|
|
$goto(`../${key}`)
|
|
}
|
|
|
|
const updateAccessRole = (event) => {
|
|
const role = event.detail
|
|
|
|
// Select a valid screen with this new role - otherwise we'll not be
|
|
// able to change role at all because ComponentNavigationTree will kick us
|
|
// back the current role again because the same screen ID is still selected
|
|
const firstValidScreenId = $allScreens.find(
|
|
(screen) => screen.routing.roleId === role
|
|
)?._id
|
|
if (firstValidScreenId) {
|
|
store.actions.screens.select(firstValidScreenId)
|
|
}
|
|
|
|
// Otherwise clear the selected screen ID so that the first new valid screen
|
|
// can be selected by ComponentNavigationTree
|
|
else {
|
|
store.update((state) => {
|
|
state.selectedScreenId = null
|
|
return state
|
|
})
|
|
}
|
|
|
|
selectedAccessRole.set(role)
|
|
}
|
|
|
|
onMount(() => {
|
|
store.actions.routing.fetch()
|
|
})
|
|
</script>
|
|
|
|
<div class="title">
|
|
<Tabs {selected} on:select={navigate}>
|
|
<Tab title="Screens">
|
|
<div class="tab-content-padding">
|
|
<div class="role-select">
|
|
<Select
|
|
on:change={updateAccessRole}
|
|
value={$selectedAccessRole}
|
|
label="Filter by Access"
|
|
getOptionLabel={(role) => role.name}
|
|
getOptionValue={(role) => role._id}
|
|
options={$roles}
|
|
/>
|
|
<Search
|
|
placeholder="Enter a route to search"
|
|
label="Search Screens"
|
|
bind:value={$screenSearchString}
|
|
/>
|
|
</div>
|
|
<div class="nav-items-container">
|
|
<ComponentNavigationTree />
|
|
</div>
|
|
<Modal bind:this={modal}>
|
|
<NewScreenModal />
|
|
</Modal>
|
|
</div>
|
|
</Tab>
|
|
<Tab title="Layouts">
|
|
<div class="tab-content-padding">
|
|
{#each $store.layouts as layout, idx (layout._id)}
|
|
<Layout {layout} border={idx > 0} />
|
|
{/each}
|
|
<Modal bind:this={modal}>
|
|
<NewLayoutModal />
|
|
</Modal>
|
|
</div>
|
|
</Tab>
|
|
</Tabs>
|
|
<div class="add-button">
|
|
<Icon hoverable name="AddCircle" on:click={modal.show} />
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
position: relative;
|
|
}
|
|
.add-button {
|
|
position: absolute;
|
|
top: var(--spacing-l);
|
|
right: var(--spacing-xl);
|
|
}
|
|
.title i:hover {
|
|
cursor: pointer;
|
|
color: var(--blue);
|
|
}
|
|
|
|
.role-select {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
margin-bottom: var(--spacing-m);
|
|
gap: var(--spacing-m);
|
|
}
|
|
|
|
.tab-content-padding {
|
|
padding: 0 var(--spacing-xl);
|
|
}
|
|
</style>
|