2020-02-20 18:11:41 +01:00
|
|
|
<script>
|
|
|
|
// import { tick } from "svelte"
|
|
|
|
import ComponentsHierarchyChildren from "./ComponentsHierarchyChildren.svelte"
|
|
|
|
|
|
|
|
import { last, sortBy, map, trimCharsStart, trimChars, join } from "lodash/fp"
|
|
|
|
import ConfirmDialog from "../common/ConfirmDialog.svelte"
|
|
|
|
import { pipe } from "../common/core"
|
|
|
|
import { store } from "../builderStore"
|
|
|
|
import { ArrowDownIcon, GridIcon } from "../common/Icons/"
|
|
|
|
|
|
|
|
export let layout
|
|
|
|
|
|
|
|
let confirmDeleteDialog
|
|
|
|
let componentToDelete = ""
|
|
|
|
|
|
|
|
const joinPath = join("/")
|
|
|
|
|
|
|
|
const normalizedName = name =>
|
|
|
|
pipe(
|
|
|
|
name,
|
|
|
|
[
|
|
|
|
trimCharsStart("./"),
|
|
|
|
trimCharsStart("~/"),
|
|
|
|
trimCharsStart("../"),
|
|
|
|
trimChars(" "),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
const lastPartOfName = c =>
|
|
|
|
c && last(c.name ? c.name.split("/") : c._component.split("/"))
|
|
|
|
|
|
|
|
const isComponentSelected = (current, comp) => current === comp
|
|
|
|
|
|
|
|
const isFolderSelected = (current, folder) => isInSubfolder(current, folder)
|
|
|
|
|
|
|
|
$: _layout = pipe(
|
|
|
|
layout,
|
|
|
|
[c => ({ component: c, title: lastPartOfName(c) })]
|
|
|
|
)
|
|
|
|
|
|
|
|
const isScreenSelected = component =>
|
|
|
|
component.component &&
|
|
|
|
$store.currentPreviewItem &&
|
|
|
|
component.component.name === $store.currentPreviewItem.name
|
|
|
|
|
|
|
|
const confirmDeleteComponent = async component => {
|
|
|
|
console.log(component)
|
|
|
|
componentToDelete = component
|
|
|
|
// await tick()
|
|
|
|
confirmDeleteDialog.show()
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2020-02-24 16:00:48 +01:00
|
|
|
<div
|
|
|
|
class="budibase__nav-item"
|
|
|
|
class:selected={$store.currentComponentInfo._id === _layout.component.props._id}
|
|
|
|
on:click|stopPropagation={() => store.setScreenType('page')}>
|
2020-02-20 18:11:41 +01:00
|
|
|
|
2020-02-24 16:00:48 +01:00
|
|
|
<div class="component">
|
2020-02-20 18:11:41 +01:00
|
|
|
<span
|
|
|
|
class="icon"
|
|
|
|
class:rotate={$store.currentPreviewItem.name !== _layout.title}>
|
|
|
|
{#if _layout.component.props._children.length}
|
|
|
|
<ArrowDownIcon />
|
|
|
|
{/if}
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span class="icon">
|
|
|
|
<GridIcon />
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span class="title">Master Layout</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{#if $store.currentPreviewItem.name === _layout.title && _layout.component.props._children}
|
|
|
|
<ComponentsHierarchyChildren
|
|
|
|
components={_layout.component.props._children}
|
|
|
|
currentComponent={$store.currentComponentInfo}
|
|
|
|
onSelect={store.selectComponent}
|
|
|
|
onDeleteComponent={confirmDeleteComponent}
|
|
|
|
onMoveUpComponent={store.moveUpComponent}
|
|
|
|
onMoveDownComponent={store.moveDownComponent}
|
|
|
|
onCopyComponent={store.copyComponent} />
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ConfirmDialog
|
|
|
|
bind:this={confirmDeleteDialog}
|
|
|
|
title="Confirm Delete"
|
|
|
|
body={`Are you sure you wish to delete this '${lastPartOfName(componentToDelete)}' component`}
|
|
|
|
okText="Delete Component"
|
|
|
|
onOk={() => store.deleteComponent(componentToDelete)} />
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.title {
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: inline-block;
|
|
|
|
transition: 0.2s;
|
|
|
|
width: 20px;
|
|
|
|
margin-top: 2px;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon:nth-of-type(2) {
|
|
|
|
width: 14px;
|
|
|
|
margin: 0 0 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(svg) {
|
|
|
|
transition: 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotate :global(svg) {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
</style>
|