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

144 lines
3.7 KiB
React
Raw Normal View History

import React from 'react';
2021-01-17 18:07:26 +00:00
import EventBus from '../../../modules/helpers/eventbus';
import fetchJSONP from 'fetch-jsonp';
import AutocompleteInput from '../../helpers/autocomplete/Autocomplete';
import SearchIcon from '@material-ui/icons/Search';
2020-10-13 14:30:53 +00:00
import MicIcon from '@material-ui/icons/Mic';
2020-11-29 14:32:08 +00:00
import './search.scss';
const searchEngines = require('./search_engines.json');
const autocompleteProviders = require('./autocomplete_providers.json');
export default class Search extends React.PureComponent {
2021-03-23 13:10:34 +00:00
constructor() {
super();
2020-10-13 14:30:53 +00:00
this.state = {
url: '',
query: '',
autocompleteURL: '',
autocompleteQuery: '',
autocompleteCallback: '',
microphone: null,
suggestions: []
2020-10-13 14:30:53 +00:00
};
this.language = window.language.widgets.search;
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();
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 = () => {
if (searchText.value === '') {
return;
}
2021-01-16 22:43:46 +00:00
setTimeout(() => {
window.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) => {
let value;
if (e.target.innerText !== undefined) {
value = e.target.innerText;
} else {
value = document.getElementById('searchtext').value || 'mue fast';
}
window.stats.postEvent('feature', 'Search');
window.location.href = this.state.url + `?${this.state.query}=` + value;
}
async getSuggestions(input) {
const data = await (await fetchJSONP(this.state.autocompleteURL + this.state.autocompleteQuery + input, {
jsonpCallback: this.state.autocompleteCallback
})).json();
this.setState({
suggestions: data[1].splice(0, 3)
});
}
init() {
let url;
let query = 'q';
let microphone = null;
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') {
url = localStorage.getItem('customSearchEngine');
}
2020-09-18 11:58:37 +00:00
2020-10-13 14:30:53 +00:00
if (localStorage.getItem('voiceSearch') === 'true') {
2021-03-23 13:10:34 +00:00
microphone = <MicIcon className='micIcon' onClick={this.startSpeechRecognition}/>;
2020-10-13 14:30:53 +00:00
}
let autocompleteURL;
let autocompleteQuery;
let autocompleteCallback;
if (localStorage.getItem('autocomplete') === 'true') {
const info = autocompleteProviders.find((i) => i.value === localStorage.getItem('autocompleteProvider'));
autocompleteURL = info.url;
autocompleteQuery = info.query;
autocompleteCallback = info.callback;
}
this.setState({
url: url,
query: query,
autocompleteURL: autocompleteURL,
autocompleteQuery: autocompleteQuery,
autocompleteCallback: autocompleteCallback,
microphone: microphone
});
}
componentDidMount() {
EventBus.on('refresh', (data) => {
if (data === 'search') {
this.init();
}
});
this.init();
}
componentWillUnmount() {
EventBus.remove('refresh');
}
render() {
2020-09-16 10:43:58 +00:00
return (
2021-03-23 09:44:57 +00:00
<form action={this.state.url} className='searchBar'>
{this.state.microphone}
2021-03-23 13:10:34 +00:00
<SearchIcon onClick={this.searchButton}/>
<AutocompleteInput placeholder={this.language} name={this.state.query} id='searchtext' suggestions={this.state.suggestions} onChange={(e) => this.getSuggestions(e)} onClick={this.searchButton}/>
2021-03-23 09:44:57 +00:00
</form>
2020-09-16 10:43:58 +00:00
);
}
2020-10-15 14:23:01 +00:00
}