blob: d3e328b63a1c5248e3d5cee9dd4c971ce7118570 [file] [log] [blame]
/*
* Copyright (C) 2022 Savoir-faire Linux Inc.
*
* This program 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.
*
* This program 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 this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
import { SearchRounded } from '@mui/icons-material';
import { InputAdornment, InputBase } from '@mui/material';
import { ChangeEvent, useContext, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { MessengerContext } from '../contexts/MessengerProvider';
export default function NewContactForm() {
const { setSearchQuery } = useContext(MessengerContext);
const [value, setValue] = useState('');
const { t } = useTranslation();
const handleChange = (event: ChangeEvent<HTMLInputElement>) => {
setValue(event.target.value);
setSearchQuery(event.target.value);
};
return (
<div className="main-search">
<InputBase
className="main-search-input"
type="search"
placeholder={t('conversation_add_contact_form')}
value={value}
onChange={handleChange}
startAdornment={
<InputAdornment position="start">
<SearchRounded />
</InputAdornment>
}
/>
</div>
);
}