mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
gatsby-source-ocean: add plugin options, new node type name
This commit is contained in:
parent
85b76a727b
commit
7cee5eee21
@ -28,7 +28,12 @@ module.exports = {
|
||||
path: `${__dirname}/node_modules/@oceanprotocol/art/`
|
||||
}
|
||||
},
|
||||
'gatsby-source-ocean',
|
||||
{
|
||||
resolve: 'gatsby-source-ocean',
|
||||
options: {
|
||||
aquariusUri: 'https://aquarius.marketplace.oceanprotocol.com'
|
||||
}
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-sharp',
|
||||
options: {
|
||||
|
@ -20,7 +20,7 @@ exports.createPages = async ({ graphql, actions }) => {
|
||||
|
||||
const result = await graphql(`
|
||||
query {
|
||||
allAsset {
|
||||
allOceanAsset {
|
||||
edges {
|
||||
node {
|
||||
did
|
||||
@ -53,7 +53,7 @@ exports.createPages = async ({ graphql, actions }) => {
|
||||
throw result.errors
|
||||
}
|
||||
|
||||
await result.data.allAsset.edges.forEach(({ node }) => {
|
||||
await result.data.allOceanAsset.edges.forEach(({ node }) => {
|
||||
const path = `/asset/${node.did}`
|
||||
|
||||
createPage({
|
||||
|
@ -1,22 +1,20 @@
|
||||
const axios = require('axios')
|
||||
|
||||
exports.sourceNodes = async ({
|
||||
actions,
|
||||
createNodeId,
|
||||
createContentDigest
|
||||
}) => {
|
||||
exports.sourceNodes = async (
|
||||
{ actions, createNodeId, createContentDigest },
|
||||
pluginOptions
|
||||
) => {
|
||||
const { createNode } = actions
|
||||
const { aquariusUri } = pluginOptions
|
||||
|
||||
// Query for all assets to use in creating pages.
|
||||
const result = await axios(
|
||||
`https://aquarius.marketplace.oceanprotocol.com/api/v1/aquarius/assets`
|
||||
)
|
||||
const result = await axios(`${aquariusUri}/api/v1/aquarius/assets`)
|
||||
|
||||
for (let i = 0; i < result.data.ids.length; i++) {
|
||||
const did = result.data.ids[i]
|
||||
|
||||
const metadataResult = await axios(
|
||||
`https://aquarius.marketplace.oceanprotocol.com/api/v1/aquarius/assets/metadata/${did}`
|
||||
`${aquariusUri}/api/v1/aquarius/assets/metadata/${did}`
|
||||
)
|
||||
|
||||
const metadata = {
|
||||
@ -29,10 +27,9 @@ exports.sourceNodes = async ({
|
||||
parent: null,
|
||||
children: [],
|
||||
internal: {
|
||||
type: 'Asset',
|
||||
mediaType: 'application/json',
|
||||
content: JSON.stringify(metadata),
|
||||
contentDigest: createContentDigest(metadata)
|
||||
type: 'OceanAsset',
|
||||
contentDigest: createContentDigest(metadata),
|
||||
description: `All data sets queried from ${pluginOptions.aquariusUri}`
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -14,8 +14,8 @@ export default function AssetDetailsTemplate(props: PageProps): ReactElement {
|
||||
}
|
||||
|
||||
export const templateQuery = graphql`
|
||||
query AssetByDid($did: String!) {
|
||||
asset(did: { eq: $did }) {
|
||||
query OceanAssetByDid($did: String!) {
|
||||
oceanAsset(did: { eq: $did }) {
|
||||
did
|
||||
main {
|
||||
type
|
||||
|
Loading…
Reference in New Issue
Block a user