Resolved search updates (#273)
* add doResolvedSearch actions which returns resolved search results * add recommended content selector * update ResolvedSearchResult type * support for multiple pages of resolved search results * add nsfw flag
This commit is contained in:
parent
0ef4b9bb0c
commit
b2ef261760
2 changed files with 12 additions and 8 deletions
5
dist/bundle.es.js
vendored
5
dist/bundle.es.js
vendored
|
@ -4112,7 +4112,7 @@ const doSearch = (rawQuery, searchOptions) => (dispatch, getState) => {
|
|||
};
|
||||
|
||||
const doResolvedSearch = (rawQuery, size, // only pass in if you don't want to use the users setting (ex: related content)
|
||||
from, isBackgroundSearch = false, options = {}) => (dispatch, getState) => {
|
||||
from, isBackgroundSearch = false, options = {}, nsfw) => (dispatch, getState) => {
|
||||
const query = rawQuery.replace(/^lbry:\/\//i, '').replace(/\//, ' ');
|
||||
|
||||
if (!query) {
|
||||
|
@ -4155,7 +4155,8 @@ from, isBackgroundSearch = false, options = {}) => (dispatch, getState) => {
|
|||
dispatch(doUpdateSearchQuery(query));
|
||||
}
|
||||
|
||||
fetch(`${CONNECTION_STRING}search?resolve=true&${queryWithOptions}`).then(handleFetchResponse).then(data => {
|
||||
const fetchUrl = nsfw ? `${CONNECTION_STRING}search?resolve=true&${queryWithOptions}` : `${CONNECTION_STRING}search?resolve=true&nsfw=false&${queryWithOptions}`;
|
||||
fetch(fetchUrl).then(handleFetchResponse).then(data => {
|
||||
const results = [];
|
||||
|
||||
data.forEach(result => {
|
||||
|
|
|
@ -166,13 +166,13 @@ export const doSearch = (rawQuery: string, searchOptions: SearchOptions) => (
|
|||
|
||||
export const doResolvedSearch = (
|
||||
rawQuery: string,
|
||||
size?: number, // only pass in if you don't want to use the users setting (ex: related content)
|
||||
from?: number,
|
||||
isBackgroundSearch?: boolean = false,
|
||||
size: ?number, // only pass in if you don't want to use the users setting (ex: related content)
|
||||
from: ?number,
|
||||
isBackgroundSearch: boolean = false,
|
||||
options: {
|
||||
related_to?: string,
|
||||
// nsfw here
|
||||
} = {}
|
||||
} = {},
|
||||
nsfw: boolean
|
||||
) => (dispatch: Dispatch, getState: GetState) => {
|
||||
const query = rawQuery.replace(/^lbry:\/\//i, '').replace(/\//, ' ');
|
||||
|
||||
|
@ -218,7 +218,10 @@ export const doResolvedSearch = (
|
|||
dispatch(doUpdateSearchQuery(query));
|
||||
}
|
||||
|
||||
fetch(`${CONNECTION_STRING}search?resolve=true&${queryWithOptions}`)
|
||||
const fetchUrl = nsfw
|
||||
? `${CONNECTION_STRING}search?resolve=true&${queryWithOptions}`
|
||||
: `${CONNECTION_STRING}search?resolve=true&nsfw=false&${queryWithOptions}`;
|
||||
fetch(fetchUrl)
|
||||
.then(handleFetchResponse)
|
||||
.then((data: Array<ResolvedSearchResult>) => {
|
||||
const results = [];
|
||||
|
|
Loading…
Reference in a new issue