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

203 lines
5.6 KiB
React
Raw Normal View History

2021-08-27 17:27:11 +00:00
import { PureComponent, Fragment } from 'react';
2021-08-15 21:28:37 +00:00
import { Search as SearchIcon, Mic } from '@material-ui/icons';
import Hotkeys from 'react-hot-keys';
import AutocompleteInput from '../../helpers/autocomplete/Autocomplete';
2021-08-15 21:28:37 +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';
const searchEngines = require('./search_engines.json');
const autocompleteProviders = require('./autocomplete_providers.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: '',
autocompleteURL: '',
autocompleteQuery: '',
autocompleteCallback: '',
microphone: null,
2021-08-25 12:55:20 +00:00
suggestions: [],
searchDropdown: 'none'
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) => {
2021-08-16 13:06:57 +00:00
e.preventDefault();
const value = e.target.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) {
2021-07-11 13:29:32 +00:00
window.setResults = (results) => {
window.searchResults = results;
};
const script = document.createElement('script');
2021-07-11 13:29:32 +00:00
script.src = `${this.state.autocompleteURL + this.state.autocompleteQuery + input}&${this.state.autocompleteCallback}=window.setResults`;
document.head.appendChild(script);
try {
this.setState({
suggestions: window.searchResults[1].splice(0, 3)
});
} catch (e) {
// ignore error if empty
}
2021-07-11 13:29:32 +00:00
document.head.removeChild(script);
}
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') {
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-08-15 21:28:37 +00:00
microphone = <Mic className='micIcon' onClick={this.startSpeechRecognition}/>;
2020-10-13 14:30:53 +00:00
}
let autocompleteURL, autocompleteQuery, 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,
query,
autocompleteURL,
autocompleteQuery,
autocompleteCallback,
microphone,
2021-08-25 12:55:20 +00:00
currentSearch: info.name
});
}
toggleDropdown() {
if (this.state.searchDropdown === 'none') {
this.setState({
searchDropdown: 'block'
});
} else {
this.setState({
searchDropdown: 'none'
});
}
}
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) {
url = localStorage.getItem('customSearchEngine');
}
2021-08-25 12:55:20 +00:00
this.setState({
url,
query,
2021-08-25 12:55:20 +00:00
currentSearch: name,
searchDropdown: 'none'
});
}
componentDidMount() {
EventBus.on('refresh', (data) => {
if (data === 'search') {
this.init();
}
});
this.init();
}
componentWillUnmount() {
EventBus.off('refresh');
}
render() {
const customText = window.language.modals.main.settings.sections.search.custom.split(' ')[0];
2020-09-16 10:43:58 +00:00
return (
2021-08-16 13:06:57 +00:00
<form onSubmit={this.searchButton} className='searchBar'>
2021-08-25 12:55:20 +00:00
{localStorage.getItem('searchDropdown') === 'true' ?
<div className='searchDropdown'>
<span className='searchSelected' onClick={() => this.toggleDropdown()}>{this.state.currentSearch}</span>
<div style={{ display: this.state.searchDropdown }}>
2021-08-25 12:55:20 +00:00
{searchEngines.map((engine) => {
if (engine.name === this.state.currentSearch) {
return null;
}
2021-08-25 12:55:20 +00:00
return (
2021-08-27 17:27:11 +00:00
<Fragment key={engine.name}>
<span className='searchDropdownList' onClick={() => this.setSearch(engine.name)}>{engine.name}</span>
2021-08-25 12:55:20 +00:00
<br/>
2021-08-27 17:27:11 +00:00
</Fragment>
2021-08-25 12:55:20 +00:00
);
})}
{this.state.currentSearch !== customText ? <span className='searchDropdownList' onClick={() => this.setSearch(customText, 'custom')}>{customText}</span> : null}
2021-08-25 12:55:20 +00:00
</div>
</div> : null}
2021-03-23 09:44:57 +00:00
{this.state.microphone}
2021-03-23 13:10:34 +00:00
<SearchIcon onClick={this.searchButton}/>
2021-07-11 13:29:32 +00:00
<AutocompleteInput placeholder={this.language} id='searchtext' suggestions={this.state.suggestions} onChange={(e) => this.getSuggestions(e)} onClick={this.searchButton}/>
{window.keybinds.focusSearch && window.keybinds.focusSearch !== '' ? <Hotkeys keyName={window.keybinds.focusSearch} onKeyDown={() => document.getElementById('searchtext').focus()}/> : null}
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
}