| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| import { Button, HTMLSelect, Icon, InputGroup, Menu, MenuItem, Popover } from '@blueprintjs/core'; |
| import { IconNames } from '@blueprintjs/icons'; |
| import classNames from 'classnames'; |
| import { useEffect, useState } from 'react'; |
| import type { Column, ReactTableFunction } from 'react-table'; |
| |
| import { filterMap, toggle } from '../utils'; |
| |
| import { |
| combineModeAndNeedle, |
| FILTER_MODES, |
| FILTER_MODES_NO_COMPARISON, |
| filterModeToIcon, |
| filterModeToTitle, |
| parseFilterModeAndNeedle, |
| } from './react-table-filters'; |
| |
| interface FilterRendererProps { |
| column: Column; |
| filter: any; |
| onChange: ReactTableFunction; |
| key?: string; |
| } |
| |
| export function GenericFilterInput({ column, filter, onChange, key }: FilterRendererProps) { |
| const INPUT_DEBOUNCE_TIME_IN_MILLISECONDS = 1000; |
| const [menuOpen, setMenuOpen] = useState(false); |
| const [focusedText, setFocusedText] = useState<string | undefined>(); |
| const [debouncedValue, setDebouncedValue] = useState<string | undefined>(); |
| |
| const enableComparisons = String(column.headerClassName).includes('enable-comparisons'); |
| |
| const { mode, needle } = (filter ? parseFilterModeAndNeedle(filter, true) : undefined) || { |
| mode: '~', |
| needle: '', |
| }; |
| |
| useEffect(() => { |
| const handler = setTimeout(() => { |
| if (focusedText !== undefined && focusedText !== debouncedValue) { |
| onChange(combineModeAndNeedle(mode, focusedText)); |
| setDebouncedValue(focusedText); |
| } |
| }, INPUT_DEBOUNCE_TIME_IN_MILLISECONDS); |
| |
| return () => { |
| clearTimeout(handler); |
| }; |
| }, [focusedText, debouncedValue, mode, onChange]); |
| |
| return ( |
| <InputGroup |
| className={classNames('generic-filter-input', { |
| 'hide-icon': !filter && !(menuOpen || typeof focusedText === 'string'), |
| })} |
| key={key} |
| leftElement={ |
| <Popover |
| placement="bottom-start" |
| minimal |
| isOpen={menuOpen} |
| onInteraction={setMenuOpen} |
| content={ |
| <Menu> |
| {(enableComparisons ? FILTER_MODES : FILTER_MODES_NO_COMPARISON).map((m, i) => ( |
| <MenuItem |
| key={i} |
| icon={filterModeToIcon(m)} |
| text={filterModeToTitle(m)} |
| onClick={() => onChange(combineModeAndNeedle(m, needle))} |
| labelElement={m === mode ? <Icon icon={IconNames.TICK} /> : undefined} |
| /> |
| ))} |
| </Menu> |
| } |
| > |
| <Button className="filter-mode-button" icon={filterModeToIcon(mode)} minimal /> |
| </Popover> |
| } |
| value={focusedText ?? needle} |
| onChange={e => setFocusedText(e.target.value)} |
| onKeyDown={e => { |
| if (e.key === 'Enter') { |
| const inputValue = (e.target as HTMLInputElement).value; |
| setDebouncedValue(undefined); // Reset debounce to avoid duplicate triggers |
| onChange(combineModeAndNeedle(mode, inputValue)); |
| } |
| }} |
| rightElement={ |
| filter ? <Button icon={IconNames.CROSS} minimal onClick={() => onChange('')} /> : undefined |
| } |
| onBlur={e => { |
| setFocusedText(undefined); |
| if (filter && !e.target.value) onChange(''); |
| }} |
| /> |
| ); |
| } |
| |
| export function suggestibleFilterInput(suggestions: string[]) { |
| return function SuggestibleFilterInput({ filter, onChange, key, ...rest }: FilterRendererProps) { |
| let valuesFilteredOn: string[] | undefined; |
| if (filter) { |
| const modeAndNeedle = parseFilterModeAndNeedle(filter, true); |
| if (modeAndNeedle && modeAndNeedle.mode === '=') { |
| valuesFilteredOn = modeAndNeedle.needleParts; |
| } |
| } |
| return ( |
| <Popover |
| key={key} |
| placement="bottom-start" |
| minimal |
| content={ |
| <Menu> |
| {filterMap(suggestions, (suggestion, i) => { |
| return ( |
| <MenuItem |
| key={i} |
| icon={ |
| valuesFilteredOn |
| ? valuesFilteredOn.includes(suggestion) |
| ? IconNames.MINUS |
| : IconNames.PLUS |
| : IconNames.EQUALS |
| } |
| text={suggestion} |
| onClick={() => |
| onChange( |
| combineModeAndNeedle( |
| '=', |
| valuesFilteredOn |
| ? toggle(valuesFilteredOn, suggestion).join('|') |
| : suggestion, |
| true, |
| ), |
| ) |
| } |
| /> |
| ); |
| })} |
| </Menu> |
| } |
| > |
| <GenericFilterInput filter={filter} onChange={onChange} {...rest} /> |
| </Popover> |
| ); |
| }; |
| } |
| |
| export function BooleanFilterInput({ filter, onChange, key }: FilterRendererProps) { |
| return ( |
| <HTMLSelect |
| className="boolean-filter-input" |
| key={key} |
| style={{ width: '100%' }} |
| onChange={(event: any) => onChange(event.target.value)} |
| value={filter?.value || ''} |
| fill |
| > |
| <option value="">Show all</option> |
| <option value="=true">true</option> |
| <option value="=false">false</option> |
| </HTMLSelect> |
| ); |
| } |