2020-12-03 18:29:47 +01:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { lighthouse } from 'redux/actions/search';
|
|
|
|
import { getSearchQueryString } from 'util/query-params';
|
2021-01-28 20:03:37 +01:00
|
|
|
import { isURIValid } from 'lbry-redux';
|
2020-12-03 18:29:47 +01:00
|
|
|
import useThrottle from './use-throttle';
|
|
|
|
|
|
|
|
export default function useLighthouse(query: string, showMature?: boolean, size?: number = 5) {
|
|
|
|
const [results, setResults] = React.useState();
|
|
|
|
const [loading, setLoading] = React.useState();
|
2020-12-11 19:33:27 +01:00
|
|
|
const queryString = query ? getSearchQueryString(query, { nsfw: showMature, size }) : '';
|
2020-12-03 18:29:47 +01:00
|
|
|
const throttledQuery = useThrottle(queryString, 500);
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (throttledQuery) {
|
|
|
|
setLoading(true);
|
|
|
|
setResults(null);
|
|
|
|
|
2020-12-11 19:42:54 +01:00
|
|
|
let isSubscribed = true;
|
2020-12-03 18:29:47 +01:00
|
|
|
lighthouse
|
|
|
|
.search(throttledQuery)
|
|
|
|
.then(results => {
|
2020-12-11 19:42:54 +01:00
|
|
|
if (isSubscribed) {
|
2021-01-28 20:03:37 +01:00
|
|
|
setResults(results.map(result => `lbry://${result.name}#${result.claimId}`).filter(uri => isURIValid(uri)));
|
2020-12-11 19:42:54 +01:00
|
|
|
setLoading(false);
|
|
|
|
}
|
2020-12-03 18:29:47 +01:00
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setLoading(false);
|
|
|
|
});
|
2020-12-11 19:42:54 +01:00
|
|
|
|
|
|
|
return () => {
|
|
|
|
isSubscribed = false;
|
|
|
|
};
|
2020-12-03 18:29:47 +01:00
|
|
|
}
|
|
|
|
}, [throttledQuery]);
|
|
|
|
|
|
|
|
return { results, loading };
|
|
|
|
}
|