mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
lookup search
This commit is contained in:
parent
ea1208d0ad
commit
54b476fc27
@ -98,6 +98,7 @@ body {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
border: 1px solid var(--theme-border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.largeFormMarker input[type='password'] {
|
.largeFormMarker input[type='password'] {
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import keycodes from '../utility/keycodes';
|
import keycodes from '../utility/keycodes';
|
||||||
|
import _ from 'lodash';
|
||||||
|
|
||||||
export let placeholder;
|
export let placeholder;
|
||||||
export let value;
|
export let value;
|
||||||
|
|
||||||
|
$: searchValue = value;
|
||||||
|
export let isDebounced = false;
|
||||||
|
|
||||||
let domInput;
|
let domInput;
|
||||||
|
|
||||||
function handleKeyDown(e) {
|
function handleKeyDown(e) {
|
||||||
@ -11,12 +15,18 @@
|
|||||||
value = '';
|
value = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const debouncedSet = _.debounce(x => (value = x), 500);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
{placeholder}
|
{placeholder}
|
||||||
bind:value
|
value={searchValue}
|
||||||
|
on:input={e => {
|
||||||
|
if (isDebounced) debouncedSet(domInput.value);
|
||||||
|
else value = domInput.value;
|
||||||
|
}}
|
||||||
on:keydown={handleKeyDown}
|
on:keydown={handleKeyDown}
|
||||||
bind:this={domInput}
|
bind:this={domInput}
|
||||||
on:focus={e => domInput.select()}
|
on:focus={e => domInput.select()}
|
||||||
|
@ -11,6 +11,10 @@
|
|||||||
import { getDictionaryDescription } from '../utility/dictionaryDescriptionTools';
|
import { getDictionaryDescription } from '../utility/dictionaryDescriptionTools';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { dumpSqlSelect } from 'dbgate-sqltree';
|
import { dumpSqlSelect } from 'dbgate-sqltree';
|
||||||
|
import LoadingInfo from '../elements/LoadingInfo.svelte';
|
||||||
|
import SearchInput from '../elements/SearchInput.svelte';
|
||||||
|
import FormTextField from '../forms/FormTextField.svelte';
|
||||||
|
import _ from 'lodash';
|
||||||
|
|
||||||
export let onConfirm;
|
export let onConfirm;
|
||||||
export let conid;
|
export let conid;
|
||||||
@ -22,6 +26,9 @@
|
|||||||
let rows = null;
|
let rows = null;
|
||||||
let tableInfo;
|
let tableInfo;
|
||||||
let description;
|
let description;
|
||||||
|
let isLoading = false;
|
||||||
|
|
||||||
|
let search = '';
|
||||||
|
|
||||||
let checkedKeys = [];
|
let checkedKeys = [];
|
||||||
|
|
||||||
@ -63,10 +70,35 @@
|
|||||||
})),
|
})),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
// @ts-ignore
|
|
||||||
|
|
||||||
|
if (search) {
|
||||||
|
const tokens = _.compact(search.split(' ').map(x => x.trim()));
|
||||||
|
if (tokens.length > 0) {
|
||||||
|
// @ts-ignore
|
||||||
|
select.where = {
|
||||||
|
conditionType: 'and',
|
||||||
|
conditions: tokens.map(token => ({
|
||||||
|
conditionType: 'or',
|
||||||
|
conditions: description.columns.map(columnName => ({
|
||||||
|
conditionType: 'like',
|
||||||
|
left: {
|
||||||
|
exprType: 'column',
|
||||||
|
columnName,
|
||||||
|
},
|
||||||
|
right: {
|
||||||
|
exprType: 'value',
|
||||||
|
value: `%${token}%`,
|
||||||
|
},
|
||||||
|
})),
|
||||||
|
})),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
dumpSqlSelect(dmp, select);
|
dumpSqlSelect(dmp, select);
|
||||||
|
|
||||||
|
isLoading = true;
|
||||||
const response = await axiosInstance.request({
|
const response = await axiosInstance.request({
|
||||||
url: 'database-connections/query-data',
|
url: 'database-connections/query-data',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
@ -78,6 +110,12 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
rows = response.data.rows;
|
rows = response.data.rows;
|
||||||
|
isLoading = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$: {
|
||||||
|
search;
|
||||||
|
reload();
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
@ -89,10 +127,25 @@
|
|||||||
<ModalBase {...$$restProps}>
|
<ModalBase {...$$restProps}>
|
||||||
<svelte:fragment slot="header">Lookup from {pureName}</svelte:fragment>
|
<svelte:fragment slot="header">Lookup from {pureName}</svelte:fragment>
|
||||||
|
|
||||||
{#if tableInfo && description && rows && tableInfo?.primaryKey?.columns?.length == 1}
|
<!-- <FormTextField name="search" label='Search' placeholder="Search" bind:value={search} /> -->
|
||||||
|
<div class="largeFormMarker">
|
||||||
|
<SearchInput placeholder="Search" bind:value={search} isDebounced />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{#if isLoading}
|
||||||
|
<LoadingInfo message="Loading data" />
|
||||||
|
{/if}
|
||||||
|
|
||||||
|
{#if !isLoading && tableInfo && description && rows && tableInfo?.primaryKey?.columns?.length == 1}
|
||||||
<div class="tableWrapper">
|
<div class="tableWrapper">
|
||||||
<ScrollableTableControl
|
<ScrollableTableControl
|
||||||
{rows}
|
{rows}
|
||||||
|
clickable
|
||||||
|
on:clickrow={e => {
|
||||||
|
const value = e.detail[tableInfo.primaryKey.columns[0].columnName];
|
||||||
|
if (checkedKeys.includes(value)) checkedKeys = checkedKeys.filter(x => x != value);
|
||||||
|
else checkedKeys = [...checkedKeys, value];
|
||||||
|
}}
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
fieldName: 'checked',
|
fieldName: 'checked',
|
||||||
@ -122,6 +175,7 @@
|
|||||||
const value = row[tableInfo.primaryKey.columns[0].columnName];
|
const value = row[tableInfo.primaryKey.columns[0].columnName];
|
||||||
if (e.target.checked) checkedKeys = [...checkedKeys, value];
|
if (e.target.checked) checkedKeys = [...checkedKeys, value];
|
||||||
else checkedKeys = checkedKeys.filter(x => x != value);
|
else checkedKeys = checkedKeys.filter(x => x != value);
|
||||||
|
e.stopPropagation();
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</ScrollableTableControl>
|
</ScrollableTableControl>
|
||||||
|
Loading…
Reference in New Issue
Block a user