1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/src/components/templates/Search/utils.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-06-30 15:24:30 +02:00
import {
2020-07-01 18:13:32 +02:00
SearchQuery,
QueryResult
2020-07-14 13:01:24 +02:00
} from '@oceanprotocol/lib/dist/node/metadatastore/MetadataStore'
import { MetadataStore, Logger } from '@oceanprotocol/lib'
2020-05-07 08:03:30 +02:00
2020-06-30 15:24:30 +02:00
export function getSearchQuery(
page?: string | string[],
offset?: string | string[],
text?: string | string[],
2020-09-24 12:23:40 +02:00
tag?: string | string[]
2020-06-30 15:24:30 +02:00
): SearchQuery {
return {
page: Number(page) || 1,
offset: Number(offset) || 20,
query: {
text,
2020-09-24 12:23:40 +02:00
tags: tag ? [tag] : undefined
2020-06-30 15:24:30 +02:00
},
sort: {
created: -1
}
2020-07-07 23:00:16 +02:00
// Something in squid-js is weird when using 'tags: [tag]'
2020-06-30 15:24:30 +02:00
// which is the only way the query actually returns desired results.
// But it doesn't follow 'SearchQuery' interface so we have to assign
// it here.
} as SearchQuery
}
export async function getResults(
2020-09-24 12:23:40 +02:00
params: { text?: string; tag?: string; page?: string; offset?: string },
metadataStoreUri: string
): Promise<QueryResult> {
2020-09-24 12:23:40 +02:00
const { text, tag, page, offset } = params
2020-06-30 15:24:30 +02:00
2020-07-22 12:20:55 +02:00
const metadataStore = new MetadataStore(metadataStoreUri, Logger)
2020-07-14 13:01:24 +02:00
const queryResult = await metadataStore.queryMetadata(
2020-09-24 12:23:40 +02:00
getSearchQuery(page, offset, text, tag)
2020-05-07 08:03:30 +02:00
)
2020-06-30 15:24:30 +02:00
return queryResult
2020-05-07 08:03:30 +02:00
}