mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 18:56:00 +00:00
87 lines
2.9 KiB
Svelte
87 lines
2.9 KiB
Svelte
<script lang="ts">
|
|
import uuidv1 from 'uuid/v1';
|
|
import FormStyledButton from '../elements/FormStyledButton.svelte';
|
|
|
|
import FormSelectField from '../forms/FormSelectField.svelte';
|
|
import FormTextField from '../forms/FormTextField.svelte';
|
|
import FormCheckboxField from '../forms/FormCheckboxField.svelte';
|
|
|
|
import FormProvider from '../forms/FormProvider.svelte';
|
|
import FormSubmit from '../forms/FormSubmit.svelte';
|
|
import ModalBase from '../modals/ModalBase.svelte';
|
|
import { closeCurrentModal } from '../modals/modalTools';
|
|
import ElectronFilesInput from '../impexp/ElectronFilesInput.svelte';
|
|
|
|
export let columnInfo;
|
|
export let setTableInfo;
|
|
export let tableInfo;
|
|
export let onAddNext;
|
|
|
|
</script>
|
|
|
|
<FormProvider initialValues={columnInfo}>
|
|
<ModalBase {...$$restProps}>
|
|
<svelte:fragment slot="header"
|
|
>{columnInfo ? 'Edit column' : `Add column ${(tableInfo?.columns || []).length + 1}`}</svelte:fragment
|
|
>
|
|
|
|
<FormTextField name="columnName" label="Column name" focused />
|
|
<FormTextField name="dataType" label="Data type" />
|
|
<!-- <FormSelectField name="dataType" label="Data type" /> -->
|
|
<FormCheckboxField name="notNull" label="NOT NULL" />
|
|
<!-- <FormCheckboxField name="isPrimaryKey" label="Is Primary Key" /> -->
|
|
<FormCheckboxField name="autoIncrement" label="Is Autoincrement" />
|
|
<FormTextField name="defaultValue" label="Default value" />
|
|
<FormTextField name="computedExpression" label="Computed expression" />
|
|
|
|
<svelte:fragment slot="footer">
|
|
<FormSubmit
|
|
value={columnInfo ? 'Save' : 'Save and next'}
|
|
on:click={e => {
|
|
closeCurrentModal();
|
|
if (columnInfo) {
|
|
setTableInfo(tbl => ({
|
|
...tbl,
|
|
columns: tbl.columns.map(col => (col.pairingId == columnInfo.pairingId ? e.detail : col)),
|
|
}));
|
|
} else {
|
|
setTableInfo(tbl => ({
|
|
...tbl,
|
|
columns: [...tbl.columns, { ...e.detail, pairingId: uuidv1() }],
|
|
}));
|
|
if (onAddNext) onAddNext();
|
|
}
|
|
}}
|
|
/>
|
|
{#if !columnInfo}
|
|
<FormStyledButton
|
|
type="button"
|
|
value="Save"
|
|
on:click={e => {
|
|
closeCurrentModal();
|
|
setTableInfo(tbl => ({
|
|
...tbl,
|
|
columns: [...tbl.columns, { ...e.detail, pairingId: uuidv1() }],
|
|
}));
|
|
}}
|
|
/>
|
|
{/if}
|
|
|
|
<FormStyledButton type="button" value="Close" on:click={closeCurrentModal} />
|
|
{#if columnInfo}
|
|
<FormStyledButton
|
|
type="button"
|
|
value="Remove"
|
|
on:click={() => {
|
|
closeCurrentModal();
|
|
setTableInfo(tbl => ({
|
|
...tbl,
|
|
columns: tbl.columns.filter(col => col.pairingId != columnInfo.pairingId),
|
|
}));
|
|
}}
|
|
/>
|
|
{/if}
|
|
</svelte:fragment>
|
|
</ModalBase>
|
|
</FormProvider>
|