mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
9db971768b
* updated ui for settings page * lint fix * resolved errors * fixed search bar css * fixed css * lint fix * fixed tests * fixed indentation * updated settings aria label
117 lines
3.5 KiB
JavaScript
117 lines
3.5 KiB
JavaScript
import React, { useState, useContext } from 'react';
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
import { useSelector } from 'react-redux';
|
|
///: END:ONLY_INCLUDE_IN
|
|
import PropTypes from 'prop-types';
|
|
import Fuse from 'fuse.js';
|
|
import InputAdornment from '@material-ui/core/InputAdornment';
|
|
import TextField from '../../../components/ui/text-field';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import SearchIcon from '../../../components/ui/icon/search-icon';
|
|
import { isEqualCaseInsensitive } from '../../../../shared/modules/string-utils';
|
|
import { Icon, IconName } from '../../../components/component-library';
|
|
import { IconColor } from '../../../helpers/constants/design-system';
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
import { getSnapsRouteObjects } from '../../../selectors';
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
export default function SettingsSearch({
|
|
onSearch,
|
|
error,
|
|
settingsRoutesList,
|
|
}) {
|
|
const t = useContext(I18nContext);
|
|
|
|
const [searchQuery, setSearchQuery] = useState('');
|
|
const [searchIconColor, setSearchIconColor] = useState(
|
|
'var(--color-icon-muted)',
|
|
);
|
|
|
|
const settingsRoutesListArray = Object.values(settingsRoutesList);
|
|
///: BEGIN:ONLY_INCLUDE_IN(snaps)
|
|
const snaps = useSelector(getSnapsRouteObjects);
|
|
settingsRoutesListArray.push(...snaps);
|
|
///: END:ONLY_INCLUDE_IN
|
|
const settingsSearchFuse = new Fuse(settingsRoutesListArray, {
|
|
shouldSort: true,
|
|
threshold: 0.3,
|
|
location: 0,
|
|
distance: 100,
|
|
maxPatternLength: 32,
|
|
minMatchCharLength: 1,
|
|
keys: ['tabMessage', 'sectionMessage', 'descriptionMessage'],
|
|
getFn: (routeObject, path) => routeObject[path](t),
|
|
});
|
|
|
|
const handleSearch = (_searchQuery) => {
|
|
const sanitizedSearchQuery = _searchQuery
|
|
.replace(/[^A-Za-z0-9\s&_]/gu, '')
|
|
.trimStart();
|
|
setSearchQuery(sanitizedSearchQuery);
|
|
if (sanitizedSearchQuery === '') {
|
|
setSearchIconColor('var(--color-icon-muted)');
|
|
} else {
|
|
setSearchIconColor('var(--color-icon-default)');
|
|
}
|
|
|
|
const fuseSearchResult = settingsSearchFuse.search(sanitizedSearchQuery);
|
|
const addressSearchResult = settingsRoutesListArray.filter((routes) => {
|
|
return (
|
|
routes.tabMessage &&
|
|
sanitizedSearchQuery &&
|
|
isEqualCaseInsensitive(routes.tab, sanitizedSearchQuery)
|
|
);
|
|
});
|
|
|
|
const results = [...addressSearchResult, ...fuseSearchResult];
|
|
onSearch({ searchQuery: sanitizedSearchQuery, results });
|
|
};
|
|
|
|
const renderStartAdornment = () => {
|
|
return (
|
|
<InputAdornment position="start" style={{ marginRight: '12px' }}>
|
|
<SearchIcon color={searchIconColor} />
|
|
</InputAdornment>
|
|
);
|
|
};
|
|
|
|
const renderEndAdornment = () => {
|
|
return (
|
|
<>
|
|
{searchQuery && (
|
|
<InputAdornment
|
|
className="imageclosectn"
|
|
position="end"
|
|
onClick={() => handleSearch('')}
|
|
style={{ cursor: 'pointer' }}
|
|
>
|
|
<Icon name={IconName.Close} color={IconColor.iconDefault} />
|
|
</InputAdornment>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<TextField
|
|
id="search-settings"
|
|
placeholder={t('search')}
|
|
type="text"
|
|
value={searchQuery}
|
|
onChange={(e) => handleSearch(e.target.value)}
|
|
error={error}
|
|
fullWidth
|
|
autoFocus
|
|
autoComplete="off"
|
|
startAdornment={renderStartAdornment()}
|
|
endAdornment={renderEndAdornment()}
|
|
/>
|
|
);
|
|
}
|
|
|
|
SettingsSearch.propTypes = {
|
|
onSearch: PropTypes.func,
|
|
error: PropTypes.string,
|
|
settingsRoutesList: PropTypes.array,
|
|
};
|