1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00

Add FAB for adding rows and inline row creation

This commit is contained in:
Andrew Kingston 2023-04-21 10:26:55 +01:00
parent 6d2eeff03a
commit eabd57d20b
3 changed files with 36 additions and 3 deletions

View file

@ -0,0 +1,28 @@
<script>
import { Icon } from "@budibase/bbui"
import { getContext } from "svelte"
const { dispatch } = getContext("grid")
</script>
<div class="floating-add-row" on:click={() => dispatch("add-row-inline")}>
<Icon name="Add" size="L" color="white" />
</div>
<style>
.floating-add-row {
position: absolute;
bottom: 32px;
left: 32px;
height: 50px;
width: 50px;
border-radius: 50%;
background: var(--spectrum-global-color-blue-400);
display: grid;
place-items: center;
}
.floating-add-row:hover {
background: var(--spectrum-global-color-blue-500);
cursor: pointer;
}
</style>

View file

@ -22,6 +22,8 @@
import HideColumnsButton from "../controls/HideColumnsButton.svelte"
import AddRowButton from "../controls/AddRowButton.svelte"
import RowHeightButton from "../controls/RowHeightButton.svelte"
import NewRowTop from "./NewRowTop.svelte"
import FloatingAddRowButton from "../controls/FloatingAddRowButton.svelte"
import {
MaxCellRenderHeight,
MaxCellRenderWidthOverflow,
@ -128,9 +130,13 @@
<GridBody />
</div>
<div class="overlays">
<NewRowTop />
<ResizeOverlay />
<ReorderOverlay />
<BetaButton />
{#if allowAddRows}
<FloatingAddRowButton />
{/if}
<ScrollOverlay />
<MenuOverlay />
</div>

View file

@ -89,7 +89,7 @@
style="flex: 0 0 {width}px"
class:scrolled={$scrollLeft > 0}
>
<GridCell width={GutterWidth} {rowHovered} {rowFocused}>
<GridCell width={GutterWidth} {rowHovered} rowFocused>
<div class="gutter">
<div class="number">1</div>
{#if $config.allowExpandRows}
@ -106,11 +106,10 @@
{@const cellId = `new-${$stickyColumn.name}`}
<DataCell
{cellId}
rowFocused
column={$stickyColumn}
row={newRow}
{rowHovered}
focused={$focusedCellId === cellId}
{rowFocused}
width={$stickyColumn.width}
{updateValue}
rowIdx={0}