118 lines
2.4 KiB
Svelte
118 lines
2.4 KiB
Svelte
<script>
|
|
import groupBy from "lodash/fp/groupBy"
|
|
import { Button, TextArea, Drawer, Heading, Spacer } from "@budibase/bbui"
|
|
import { createEventDispatcher } from "svelte"
|
|
|
|
const dispatch = createEventDispatcher()
|
|
export let bindableProperties
|
|
export let value = ""
|
|
export let bindingDrawer
|
|
|
|
function addToText(readableBinding) {
|
|
value = `${value || ""}{{ ${readableBinding} }}`
|
|
}
|
|
let originalValue = value
|
|
|
|
$: dispatch("update", value)
|
|
|
|
export function cancel() {
|
|
dispatch("update", originalValue)
|
|
bindingDrawer.close()
|
|
}
|
|
|
|
$: ({ instance, context } = groupBy("type", bindableProperties))
|
|
</script>
|
|
|
|
<div class="drawer-contents">
|
|
<div class="container" data-cy="binding-dropdown-modal">
|
|
<div class="list">
|
|
{#if context}
|
|
<Heading extraSmall>Columns</Heading>
|
|
<Spacer small />
|
|
<ul>
|
|
{#each context as { readableBinding }}
|
|
<li on:click={() => addToText(readableBinding)}>
|
|
{readableBinding}
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
{/if}
|
|
{#if instance}
|
|
<Heading extraSmall>Components</Heading>
|
|
<ul>
|
|
{#each instance as { readableBinding }}
|
|
<li on:click={() => addToText(readableBinding)}>
|
|
{readableBinding}
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
{/if}
|
|
</div>
|
|
<div class="text">
|
|
<TextArea
|
|
thin
|
|
bind:value
|
|
placeholder="Add text, or click the objects on the left to add them to
|
|
the textbox." />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.container {
|
|
height: 100%;
|
|
display: grid;
|
|
grid-template-columns: 260px 1fr;
|
|
}
|
|
.list {
|
|
border-right: var(--border-light);
|
|
padding: var(--spacing-l);
|
|
overflow: auto;
|
|
}
|
|
|
|
.list::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.text {
|
|
padding: var(--spacing-xl);
|
|
font-family: var(--font-sans);
|
|
}
|
|
.text :global(p) {
|
|
margin: 0;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
display: flex;
|
|
font-family: var(--font-sans);
|
|
font-size: var(--font-size-xs);
|
|
color: var(--grey-7);
|
|
padding: var(--spacing-m) 0;
|
|
margin: auto 0px;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
border: var(--border-light);
|
|
border-width: 1px 0 1px 0;
|
|
}
|
|
|
|
li:hover {
|
|
color: var(--ink);
|
|
font-weight: 500;
|
|
}
|
|
|
|
li:active {
|
|
color: var(--blue);
|
|
}
|
|
|
|
.drawer-contents {
|
|
height: 40vh;
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|