/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fluxer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Fluxer. If not, see . */ import {useLingui} from '@lingui/react/macro'; import {FunnelIcon} from '@phosphor-icons/react'; import {observer} from 'mobx-react-lite'; import type React from 'react'; import type {SearchValueOption} from '~/utils/SearchUtils'; import {AutocompleteOption} from './AutocompleteOption'; import styles from './MessageSearchBar.module.css'; interface ValuesSectionProps { options: Array; selectedIndex: number; hoverIndex: number; onSelect: (value: SearchValueOption) => void; onMouseEnter: (index: number) => void; onMouseLeave?: () => void; listboxId: string; } export const ValuesSection: React.FC = observer( ({options, selectedIndex, hoverIndex, onSelect, onMouseEnter, onMouseLeave, listboxId}) => { const {t} = useLingui(); if (options.length === 0) return null; return (
{t`Values`}
{options.map((valueOption, index) => ( onSelect(valueOption)} onMouseEnter={() => onMouseEnter(index)} onMouseLeave={onMouseLeave} listboxId={listboxId} >
{valueOption.label} {valueOption.isDefault && {t`Default`}}
{valueOption.description && ( {valueOption.description} )}
))}
); }, );