144 lines
3.3 KiB
Svelte
144 lines
3.3 KiB
Svelte
<script>
|
|
|
|
import ComponentsHierarchy from "./ComponentsHierarchy.svelte";
|
|
import PagesList from "./PagesList.svelte"
|
|
import EditComponent from "./EditComponent.svelte";
|
|
import { store } from "../builderStore";
|
|
import getIcon from "../common/icon";
|
|
import { isRootComponent } from "./pagesParsing/searchComponents";
|
|
import IconButton from "../common/IconButton.svelte";
|
|
import Modal from "../common/Modal.svelte";
|
|
import NewComponent from "./NewComponent.svelte";
|
|
import CurrentItemPreview from "./CurrentItemPreview.svelte";
|
|
import SettingsView from "./SettingsView.svelte";
|
|
|
|
let newComponentPicker;
|
|
const newComponent = () => {
|
|
newComponentPicker.show();
|
|
}
|
|
|
|
let settingsView;
|
|
const settings = () => {
|
|
settingsView.show();
|
|
}
|
|
|
|
</script>
|
|
|
|
<div class="root">
|
|
|
|
<div class="ui-nav">
|
|
|
|
<div class="components-list-container">
|
|
<div class="nav-group-header">
|
|
<div>{@html getIcon("sidebar","18")}</div>
|
|
<span>COMPONENTS</span>
|
|
<div>
|
|
<IconButton icon="settings"
|
|
size="14"
|
|
on:click={settings}/>
|
|
<IconButton icon="plus"
|
|
on:click={newComponent}/>
|
|
</div>
|
|
</div>
|
|
<div class="nav-items-container">
|
|
<ComponentsHierarchy components={$store.allComponents}/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pages-list-container">
|
|
<div class="nav-group-header">
|
|
<div>{@html getIcon("grid","18")}</div>
|
|
<span>PAGES</span>
|
|
</div>
|
|
<div class="nav-items-container">
|
|
<PagesList />
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
{#if $store.currentFrontEndItem}
|
|
<CurrentItemPreview />
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="properties-pane">
|
|
{#if $store.currentFrontEndItem && !isRootComponent($store.currentFrontEndItem)}
|
|
<EditComponent />
|
|
{/if}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<NewComponent bind:this={newComponentPicker}/>
|
|
<SettingsView bind:this={settingsView} />
|
|
|
|
|
|
<style>
|
|
|
|
.root {
|
|
display: grid;
|
|
grid-template-columns: [uiNav] 250px [preview] auto [properties] 300px;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.ui-nav {
|
|
grid-column-start: uiNav;
|
|
background-color: var(--primary10);
|
|
height: 100%;
|
|
}
|
|
|
|
.properties-pane {
|
|
grid-column-start: properties;
|
|
background-color: var(--primary10);
|
|
height: 100%;
|
|
}
|
|
|
|
.pages-list-container {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.nav-group-header {
|
|
font-size: 10pt;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.nav-items-container {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.nav-group-header {
|
|
display:grid;
|
|
grid-template-columns: [icon] auto [title] 1fr [button] auto;
|
|
padding: 10px 2px 0px 7px;
|
|
}
|
|
|
|
.nav-group-header>div:nth-child(1) {
|
|
padding:0px 7px 0px 0px;
|
|
vertical-align: bottom;
|
|
grid-column-start: icon;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.nav-group-header>span:nth-child(2) {
|
|
margin-left:5px;
|
|
vertical-align: bottom;
|
|
grid-column-start: title;
|
|
margin-top:auto;
|
|
}
|
|
|
|
.nav-group-header>div:nth-child(3) {
|
|
vertical-align: bottom;
|
|
grid-column-start: button;
|
|
cursor: pointer;
|
|
color: var(--slate);
|
|
}
|
|
|
|
.nav-group-header>div:nth-child(3):hover {
|
|
color: var(--primary75);
|
|
}
|
|
|
|
</style> |