mue/src/components/widgets/search/Search.jsx

239 lines
6.3 KiB
React
Raw Normal View History

import variables from 'modules/variables';
import { PureComponent, createRef } from 'react';
import { MdSearch, MdMic, MdScreenSearchDesktop } from 'react-icons/md';
import Tooltip from 'components/helpers/tooltip/Tooltip';
2021-08-28 14:34:12 +00:00
import AutocompleteInput from 'components/helpers/autocomplete/Autocomplete';
2021-08-28 14:34:12 +00:00
import EventBus from 'modules/helpers/eventbus';
2020-10-13 14:30:53 +00:00
2020-11-29 14:32:08 +00:00
import './search.scss';
2022-04-13 14:25:50 +00:00
import searchEngines from 'components/widgets/search/search_engines.json';
2021-08-14 19:10:48 +00:00
export default class Search extends PureComponent {
2021-03-23 13:10:34 +00:00
constructor() {
super();
2020-10-13 14:30:53 +00:00
this.state = {
url: '',
query: '',
microphone: null,
2021-08-25 12:55:20 +00:00
suggestions: [],
searchDropdown: false,
classList:
localStorage.getItem('widgetStyle') === 'legacy' ? 'searchIcons old' : 'searchIcons',
2020-10-13 14:30:53 +00:00
};
this.micIcon = createRef();
2020-10-13 14:30:53 +00:00
}
2021-03-23 13:10:34 +00:00
startSpeechRecognition = () => {
2020-10-13 14:30:53 +00:00
const voiceSearch = new window.webkitSpeechRecognition();
voiceSearch.start();
this.micIcon.current.classList.add('micActive');
2021-01-16 18:39:03 +00:00
const searchText = document.getElementById('searchtext');
voiceSearch.onresult = (event) => {
searchText.value = event.results[0][0].transcript;
2021-04-08 19:02:31 +00:00
};
2021-04-08 19:02:31 +00:00
voiceSearch.onend = () => {
this.micIcon.current.classList.remove('micActive');
if (searchText.value === '') {
return;
}
2021-01-16 22:43:46 +00:00
setTimeout(() => {
2021-09-28 22:04:04 +00:00
variables.stats.postEvent('feature', 'Voice search');
2021-01-16 22:43:46 +00:00
window.location.href = this.state.url + `?${this.state.query}=` + searchText.value;
}, 1000);
2021-04-16 11:26:56 +00:00
};
};
2020-10-13 14:30:53 +00:00
searchButton = (e) => {
2021-08-16 13:06:57 +00:00
e.preventDefault();
const value = e.target.value || document.getElementById('searchtext').value || 'mue fast';
2021-09-28 22:04:04 +00:00
variables.stats.postEvent('feature', 'Search');
window.location.href = this.state.url + `?${this.state.query}=` + value;
};
async getSuggestions(input) {
window.setResults = (results) => {
2021-07-11 13:29:32 +00:00
window.searchResults = results;
};
const results = await (await fetch(`https://ac.ecosia.org/?q=${input}`)).json();
2021-07-11 13:29:32 +00:00
try {
this.setState({
suggestions: results.suggestions.splice(0, 3),
2021-07-11 13:29:32 +00:00
});
} catch (e) {
// ignore error if empty
}
}
init() {
let url, microphone;
let query = 'q';
2020-09-19 13:53:33 +00:00
const setting = localStorage.getItem('searchEngine');
2021-04-08 19:02:31 +00:00
const info = searchEngines.find((i) => i.settingsName === setting);
2021-01-17 18:07:26 +00:00
2020-09-23 09:48:23 +00:00
if (info !== undefined) {
url = info.url;
2021-04-08 18:52:17 +00:00
if (info.query) {
query = info.query;
}
2020-09-23 09:48:23 +00:00
}
2021-01-17 16:25:21 +00:00
if (setting === 'custom') {
2023-01-21 12:10:40 +00:00
const custom = localStorage.getItem('customSearchEngine');
if (custom !== null) {
url = custom;
}
2021-01-17 16:25:21 +00:00
}
2020-09-18 11:58:37 +00:00
2020-10-13 14:30:53 +00:00
if (localStorage.getItem('voiceSearch') === 'true') {
microphone = (
<button onClick={this.startSpeechRecognition} ref={this.micIcon}>
<MdMic className="micIcon" />
</button>
);
2020-10-13 14:30:53 +00:00
}
this.setState({
url,
query,
microphone,
currentSearch: info ? info.name : 'Custom',
2021-08-25 12:55:20 +00:00
});
}
setSearch(name, custom) {
2021-08-25 12:55:20 +00:00
let url;
let query = 'q';
const info = searchEngines.find((i) => i.name === name);
if (info !== undefined) {
url = info.url;
if (info.query) {
query = info.query;
}
}
if (custom) {
2023-01-21 12:10:40 +00:00
const customSetting = localStorage.getItem('customSearchEngine');
if (customSetting !== null) {
url = customSetting;
} else {
url = this.state.url;
}
}
2021-08-25 12:55:20 +00:00
this.setState({
url,
query,
2021-08-25 12:55:20 +00:00
currentSearch: name,
searchDropdown: false,
});
}
componentDidMount() {
EventBus.on('refresh', (data) => {
if (data === 'search') {
this.init();
}
});
this.init();
if (localStorage.getItem('searchFocus') === 'true') {
const element = document.getElementById('searchtext');
if (element) {
element.focus();
}
}
}
componentWillUnmount() {
EventBus.off('refresh');
}
render() {
const customText = variables
.getMessage('modals.main.settings.sections.search.custom')
.split(' ')[0];
2020-09-16 10:43:58 +00:00
return (
<div className="searchComponents">
<div className="searchMain">
<div className={this.state.classList}>
{localStorage.getItem('searchDropdown') === 'true' ? (
<Tooltip title={variables.getMessage('widgets.search')}>
<button
onClick={() => this.setState({ searchDropdown: !this.state.searchDropdown })}
>
<MdScreenSearchDesktop />
</button>
</Tooltip>
) : (
''
)}
<Tooltip title={variables.getMessage('widgets.search')}>
{this.state.microphone}
</Tooltip>
</div>
<form onSubmit={this.searchButton} className="searchBar">
<div className={this.state.classList}>
<Tooltip title={variables.getMessage('widgets.search')}>
<button onClick={this.searchButton}>
<MdSearch />
</button>
</Tooltip>
</div>
<AutocompleteInput
placeholder={variables.getMessage('widgets.search')}
id="searchtext"
suggestions={this.state.suggestions}
onChange={(e) => this.getSuggestions(e)}
onClick={this.searchButton}
/>
</form>
</div>
<div>
2022-11-06 11:59:59 +00:00
{localStorage.getItem('searchDropdown') === 'true' &&
this.state.searchDropdown === true ? (
2022-10-10 17:32:26 +00:00
<div className="searchDropdown">
{searchEngines.map(({ name }, key) => {
if (name === this.state.currentSearch) {
return null;
}
return (
<span
className="searchDropdownList"
onClick={() => this.setSearch(name)}
key={key}
>
{name}
</span>
);
})}
{this.state.currentSearch !== customText ? (
<span
className="searchDropdownList"
onClick={() => this.setSearch(customText, 'custom')}
>
{customText}
</span>
) : null}
</div>
) : null}
</div>
</div>
2020-09-16 10:43:58 +00:00
);
}
2020-10-15 14:23:01 +00:00
}