1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Fixing some UI stuff after discussing with Andrew K - making sure auto-columns always appear at end of table.

This commit is contained in:
mike12345567 2021-02-16 16:22:25 +00:00
parent 1a9d16c8c7
commit cafb50bce6
3 changed files with 29 additions and 12 deletions

View file

@ -100,6 +100,7 @@
},
headerName: value.displayFieldName || key,
field: key,
autocolumn: !!value.autocolumn,
sortable: true,
cellRenderer: getRenderer({
schema: schema[key],
@ -114,8 +115,8 @@
minWidth: 200,
})
}
columnDefs = result
// sort auto-columns to the end if they are present
columnDefs = result.filter(col => !col.autocolumn).concat(result.filter(col => col.autocolumn))
}
function selectRelationship(row, fieldName) {

View file

@ -59,8 +59,13 @@
on:mouseover={() => (hovered = true)}
on:mouseleave={() => (hovered = false)}>
<div>
<span class="column-header-name">{displayName}</span>
<i class={`${SORT_ICON_MAP[sortDirection]} sort-icon`} />
<div class="col-icon">
{#if field.autocolumn}
<i class="auto ri-magic-fill"></i>
{/if}
<span class="column-header-name">{displayName}</span>
</div>
<i class={`${SORT_ICON_MAP[sortDirection]} sort-icon icon`} />
</div>
<Modal bind:this={modal}>
<ModalContent
@ -73,11 +78,11 @@
<section class:show={hovered || filterActive}>
{#if editable && hovered}
<span on:click|stopPropagation={showModal}>
<i class="ri-pencil-line" />
<i class="ri-pencil-line icon" />
</span>
{/if}
<span on:click|stopPropagation={toggleMenu} bind:this={menuButton}>
<i class="ri-filter-line" class:active={filterActive} />
<i class="ri-filter-line icon" class:active={filterActive} />
</span>
</section>
</header>
@ -117,18 +122,29 @@
top: 2px;
}
i {
.icon {
transition: 0.2s all;
font-size: var(--font-size-m);
font-weight: 500;
}
i:hover {
.col-icon {
display: flex;
}
.auto {
font-size: var(--font-size-xs);
transition: none;
margin-right: 6px;
margin-top: 2px;
}
.icon:hover {
color: var(--blue);
}
i.active,
i:hover {
.icon.active,
.icon:hover {
color: var(--blue);
}
</style>

View file

@ -14,10 +14,10 @@
<div bind:this={anchor}>
<TextButton text small on:click={hideOrUnhide}>
{#if hideAutocolumns}
<i class="ri-magic-fill"></i>
<i class="ri-magic-line"></i>
Show Auto Columns
{:else}
<i class="ri-magic-line"></i>
<i class="ri-magic-fill"></i>
Hide Auto Columns
{/if}
</TextButton>