mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 15:25:59 +00:00
145 lines
3.7 KiB
Svelte
145 lines
3.7 KiB
Svelte
<script lang="ts">
|
|
import { findForeignKeyForColumn } from 'dbgate-tools';
|
|
|
|
import ColumnLabel from '../elements/ColumnLabel.svelte';
|
|
|
|
import CheckboxField from '../forms/CheckboxField.svelte';
|
|
import FontIcon from '../icons/FontIcon.svelte';
|
|
import contextMenu from '../utility/contextMenu';
|
|
export let column;
|
|
export let table;
|
|
export let designer;
|
|
export let designerId;
|
|
export let onChangeColumn;
|
|
export let domLine;
|
|
export let sourceDragColumn$;
|
|
export let targetDragColumn$;
|
|
export let onCreateReference;
|
|
export let onAddReferenceByColumn;
|
|
export let onSelectColumn;
|
|
|
|
$: designerColumn = (designer.columns || []).find(
|
|
x => x.designerId == designerId && x.columnName == column.columnName
|
|
);
|
|
|
|
function createMenu() {
|
|
const foreignKey = findForeignKeyForColumn(table, column);
|
|
const setSortOrder = sortOrder => {
|
|
onChangeColumn(
|
|
{
|
|
...column,
|
|
designerId,
|
|
},
|
|
col => ({ ...col, sortOrder })
|
|
);
|
|
};
|
|
const addReference = () => {
|
|
onAddReferenceByColumn(designerId, foreignKey);
|
|
};
|
|
|
|
return [
|
|
{ text: 'Sort ascending', onClick: () => setSortOrder(1) },
|
|
{ text: 'Sort descending', onClick: () => setSortOrder(-1) },
|
|
{ text: 'Unsort', onClick: () => setSortOrder(0) },
|
|
foreignKey && { text: 'Add reference', onClick: addReference },
|
|
];
|
|
}
|
|
</script>
|
|
|
|
<div
|
|
class="line"
|
|
bind:this={domLine}
|
|
draggable={true}
|
|
on:dragstart={e => {
|
|
const dragData = {
|
|
...column,
|
|
designerId,
|
|
};
|
|
sourceDragColumn$.set(dragData);
|
|
e.dataTransfer.setData('designer_column_drag_data', JSON.stringify(dragData));
|
|
}}
|
|
on:dragend={e => {
|
|
sourceDragColumn$.set(null);
|
|
targetDragColumn$.set(null);
|
|
}}
|
|
on:dragover={e => {
|
|
if ($sourceDragColumn$) {
|
|
e.preventDefault();
|
|
targetDragColumn$.set({
|
|
...column,
|
|
designerId,
|
|
});
|
|
}
|
|
}}
|
|
on:drop={e => {
|
|
var data = e.dataTransfer.getData('designer_column_drag_data');
|
|
e.preventDefault();
|
|
if (!data) return;
|
|
onCreateReference($sourceDragColumn$, $targetDragColumn$);
|
|
sourceDragColumn$.set(null);
|
|
targetDragColumn$.set(null);
|
|
}}
|
|
class:isDragSource={$sourceDragColumn$ &&
|
|
$sourceDragColumn$.designerId == designerId &&
|
|
$sourceDragColumn$.columnName == column.columnName}
|
|
class:isDragTarget={$targetDragColumn$ &&
|
|
$targetDragColumn$.designerId == designerId &&
|
|
$targetDragColumn$.columnName == column.columnName}
|
|
on:mousedown={e =>
|
|
onSelectColumn({
|
|
...column,
|
|
designerId,
|
|
})}
|
|
use:contextMenu={createMenu}
|
|
>
|
|
<CheckboxField
|
|
checked={!!(designer.columns || []).find(
|
|
x => x.designerId == designerId && x.columnName == column.columnName && x.isOutput
|
|
)}
|
|
on:change={e => {
|
|
if (e.target.checked) {
|
|
onChangeColumn(
|
|
{
|
|
...column,
|
|
designerId,
|
|
},
|
|
col => ({ ...col, isOutput: true })
|
|
);
|
|
} else {
|
|
onChangeColumn(
|
|
{
|
|
...column,
|
|
designerId,
|
|
},
|
|
col => ({ ...col, isOutput: false })
|
|
);
|
|
}
|
|
}}
|
|
/>
|
|
<ColumnLabel {...column} foreignKey={findForeignKeyForColumn(table, column)} forceIcon />
|
|
{#if designerColumn?.filter}
|
|
<FontIcon icon="img filter" />
|
|
{/if}
|
|
{#if designerColumn?.sortOrder > 0}
|
|
<FontIcon icon="img sort-asc" />
|
|
{/if}
|
|
{#if designerColumn?.sortOrder < 0}
|
|
<FontIcon icon="img sort-desc" />
|
|
{/if}
|
|
{#if designerColumn?.isGrouped}
|
|
<FontIcon icon="img group" />
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.line:hover {
|
|
background: var(--theme-bg-1);
|
|
}
|
|
.line.isDragSource {
|
|
background: var(--theme-bg-gold);
|
|
}
|
|
.line.isDragTarget {
|
|
background: var(--theme-bg-gold);
|
|
}
|
|
</style>
|