mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixes table-search (#836)
* fixed table-search and able to search immediately as you type * remove console.log
This commit is contained in:
parent
d5462aba22
commit
cd64bf3e7c
2 changed files with 66 additions and 48 deletions
53
frontend/src/Editor/Components/Table/GlobalFilter.jsx
Normal file
53
frontend/src/Editor/Components/Table/GlobalFilter.jsx
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
import React from 'react';
|
||||||
|
// Table Search
|
||||||
|
export const GlobalFilter = ({
|
||||||
|
preGlobalFilteredRows,
|
||||||
|
globalFilter,
|
||||||
|
useAsyncDebounce,
|
||||||
|
setGlobalFilter,
|
||||||
|
onComponentOptionChanged,
|
||||||
|
component,
|
||||||
|
serverSideSearch,
|
||||||
|
onEvent,
|
||||||
|
}) => {
|
||||||
|
const count = preGlobalFilteredRows.length;
|
||||||
|
const [value, setValue] = React.useState(globalFilter);
|
||||||
|
const onChange = useAsyncDebounce((filterValue) => {
|
||||||
|
setGlobalFilter(filterValue || undefined);
|
||||||
|
}, 200);
|
||||||
|
|
||||||
|
const handleSearchTextChange = (text) => {
|
||||||
|
setValue(text);
|
||||||
|
onChange(text);
|
||||||
|
|
||||||
|
onComponentOptionChanged(component, 'searchText', text).then(() => {
|
||||||
|
if (serverSideSearch === true) {
|
||||||
|
onEvent('onSearch', { component, data: {} });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="ms-2 d-inline-block">
|
||||||
|
Search:{' '}
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
className="global-search-field"
|
||||||
|
defaultValue={value || ''}
|
||||||
|
onBlur={(e) => {
|
||||||
|
handleSearchTextChange(e.target.value);
|
||||||
|
}}
|
||||||
|
onKeyDown={(e) => {
|
||||||
|
if (e.key === 'Enter') {
|
||||||
|
handleSearchTextChange(e.target.value);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
onChange={(e) => onChange(e.target.value)}
|
||||||
|
placeholder={`${count} records`}
|
||||||
|
style={{
|
||||||
|
border: '0',
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
@ -21,9 +21,8 @@ import { Tags } from './Tags';
|
||||||
import { Radio } from './Radio';
|
import { Radio } from './Radio';
|
||||||
import { Toggle } from './Toggle';
|
import { Toggle } from './Toggle';
|
||||||
import { Datepicker } from './Datepicker';
|
import { Datepicker } from './Datepicker';
|
||||||
|
import { GlobalFilter } from './GlobalFilter';
|
||||||
var _ = require('lodash');
|
var _ = require('lodash');
|
||||||
|
|
||||||
export function Table({
|
export function Table({
|
||||||
id,
|
id,
|
||||||
width,
|
width,
|
||||||
|
|
@ -671,47 +670,6 @@ export function Table({
|
||||||
}
|
}
|
||||||
}, [state.columnResizing.isResizingColumn]);
|
}, [state.columnResizing.isResizingColumn]);
|
||||||
|
|
||||||
function GlobalFilter() {
|
|
||||||
const count = preGlobalFilteredRows.length;
|
|
||||||
const [value, setValue] = React.useState(state.globalFilter);
|
|
||||||
const onChange = useAsyncDebounce((filterValue) => {
|
|
||||||
setGlobalFilter(filterValue || undefined);
|
|
||||||
}, 200);
|
|
||||||
|
|
||||||
const handleSearchTextChange = (text) => {
|
|
||||||
setValue(text);
|
|
||||||
onChange(text);
|
|
||||||
|
|
||||||
onComponentOptionChanged(component, 'searchText', text).then(() => {
|
|
||||||
if (serverSideSearch === true) {
|
|
||||||
onEvent('onSearch', { component, data: {} });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="ms-2 d-inline-block">
|
|
||||||
Search:{' '}
|
|
||||||
<input
|
|
||||||
className="global-search-field"
|
|
||||||
defaultValue={value || ''}
|
|
||||||
onBlur={(e) => {
|
|
||||||
handleSearchTextChange(e.target.value);
|
|
||||||
}}
|
|
||||||
onKeyDown={(e) => {
|
|
||||||
if (e.key === 'Enter') {
|
|
||||||
handleSearchTextChange(e.target.value);
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
placeholder={`${count} records`}
|
|
||||||
style={{
|
|
||||||
border: '0',
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-disabled={parsedDisabledState}
|
data-disabled={parsedDisabledState}
|
||||||
|
|
@ -726,11 +684,18 @@ export function Table({
|
||||||
{displaySearchBox && (
|
{displaySearchBox && (
|
||||||
<div className="card-body border-bottom py-3 jet-data-table-header">
|
<div className="card-body border-bottom py-3 jet-data-table-header">
|
||||||
<div className="d-flex">
|
<div className="d-flex">
|
||||||
{displaySearchBox && (
|
<div className="ms-auto text-muted">
|
||||||
<div className="ms-auto text-muted">
|
<GlobalFilter
|
||||||
<GlobalFilter />
|
preGlobalFilteredRows={preGlobalFilteredRows}
|
||||||
</div>
|
globalFilter={state.globalFilter}
|
||||||
)}
|
useAsyncDebounce={useAsyncDebounce}
|
||||||
|
setGlobalFilter={setGlobalFilter}
|
||||||
|
onComponentOptionChanged={onComponentOptionChanged}
|
||||||
|
component={component}
|
||||||
|
serverSideSearch={serverSideSearch}
|
||||||
|
onEvent={onEvent}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue