2016-07-03 19:45:13 +03:00
|
|
|
import React from 'react';
|
2016-06-12 14:32:46 +03:00
|
|
|
import AutocompleteProvider from './AutocompleteProvider';
|
|
|
|
import 'whatwg-fetch';
|
|
|
|
|
2016-07-03 19:45:13 +03:00
|
|
|
import {TextualCompletion} from './Components';
|
|
|
|
|
2016-06-21 13:16:20 +03:00
|
|
|
const DDG_REGEX = /\/ddg\s+(.+)$/g;
|
2016-07-03 19:45:13 +03:00
|
|
|
const REFERRER = 'vector';
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2016-06-20 11:22:55 +03:00
|
|
|
let instance = null;
|
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
export default class DuckDuckGoProvider extends AutocompleteProvider {
|
2016-06-21 13:16:20 +03:00
|
|
|
constructor() {
|
|
|
|
super(DDG_REGEX);
|
|
|
|
}
|
2017-01-20 17:22:27 +03:00
|
|
|
|
2016-06-12 14:32:46 +03:00
|
|
|
static getQueryUri(query: String) {
|
2016-07-04 23:07:01 +03:00
|
|
|
return `https://api.duckduckgo.com/?q=${encodeURIComponent(query)}`
|
2016-07-03 19:45:13 +03:00
|
|
|
+ `&format=json&no_redirect=1&no_html=1&t=${encodeURIComponent(REFERRER)}`;
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
|
|
|
|
2016-09-13 13:11:52 +03:00
|
|
|
async getCompletions(query: string, selection: {start: number, end: number}) {
|
2016-07-03 19:45:13 +03:00
|
|
|
let {command, range} = this.getCurrentCommand(query, selection);
|
|
|
|
if (!query || !command) {
|
2016-09-13 13:11:52 +03:00
|
|
|
return [];
|
2016-07-03 19:45:13 +03:00
|
|
|
}
|
2016-06-12 14:32:46 +03:00
|
|
|
|
2016-09-13 13:11:52 +03:00
|
|
|
const response = await fetch(DuckDuckGoProvider.getQueryUri(command[1]), {
|
2016-07-03 19:45:13 +03:00
|
|
|
method: 'GET',
|
2016-09-13 13:11:52 +03:00
|
|
|
});
|
|
|
|
const json = await response.json();
|
|
|
|
let results = json.Results.map(result => {
|
|
|
|
return {
|
|
|
|
completion: result.Text,
|
|
|
|
component: (
|
|
|
|
<TextualCompletion
|
|
|
|
title={result.Text}
|
|
|
|
description={result.Result} />
|
|
|
|
),
|
|
|
|
range,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
if (json.Answer) {
|
|
|
|
results.unshift({
|
|
|
|
completion: json.Answer,
|
|
|
|
component: (
|
|
|
|
<TextualCompletion
|
|
|
|
title={json.Answer}
|
|
|
|
description={json.AnswerType} />
|
|
|
|
),
|
|
|
|
range,
|
2016-06-12 14:32:46 +03:00
|
|
|
});
|
2016-09-13 13:11:52 +03:00
|
|
|
}
|
|
|
|
if (json.RelatedTopics && json.RelatedTopics.length > 0) {
|
|
|
|
results.unshift({
|
|
|
|
completion: json.RelatedTopics[0].Text,
|
|
|
|
component: (
|
|
|
|
<TextualCompletion
|
|
|
|
title={json.RelatedTopics[0].Text} />
|
|
|
|
),
|
|
|
|
range,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (json.AbstractText) {
|
|
|
|
results.unshift({
|
|
|
|
completion: json.AbstractText,
|
|
|
|
component: (
|
|
|
|
<TextualCompletion
|
|
|
|
title={json.AbstractText} />
|
|
|
|
),
|
|
|
|
range,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return results;
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
getName() {
|
2016-08-17 14:57:19 +03:00
|
|
|
return '🔍 Results from DuckDuckGo';
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
|
|
|
|
static getInstance(): DuckDuckGoProvider {
|
2016-07-03 19:45:13 +03:00
|
|
|
if (instance == null) {
|
2016-06-20 11:22:55 +03:00
|
|
|
instance = new DuckDuckGoProvider();
|
2016-07-03 19:45:13 +03:00
|
|
|
}
|
2016-06-20 11:22:55 +03:00
|
|
|
return instance;
|
|
|
|
}
|
2016-08-22 22:06:31 +03:00
|
|
|
|
|
|
|
renderCompletions(completions: [React.Component]): ?React.Component {
|
|
|
|
return <div className="mx_Autocomplete_Completion_container_block">
|
|
|
|
{completions}
|
|
|
|
</div>;
|
|
|
|
}
|
2016-06-12 14:32:46 +03:00
|
|
|
}
|