listing relationships in UI
This commit is contained in:
parent
eff4aebdfc
commit
6e36e5d06a
|
@ -6,9 +6,13 @@
|
||||||
import EditViewPopover from "./popovers/EditViewPopover.svelte"
|
import EditViewPopover from "./popovers/EditViewPopover.svelte"
|
||||||
import NavItem from "components/common/NavItem.svelte"
|
import NavItem from "components/common/NavItem.svelte"
|
||||||
|
|
||||||
|
const alphabetical = (a, b) => a.name?.toLowerCase() > b.name?.toLowerCase()
|
||||||
|
|
||||||
export let sourceId
|
export let sourceId
|
||||||
|
|
||||||
|
|
||||||
$: selectedView = $views.selected && $views.selected.name
|
$: selectedView = $views.selected && $views.selected.name
|
||||||
|
$: sortedTables = $tables.list.filter(table => table.sourceId === sourceId).sort(alphabetical)
|
||||||
|
|
||||||
function selectTable(table) {
|
function selectTable(table) {
|
||||||
tables.select(table)
|
tables.select(table)
|
||||||
|
@ -33,7 +37,7 @@
|
||||||
|
|
||||||
{#if $database?._id}
|
{#if $database?._id}
|
||||||
<div class="hierarchy-items-container">
|
<div class="hierarchy-items-container">
|
||||||
{#each $tables.list.filter(table => table.sourceId === sourceId) as table, idx}
|
{#each sortedTables as table, idx}
|
||||||
<NavItem
|
<NavItem
|
||||||
indentLevel={1}
|
indentLevel={1}
|
||||||
border={idx > 0}
|
border={idx > 0}
|
||||||
|
@ -46,7 +50,7 @@
|
||||||
<EditTablePopover {table} />
|
<EditTablePopover {table} />
|
||||||
{/if}
|
{/if}
|
||||||
</NavItem>
|
</NavItem>
|
||||||
{#each Object.keys(table.views || {}) as viewName, idx (idx)}
|
{#each [...Object.keys(table.views || {})].sort() as viewName, idx (idx)}
|
||||||
<NavItem
|
<NavItem
|
||||||
indentLevel={2}
|
indentLevel={2}
|
||||||
icon="Remove"
|
icon="Remove"
|
||||||
|
|
|
@ -15,6 +15,19 @@
|
||||||
$: integration = datasource && $integrations[datasource.source]
|
$: integration = datasource && $integrations[datasource.source]
|
||||||
$: plusTables = datasource?.plus ? Object.values(datasource.entities) : []
|
$: plusTables = datasource?.plus ? Object.values(datasource.entities) : []
|
||||||
|
|
||||||
|
function buildRelationshipDisplayString(fromTable, toTable) {
|
||||||
|
let displayString = fromTable.name
|
||||||
|
const toTableName = toTable.tableId?.split("_").pop()
|
||||||
|
|
||||||
|
displayString += `→ ${toTableName} (${toTable.relationshipType})`
|
||||||
|
|
||||||
|
if (toTable.through) {
|
||||||
|
// TODO: Through stuff
|
||||||
|
}
|
||||||
|
|
||||||
|
return displayString
|
||||||
|
}
|
||||||
|
|
||||||
async function saveDatasource() {
|
async function saveDatasource() {
|
||||||
try {
|
try {
|
||||||
// Create datasource
|
// Create datasource
|
||||||
|
@ -133,14 +146,15 @@
|
||||||
</Body>
|
</Body>
|
||||||
<div class="query-list">
|
<div class="query-list">
|
||||||
{#each plusTables as table}
|
{#each plusTables as table}
|
||||||
{#each Object.keys(table) as column}
|
{#each Object.keys(table.schema) as column}
|
||||||
{#if table[column].type === "link"}
|
{#if table.schema[column].type === "link"}
|
||||||
<div
|
<div
|
||||||
class="query-list-item"
|
class="query-list-item"
|
||||||
on:click={() => onClickTable(table[column])}
|
on:click={() => onClickTable(table.schema[column])}
|
||||||
>
|
>
|
||||||
<p class="query-name">{table[column].name}</p>
|
<p class="query-name">{table.schema[column].name}</p>
|
||||||
<p>Primary Key: {table[column].primary}</p>
|
<p>{buildRelationshipDisplayString(table, table.schema[column])}</p>
|
||||||
|
<!-- <p>{table.name} → {getTableNameFromId(table.schema[column].tableId)} ({table.schema[column].relationshipType}) </p> -->
|
||||||
<p>→</p>
|
<p>→</p>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
Loading…
Reference in New Issue