diff --git a/content/site.json b/content/site.json
index 8cc1095ec..0845ea8a5 100644
--- a/content/site.json
+++ b/content/site.json
@@ -2,7 +2,7 @@
"site": {
"siteTitle": "Ocean Market",
"siteTagline": "A marketplace to find and publish open data sets in the Ocean Network.",
- "siteUrl": "https://market.oceanprotocol.now.sh/",
+ "siteUrl": "https://market.oceanprotocol.now.sh",
"siteIcon": "node_modules/@oceanprotocol/art/logo/favicon-white.png",
"siteImage": "../src/images/share.png",
"copyright": "All Rights Reserved. Powered by [Ocean Protocol](https://oceanprotocol.com)",
diff --git a/gatsby-node.js b/gatsby-node.js
index 7a4b3a3d1..47b31c450 100644
--- a/gatsby-node.js
+++ b/gatsby-node.js
@@ -1,3 +1,7 @@
+const path = require('path')
+const axios = require('axios')
+// const { config } = require('./src/config/ocean')
+
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
node: {
@@ -6,3 +10,32 @@ exports.onCreateWebpackConfig = ({ actions }) => {
}
})
}
+
+exports.createPages = async ({ actions, reporter }) => {
+ const { createPage } = actions
+ // Query for markdown nodes to use in creating pages.
+ const result = await axios(
+ `https://aquarius.marketplace.oceanprotocol.com/api/v1/aquarius/assets`
+ )
+ const assets = result.data.ids
+
+ // Handle errors
+ if (result.errors) {
+ reporter.panicOnBuild(`Error while querying Aquarius for all assets.`)
+ return
+ }
+
+ // Create pages for each DID
+ const assetDetailsTemplate = path.resolve(
+ `src/components/templates/AssetDetails/index.tsx`
+ )
+ assets.forEach((did) => {
+ const path = `/asset/${did}`
+
+ createPage({
+ path,
+ component: assetDetailsTemplate,
+ context: { did }
+ })
+ })
+}
diff --git a/src/@types/MetaData.d.ts b/src/@types/MetaData.d.ts
index 6604a7187..b8b00df9e 100644
--- a/src/@types/MetaData.d.ts
+++ b/src/@types/MetaData.d.ts
@@ -1,15 +1,5 @@
-import { MetaData, AdditionalInformation, Curation } from '@oceanprotocol/squid'
-
-declare type DeliveryType = 'files' | 'api' | 'subscription'
-
-declare type Granularity =
- | 'hourly'
- | 'daily'
- | 'weekly'
- | 'monthly'
- | 'annually'
- | 'Not updated periodically'
- | ''
+import { MetaData, AdditionalInformation } from '@oceanprotocol/squid'
+import { ServiceMetadata } from '@oceanprotocol/squid/dist/node/ddo/Service'
export interface Sample {
name: string
@@ -21,14 +11,15 @@ export declare type AccessType = 'Download' | 'Compute'
export interface AdditionalInformationMarket extends AdditionalInformation {
description: string
links?: Sample[] // redefine existing key, cause not specific enough in Squid
- deliveryType: DeliveryType
termsAndConditions: boolean
dateRange?: [string, string]
- supportName?: string
- supportEmail?: string
access: AccessType
}
export interface MetaDataMarket extends MetaData {
additionalInformation: AdditionalInformationMarket
}
+
+export interface ServiceMetaDataMarket extends ServiceMetadata {
+ attributes: MetaDataMarket
+}
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 0c7cb7b15..0003c0ffa 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -10,18 +10,18 @@ import { config } from '../config/ocean'
export interface LayoutProps {
children: ReactNode
- title?: string
+ title: string
+ uri: string
description?: string
noPageHeader?: boolean
- location?: Location
}
export default function Layout({
children,
title,
+ uri,
description,
- noPageHeader,
- location
+ noPageHeader
}: LayoutProps): ReactElement {
return (
@@ -33,12 +33,7 @@ export default function Layout({
-
+
diff --git a/src/components/atoms/Seo.tsx b/src/components/atoms/Seo.tsx
index e2c02c766..5c415f3d0 100644
--- a/src/components/atoms/Seo.tsx
+++ b/src/components/atoms/Seo.tsx
@@ -1,18 +1,16 @@
-import React from 'react'
+import React, { ReactElement } from 'react'
import { Helmet } from 'react-helmet'
import { useSiteMetadata } from '../../hooks/useSiteMetadata'
export default function Seo({
title,
description,
- uri,
- location
+ uri
}: {
title?: string
description?: string
uri: string
- location: Location
-}) {
+}): ReactElement {
const { siteTitle, siteTagline, siteUrl, siteImage } = useSiteMetadata()
// Remove trailing slash from all URLs
@@ -37,7 +35,7 @@ export default function Seo({
-
+
) : (
-
)}
-
+ {/* */}
Summary
@@ -80,7 +73,7 @@ const AssetDetailsPageMeta = ({
{tags && tags.length > 0 && }
-
+
{/* */}
-
+ {/* */}
{isCompute ? (
-
+
) : (
-
+
)}
-
-
+ {/* */}
+
>
)
}
-const AssetDetailsPage = ({
- ddo,
- attributes,
- title,
- error
-}: AssetDetailsPageProps) => {
- if (error) {
- return (
-
-
-
- )
- }
+export default function AssetDetailsPage(props: PageProps): ReactElement {
+ const [metadata, setMetadata] = useState()
+ const [title, setTitle] = useState()
+ const [error, setError] = useState()
- return (
-
+ const { did } = props.pageContext as { did: string }
+
+ useEffect(() => {
+ async function init() {
+ try {
+ const aquarius = new Aquarius(config.aquariusUri, Logger)
+ const ddo = await aquarius.retrieveDDO(did)
+
+ if (!ddo) {
+ setTitle('Could not retrieve asset')
+ setError('The DDO was not found in Aquarius.')
+ return
+ }
+
+ const { attributes }: ServiceMetaDataMarket = ddo.findServiceByType(
+ 'metadata'
+ )
+
+ setTitle(attributes.main.name)
+ console.log(attributes)
+ setMetadata(attributes)
+ } catch (error) {
+ setTitle('Error retrieving asset')
+ setError(error.message)
+ }
+ }
+ init()
+ }, [])
+
+ return error ? (
+
+
+
+ ) : did && metadata ? (
+
- {attributes && (
-
- )}
+
- )
+ ) : null
}
-
-export default AssetDetailsPage
diff --git a/src/pages/history.tsx b/src/pages/history.tsx
index a7d215785..b22607685 100644
--- a/src/pages/history.tsx
+++ b/src/pages/history.tsx
@@ -8,7 +8,7 @@ export default function PageGatsbyHistory(props: PageProps): ReactElement {
const { title, description } = content
return (
-
+
)
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 7cd72d0b5..169ede960 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -8,11 +8,7 @@ export default function PageGatsbyHome(props: PageProps): ReactElement {
const { siteTitle, siteTagline } = useSiteMetadata()
return (
-
+
)
diff --git a/src/pages/publish.tsx b/src/pages/publish.tsx
index 1d159005c..0647d9d75 100644
--- a/src/pages/publish.tsx
+++ b/src/pages/publish.tsx
@@ -8,7 +8,7 @@ export default function PageGatsbyPublish(props: PageProps): ReactElement {
const { title, description } = content
return (
-
+
)
diff --git a/src/pages/search.tsx b/src/pages/search.tsx
index 347971a82..bbbed7d68 100644
--- a/src/pages/search.tsx
+++ b/src/pages/search.tsx
@@ -9,7 +9,7 @@ export default function PageGatsbySearch(props: PageProps): ReactElement {
const { text, tag } = parsed
return (
-
+
)