diff options
author | Anton Tananaev <anton@traccar.org> | 2022-08-28 15:14:33 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-08-28 15:14:33 -0700 |
commit | 4e61ae214d7c9c54851261734837521f2f77b4e5 (patch) | |
tree | 403a25bed46b2645a17fef4d09a139bf6426068b /modern/src/settings/ComputedAttributesPage.js | |
parent | cd7c15987c08a875386e860a11f6533423709bc2 (diff) | |
download | trackermap-web-4e61ae214d7c9c54851261734837521f2f77b4e5.tar.gz trackermap-web-4e61ae214d7c9c54851261734837521f2f77b4e5.tar.bz2 trackermap-web-4e61ae214d7c9c54851261734837521f2f77b4e5.zip |
Mobile setting search
Diffstat (limited to 'modern/src/settings/ComputedAttributesPage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributesPage.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js index 59b3adbd..fd5245a7 100644 --- a/modern/src/settings/ComputedAttributesPage.js +++ b/modern/src/settings/ComputedAttributesPage.js @@ -11,6 +11,7 @@ import SettingsMenu from './components/SettingsMenu'; import CollectionFab from './components/CollectionFab'; import CollectionActions from './components/CollectionActions'; import TableShimmer from '../common/components/TableShimmer'; +import SearchHeader, { filterByKeyword } from './components/SearchHeader'; const useStyles = makeStyles((theme) => ({ columnAction: { @@ -25,6 +26,7 @@ const ComputedAttributesPage = () => { const [timestamp, setTimestamp] = useState(Date.now()); const [items, setItems] = useState([]); + const [searchKeyword, setSearchKeyword] = useState(''); const [loading, setLoading] = useState(false); const administrator = useAdministrator(); @@ -44,6 +46,7 @@ const ComputedAttributesPage = () => { return ( <PageLayout menu={<SettingsMenu />} breadcrumbs={['settingsTitle', 'sharedComputedAttributes']}> + <SearchHeader keyword={searchKeyword} setKeyword={setSearchKeyword} /> <Table> <TableHead> <TableRow> @@ -55,7 +58,7 @@ const ComputedAttributesPage = () => { </TableRow> </TableHead> <TableBody> - {!loading ? items.map((item) => ( + {!loading ? items.filter(filterByKeyword(searchKeyword)).map((item) => ( <TableRow key={item.id}> <TableCell>{item.description}</TableCell> <TableCell>{item.attribute}</TableCell> |