mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-18 19:01:38 +03:00
migrated search endpoints
This commit is contained in:
parent
e844d9bab2
commit
8669a4a801
@ -398,67 +398,88 @@ export const setPushToken = (data) =>
|
||||
* ************************************
|
||||
*/
|
||||
|
||||
export const search = (data) =>
|
||||
new Promise((resolve, reject) => {
|
||||
searchApi
|
||||
.post('/search', data)
|
||||
.then((res) => {
|
||||
resolve(res.data);
|
||||
})
|
||||
.catch((error) => {
|
||||
bugsnag.notify(error);
|
||||
reject(error);
|
||||
});
|
||||
});
|
||||
export const search = async (data:{
|
||||
q: string,
|
||||
sort: string,
|
||||
hideLow: string,
|
||||
since?: string,
|
||||
scroll_id?: string
|
||||
}) => {
|
||||
try {
|
||||
const response = await ecencyApi.post('/search-api/search', data);
|
||||
return response.data;
|
||||
} catch(error) {
|
||||
console.warn("Search failed", error);
|
||||
bugsnag.notify(error);
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
export const searchPath = (q) =>
|
||||
new Promise((resolve, reject) => {
|
||||
searchApi
|
||||
.post('/search-path', {
|
||||
q,
|
||||
})
|
||||
.then((res) => {
|
||||
resolve(res.data);
|
||||
})
|
||||
.catch((error) => {
|
||||
bugsnag.notify(error);
|
||||
reject(error);
|
||||
});
|
||||
});
|
||||
|
||||
export const searchAccount = (q = '', limit = 20, random = 0) =>
|
||||
new Promise((resolve, reject) => {
|
||||
searchApi
|
||||
.post('/search-account', {
|
||||
/**
|
||||
*
|
||||
* @param q query
|
||||
* @returns array of path strings
|
||||
*/
|
||||
export const searchPath = async (q:string) => {
|
||||
try {
|
||||
const data = { q };
|
||||
const response = await ecencyApi.post('/search-api/search-path', data);
|
||||
return response.data;
|
||||
} catch(error){
|
||||
console.warn("path search failed", error)
|
||||
bugsnag.notify(error);
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @param q query
|
||||
* @param limit number of posts to fetch
|
||||
* @param random random
|
||||
* @returns array of accounts
|
||||
*/
|
||||
export const searchAccount = async (q:string = '', limit:number = 20, random:number = 0) => {
|
||||
try {
|
||||
const data = {
|
||||
q,
|
||||
limit,
|
||||
random,
|
||||
})
|
||||
.then((res) => {
|
||||
resolve(res.data);
|
||||
})
|
||||
.catch((error) => {
|
||||
bugsnag.notify(error);
|
||||
reject(error);
|
||||
});
|
||||
});
|
||||
}
|
||||
const response = await ecencyApi.post(`/search-api/search-account`, data)
|
||||
return response.data;
|
||||
} catch(error) {
|
||||
console.warn("account search failed", error)
|
||||
bugsnag.notify(error);
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
export const searchTag = (q = '', limit = 20, random = 0) =>
|
||||
new Promise((resolve, reject) => {
|
||||
searchApi
|
||||
.post('/search-tag', {
|
||||
|
||||
/**
|
||||
*
|
||||
* @param q query
|
||||
* @param limit number of posts to fetch
|
||||
* @param random random
|
||||
* @returns array of accounts
|
||||
*/
|
||||
export const searchTag = async (q:string = '', limit:number = 20, random:number = 0) => {
|
||||
try {
|
||||
const data = {
|
||||
q,
|
||||
limit,
|
||||
random,
|
||||
})
|
||||
.then((res) => {
|
||||
resolve(res.data);
|
||||
})
|
||||
.catch((error) => {
|
||||
bugsnag.notify(error);
|
||||
reject(error);
|
||||
});
|
||||
});
|
||||
}
|
||||
const response = await ecencyApi.post(`/search-api/search-tag`, data);
|
||||
return response.data;
|
||||
} catch(error) {
|
||||
console.warn("tag search failed", error)
|
||||
bugsnag.notify(error);
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -99,9 +99,13 @@ const PostsResultsContainer = ({ children, navigation, searchValue }) => {
|
||||
|
||||
const _loadMore = (index, value) => {
|
||||
if (scrollId && searchValue) {
|
||||
search({ q: `${searchValue} type:post`, sort, scroll_id: scrollId }).then((res) => {
|
||||
search({ q: `${searchValue} type:post`, sort, scroll_id: scrollId })
|
||||
.then((res) => {
|
||||
setData([...data, ...res.results]);
|
||||
});
|
||||
})
|
||||
.catch(()=>{
|
||||
console.warn("Search Failed");
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user