1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

Updated the hover behaviour for bindings and added flags to stop empty sections from rendering

This commit is contained in:
Dean 2022-08-24 12:36:58 +01:00
parent 64382995ee
commit 447f45d71b

View file

@ -177,11 +177,17 @@
> >
<Layout gap="S"> <Layout gap="S">
<div class="helper"> <div class="helper">
<div class="helper__name">{hoverTarget.title}</div> {#if hoverTarget.title}
<div class="helper__description"> <div class="helper__name">{hoverTarget.title}</div>
{@html hoverTarget.description} {/if}
</div> {#if hoverTarget.description}
<pre class="helper__example">{hoverTarget.example}</pre> <div class="helper__description">
{@html hoverTarget.description}
</div>
{/if}
{#if hoverTarget.example}
<pre class="helper__example">{hoverTarget.example}</pre>
{/if}
</div> </div>
</Layout> </Layout>
</Popover> </Popover>
@ -237,11 +243,11 @@
class="binding" class="binding"
on:mouseenter={e => { on:mouseenter={e => {
popoverAnchor = e.target popoverAnchor = e.target
if (!binding.name && !binding.description) { if (!binding.description) {
return return
} }
hoverTarget = { hoverTarget = {
title: binding.name, title: binding.display.name || binding.fieldSchema.name,
description: binding.description, description: binding.description,
} }
popover.show() popover.show()
@ -273,13 +279,6 @@
</span> </span>
</span> </span>
{/if} {/if}
{#if binding.description}
<br />
<div class="binding__description">
{binding.description || ""}
</div>
{/if}
</li> </li>
{/each} {/each}
</ul> </ul>