216 lines
4.7 KiB
Svelte
216 lines
4.7 KiB
Svelte
<script>
|
|
import { onMount, getContext } from "svelte"
|
|
import { store, backendUiStore } from "builderStore"
|
|
import { Button } from "@budibase/bbui"
|
|
import Select from "components/common/Select.svelte"
|
|
import ActionButton from "components/common/ActionButton.svelte"
|
|
import LinkedRecord from "./LinkedRecord.svelte"
|
|
import TablePagination from "./TablePagination.svelte"
|
|
import { DeleteRecordModal, CreateEditRecordModal } from "./modals"
|
|
import * as api from "./api"
|
|
|
|
const { open, close } = getContext("simple-modal")
|
|
|
|
const editRecord = async row => {
|
|
open(
|
|
CreateEditRecordModal,
|
|
{
|
|
onClosed: close,
|
|
record: row,
|
|
},
|
|
{ styleContent: { padding: "0" } }
|
|
)
|
|
}
|
|
|
|
const deleteRecord = async row => {
|
|
open(
|
|
DeleteRecordModal,
|
|
{
|
|
onClosed: close,
|
|
record: row,
|
|
},
|
|
{ styleContent: { padding: "0" } }
|
|
)
|
|
}
|
|
|
|
const ITEMS_PER_PAGE = 10
|
|
// Internal headers we want to hide from the user
|
|
const INTERNAL_HEADERS = ["_id", "_rev", "modelId", "type"]
|
|
|
|
let modalOpen = false
|
|
let data = []
|
|
let headers = []
|
|
let views = []
|
|
let currentPage = 0
|
|
let search
|
|
|
|
$: {
|
|
if ($backendUiStore.selectedView) {
|
|
api.fetchDataForView($backendUiStore.selectedView).then(records => {
|
|
data = records || []
|
|
})
|
|
}
|
|
}
|
|
|
|
$: paginatedData = data
|
|
? data.slice(
|
|
currentPage * ITEMS_PER_PAGE,
|
|
currentPage * ITEMS_PER_PAGE + ITEMS_PER_PAGE
|
|
)
|
|
: []
|
|
|
|
$: headers = Object.keys($backendUiStore.selectedModel.schema).filter(
|
|
id => !INTERNAL_HEADERS.includes(id)
|
|
)
|
|
|
|
$: schema = $backendUiStore.selectedModel.schema
|
|
|
|
const createNewRecord = () => {
|
|
open(
|
|
CreateEditRecordModal,
|
|
{
|
|
onClosed: close,
|
|
},
|
|
{ styleContent: { padding: "0" } }
|
|
)
|
|
}
|
|
|
|
onMount(() => {
|
|
if (views.length) {
|
|
backendUiStore.actions.views.select(views[0])
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<section>
|
|
<div class="table-controls">
|
|
<h2 class="title">{$backendUiStore.selectedModel.name}</h2>
|
|
<Button primary on:click={createNewRecord}>
|
|
<span class="button-inner">
|
|
<i class="ri-add-circle-fill" />
|
|
Create New Record
|
|
</span>
|
|
</Button>
|
|
</div>
|
|
<table class="uk-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Edit</th>
|
|
{#each headers as header}
|
|
<th>{$backendUiStore.selectedModel.schema[header].name}</th>
|
|
{/each}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{#if paginatedData.length === 0}
|
|
<div class="no-data">No Data.</div>
|
|
{/if}
|
|
{#each paginatedData as row}
|
|
<tr class="hoverable">
|
|
<td>
|
|
<div class="uk-inline">
|
|
<i class="ri-more-line" />
|
|
<div uk-dropdown="mode: click">
|
|
<ul class="uk-nav uk-dropdown-nav">
|
|
<li
|
|
on:click={() => {
|
|
editRecord(row)
|
|
}}>
|
|
<div>Edit</div>
|
|
</li>
|
|
<li>
|
|
<div
|
|
on:click={() => {
|
|
deleteRecord(row)
|
|
}}>
|
|
Delete
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
{#each headers as header}
|
|
<td>
|
|
{#if schema[header].type === 'link'}
|
|
<LinkedRecord field={schema[header]} ids={row[header]} />
|
|
{:else}{row[header]}{/if}
|
|
</td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
<TablePagination
|
|
{data}
|
|
bind:currentPage
|
|
pageItemCount={data.length}
|
|
{ITEMS_PER_PAGE} />
|
|
</section>
|
|
|
|
<style>
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
text-rendering: optimizeLegibility;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
table {
|
|
border: 1px solid var(--grey-4);
|
|
background: #fff;
|
|
border-radius: 3px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
thead {
|
|
background: var(--blue-light);
|
|
border: 1px solid var(--grey-4);
|
|
}
|
|
|
|
thead th {
|
|
color: var(--ink);
|
|
text-transform: capitalize;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
tbody tr {
|
|
border-bottom: 1px solid var(--grey-4);
|
|
transition: 0.3s background-color;
|
|
color: var(--ink);
|
|
font-size: 14px;
|
|
}
|
|
|
|
tbody tr:hover {
|
|
background: var(--grey-1);
|
|
}
|
|
|
|
.table-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.ri-more-line:hover,
|
|
.uk-dropdown-nav li:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.no-data {
|
|
padding: 20px;
|
|
}
|
|
|
|
.button-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.button-inner i {
|
|
margin-right: 5px;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|