1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-19 05:27:57 +00:00
rolens/frontend/src/components/grid.svelte

88 lines
1.7 KiB
Svelte

<script>
import GridItems from './grid-items.svelte';
import Icon from './icon.svelte';
export let columns = [];
export let items = [];
export let actions = [];
export let key = 'id';
export let activeKey = '';
export let activeChildKey = '';
export let showHeaders = true;
export let level = 0;
</script>
<div class:grid={level === 0} class:subgrid={level > 0}>
{#if actions?.length}
<div class="actions">
{#each actions as action}
<button class="btn" on:click={action.fn} disabled={action.disabled}>
{#if action.icon}<Icon name={action.icon} />{/if}
{action.label || ''}
</button>
{/each}
</div>
{/if}
<table>
{#if showHeaders && columns.some(col => col.title)}
<thead>
<tr>
<th class="has-toggle"></th>
{#each columns as column}
<th scope="col">{column.title || ''}</th>
{/each}
</tr>
</thead>
{/if}
<tbody>
<GridItems {items} {columns} {key} bind:activeKey bind:activeChildKey on:select on:selectChild on:trigger />
</tbody>
</table>
</div>
<style>
.grid {
width: 100%;
height: 100%;
background-color: #fff;
}
.subgrid {
width: 100%;
}
.actions {
margin-bottom: 0.5rem;
padding: 0.5rem;
border-bottom: 1px solid #ccc;
}
.actions button {
margin-right: 0.2rem;
}
table {
border-collapse: collapse;
width: 100%;
/* table-layout: fixed; */
}
table thead {
border-bottom: 2px solid #ccc;
}
th {
font-weight: 600;
text-align: left;
}
tr {
cursor: pointer;
}
th {
padding: 0.3rem;
text-overflow: ellipsis;
}
</style>