mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
search & asset teaser refactor
This commit is contained in:
parent
8d4c5ca585
commit
ff949c6a67
@ -1,72 +1,61 @@
|
||||
import React from 'react'
|
||||
import { DDO } from '@oceanprotocol/squid'
|
||||
import { Link } from 'gatsby'
|
||||
import Dotdotdot from 'react-dotdotdot'
|
||||
import {
|
||||
AdditionalInformationMarket,
|
||||
MetaDataMarket
|
||||
} from '../../@types/MetaData'
|
||||
import { MetaDataMarket } from '../../@types/MetaData'
|
||||
import Tags from '../atoms/Tags'
|
||||
import Price from '../atoms/Price'
|
||||
import styles from './AssetTeaser.module.css'
|
||||
import Rating from '../atoms/Rating'
|
||||
|
||||
declare type AssetTeaserProps = {
|
||||
ddo: Partial<DDO>
|
||||
did: string
|
||||
metadata: MetaDataMarket
|
||||
}
|
||||
|
||||
const AssetTeaser: React.FC<AssetTeaserProps> = ({ ddo }: AssetTeaserProps) => {
|
||||
const { attributes } = ddo.findServiceByType('metadata')
|
||||
const { name, price } = attributes.main
|
||||
const AssetTeaser: React.FC<AssetTeaserProps> = ({
|
||||
did,
|
||||
metadata
|
||||
}: AssetTeaserProps) => {
|
||||
const { name, price } = metadata.main
|
||||
|
||||
let description
|
||||
let copyrightHolder
|
||||
let tags
|
||||
let categories
|
||||
let access
|
||||
const {
|
||||
description,
|
||||
copyrightHolder,
|
||||
tags,
|
||||
categories,
|
||||
access
|
||||
} = metadata.additionalInformation
|
||||
|
||||
if (attributes && attributes.additionalInformation) {
|
||||
;({
|
||||
description,
|
||||
copyrightHolder,
|
||||
tags,
|
||||
categories,
|
||||
access
|
||||
} = attributes.additionalInformation as AdditionalInformationMarket)
|
||||
}
|
||||
|
||||
const { curation } = attributes as MetaDataMarket
|
||||
const { curation } = metadata
|
||||
|
||||
return (
|
||||
<article className={styles.teaser}>
|
||||
<Link to={`/asset/${ddo.id}`}>
|
||||
<a className={styles.link}>
|
||||
<h1 className={styles.title}>{name}</h1>
|
||||
{access === 'Compute' && (
|
||||
<div className={styles.accessLabel}>{access}</div>
|
||||
<Link to={`/asset/${did}`} className={styles.link}>
|
||||
<h1 className={styles.title}>{name}</h1>
|
||||
{access === 'Compute' && (
|
||||
<div className={styles.accessLabel}>{access}</div>
|
||||
)}
|
||||
<Rating curation={curation} readonly />
|
||||
|
||||
<div className={styles.content}>
|
||||
<Dotdotdot tagName="p" clamp={3}>
|
||||
{description || ''}
|
||||
</Dotdotdot>
|
||||
|
||||
{tags && (
|
||||
<Tags className={styles.tags} items={tags} max={3} noLinks />
|
||||
)}
|
||||
<Rating curation={curation} readonly />
|
||||
</div>
|
||||
|
||||
<div className={styles.content}>
|
||||
<Dotdotdot tagName="p" clamp={3}>
|
||||
{description || ''}
|
||||
</Dotdotdot>
|
||||
<footer className={styles.foot}>
|
||||
{categories && <p className={styles.type}>{categories[0]}</p>}
|
||||
|
||||
{tags && (
|
||||
<Tags className={styles.tags} items={tags} max={3} noLinks />
|
||||
)}
|
||||
</div>
|
||||
<Price price={price} className={styles.price} />
|
||||
|
||||
<footer className={styles.foot}>
|
||||
{categories && <p className={styles.type}>{categories[0]}</p>}
|
||||
|
||||
<Price price={price} className={styles.price} />
|
||||
|
||||
<p className={styles.copyright}>
|
||||
Provided by <strong>{copyrightHolder}</strong>
|
||||
</p>
|
||||
</footer>
|
||||
</a>
|
||||
<p className={styles.copyright}>
|
||||
Provided by <strong>{copyrightHolder}</strong>
|
||||
</p>
|
||||
</footer>
|
||||
</Link>
|
||||
</article>
|
||||
)
|
||||
|
@ -5,6 +5,7 @@ import shortid from 'shortid'
|
||||
import Pagination from '../molecules/Pagination'
|
||||
import { updateQueryStringParameter } from '../../utils'
|
||||
import styles from './AssetList.module.css'
|
||||
import { MetaDataMarket } from '../../@types/MetaData'
|
||||
|
||||
declare type AssetListProps = {
|
||||
queryResult: QueryResult
|
||||
@ -13,40 +14,50 @@ declare type AssetListProps = {
|
||||
const AssetList: React.FC<AssetListProps> = ({ queryResult }) => {
|
||||
// Construct the urls on the pagination links. This is only for UX,
|
||||
// since the links are no <Link> they will not work by itself.
|
||||
function hrefBuilder(pageIndex: number) {
|
||||
const newUrl = updateQueryStringParameter(
|
||||
router.asPath,
|
||||
'page',
|
||||
`${pageIndex}`
|
||||
)
|
||||
return newUrl
|
||||
}
|
||||
// function hrefBuilder(pageIndex: number) {
|
||||
// const newUrl = updateQueryStringParameter(
|
||||
// router.asPath,
|
||||
// 'page',
|
||||
// `${pageIndex}`
|
||||
// )
|
||||
// return newUrl
|
||||
// }
|
||||
|
||||
// This is what iniitates a new search with new `page`
|
||||
// url parameter
|
||||
function onPageChange(selected: number) {
|
||||
const newUrl = updateQueryStringParameter(
|
||||
router.asPath,
|
||||
'page',
|
||||
`${selected + 1}`
|
||||
)
|
||||
return router.push(newUrl)
|
||||
}
|
||||
// // This is what iniitates a new search with new `page`
|
||||
// // url parameter
|
||||
// function onPageChange(selected: number) {
|
||||
// const newUrl = updateQueryStringParameter(
|
||||
// router.asPath,
|
||||
// 'page',
|
||||
// `${selected + 1}`
|
||||
// )
|
||||
// return router.push(newUrl)
|
||||
// }
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={styles.assetList}>
|
||||
{queryResult.results &&
|
||||
queryResult.results.map((ddo) => (
|
||||
<AssetTeaser ddo={ddo} key={shortid.generate()} />
|
||||
))}
|
||||
queryResult.results.map((ddo) => {
|
||||
const { attributes }: MetaDataMarket = ddo.findServiceByType(
|
||||
'metadata'
|
||||
)
|
||||
|
||||
return (
|
||||
<AssetTeaser
|
||||
did={ddo.id}
|
||||
metadata={attributes}
|
||||
key={shortid.generate()}
|
||||
/>
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
<Pagination
|
||||
{/* <Pagination
|
||||
totalPages={queryResult.totalPages}
|
||||
currentPage={queryResult.page}
|
||||
hrefBuilder={hrefBuilder}
|
||||
onPageChange={onPageChange}
|
||||
/>
|
||||
/> */}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
53
src/components/templates/Search/index.tsx
Normal file
53
src/components/templates/Search/index.tsx
Normal file
@ -0,0 +1,53 @@
|
||||
import React, { ReactElement, useState, useEffect } from 'react'
|
||||
import { QueryResult } from '@oceanprotocol/squid/dist/node/aquarius/Aquarius'
|
||||
import SearchBar from '../../molecules/SearchBar'
|
||||
import AssetList from '../../organisms/AssetList'
|
||||
import { SearchPriceFilter } from '../../molecules/SearchPriceFilter'
|
||||
|
||||
import styles from './index.module.css'
|
||||
import queryString from 'query-string'
|
||||
import { getResults } from './utils'
|
||||
|
||||
export declare type SearchPageProps = {
|
||||
text: string | string[]
|
||||
tag: string | string[]
|
||||
queryResult: QueryResult
|
||||
}
|
||||
|
||||
export default function SearchPage({
|
||||
location
|
||||
}: {
|
||||
location: Location
|
||||
}): ReactElement {
|
||||
const parsed = queryString.parse(location.search)
|
||||
const { text, tag } = parsed
|
||||
const [queryResult, setQueryResult] = useState<QueryResult>()
|
||||
|
||||
useEffect(() => {
|
||||
async function initSearch() {
|
||||
const results = await getResults(parsed)
|
||||
setQueryResult(results)
|
||||
}
|
||||
initSearch()
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<section className={styles.grid}>
|
||||
<div className={styles.search}>
|
||||
{text && <SearchBar initialValue={text as string} />}
|
||||
</div>
|
||||
|
||||
<aside className={styles.side}>
|
||||
<SearchPriceFilter />
|
||||
</aside>
|
||||
|
||||
<div className={styles.results}>
|
||||
{queryResult && queryResult.results.length > 0 ? (
|
||||
<AssetList queryResult={queryResult} />
|
||||
) : (
|
||||
<div className={styles.empty}>No results found.</div>
|
||||
)}
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
@ -1,23 +1,10 @@
|
||||
import React, { ReactElement, useState, useEffect } from 'react'
|
||||
import {
|
||||
QueryResult,
|
||||
SearchQuery
|
||||
SearchQuery,
|
||||
QueryResult
|
||||
} from '@oceanprotocol/squid/dist/node/aquarius/Aquarius'
|
||||
import SearchBar from '../molecules/SearchBar'
|
||||
import AssetList from '../organisms/AssetList'
|
||||
import { SearchPriceFilter } from '../molecules/SearchPriceFilter'
|
||||
|
||||
import styles from './Search.module.css'
|
||||
import { priceQueryParamToWei } from '../../utils'
|
||||
import { priceQueryParamToWei } from '../../../utils'
|
||||
import { Aquarius, Logger } from '@oceanprotocol/squid'
|
||||
import { config } from '../../config/ocean'
|
||||
import queryString from 'query-string'
|
||||
|
||||
export declare type SearchPageProps = {
|
||||
text: string | string[]
|
||||
tag: string | string[]
|
||||
queryResult: QueryResult
|
||||
}
|
||||
import { config } from '../../../config/ocean'
|
||||
|
||||
export function getSearchQuery(
|
||||
page?: string | string[],
|
||||
@ -72,41 +59,3 @@ export async function getResults(params: any): Promise<QueryResult> {
|
||||
|
||||
return queryResult
|
||||
}
|
||||
|
||||
export default function SearchPage({
|
||||
location
|
||||
}: {
|
||||
location: Location
|
||||
}): ReactElement {
|
||||
const parsed = queryString.parse(location.search)
|
||||
const { text, tag } = parsed
|
||||
const [queryResult, setQueryResult] = useState<QueryResult>()
|
||||
|
||||
useEffect(() => {
|
||||
async function initSearch() {
|
||||
const results = await getResults(parsed)
|
||||
setQueryResult(results)
|
||||
}
|
||||
initSearch()
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<section className={styles.grid}>
|
||||
<div className={styles.search}>
|
||||
{text && <SearchBar initialValue={text as string} />}
|
||||
</div>
|
||||
|
||||
<aside className={styles.side}>
|
||||
<SearchPriceFilter />
|
||||
</aside>
|
||||
|
||||
<div className={styles.results}>
|
||||
{queryResult && queryResult.results.length > 0 ? (
|
||||
<AssetList queryResult={queryResult} />
|
||||
) : (
|
||||
<div className={styles.empty}>No results found.</div>
|
||||
)}
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
import React from 'react'
|
||||
import { render, fireEvent } from '@testing-library/react'
|
||||
import Search from '../../../src/components/templates/search'
|
||||
import Search from '../../../src/components/templates/Search'
|
||||
import {
|
||||
createHistory,
|
||||
createMemorySource,
|
||||
|
Loading…
Reference in New Issue
Block a user