1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-07-01 06:11:43 +02:00

remove gatsby-source-ocean

This commit is contained in:
Matthias Kretschmann 2020-07-15 11:17:56 +02:00
parent 9a18502078
commit 5910faf455
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 0 additions and 51 deletions

View File

@ -29,12 +29,6 @@ module.exports = {
path: `${__dirname}/node_modules/@oceanprotocol/art/`
}
},
{
resolve: 'gatsby-source-ocean',
options: {
metadataStoreUri: oceanConfig.metadataStoreUri
}
},
{
resolve: 'gatsby-plugin-sharp',
options: {

View File

@ -1,42 +0,0 @@
const axios = require('axios')
exports.sourceNodes = async (
{ actions, createNodeId, createContentDigest },
{ metadataStoreUri }
) => {
const { createNode } = actions
// Query for all assets to use in creating pages.
const result = await axios(`${metadataStoreUri}/api/v1/aquarius/assets`)
for (let i = 0; i < result.data.ids.length; i++) {
const did = result.data.ids[i]
const metadataResult = await axios(
`${metadataStoreUri}/api/v1/aquarius/assets/metadata/${did}`
)
const metadata = {
did,
...metadataResult.data.attributes
}
const nodeMeta = {
id: createNodeId(did),
parent: null,
children: [],
internal: {
type: 'OceanAsset',
contentDigest: createContentDigest(metadata),
description: `All data sets queried from ${metadataStoreUri}`
}
}
const node = {
...metadata,
...nodeMeta
}
await createNode(node)
}
}

View File

@ -1,3 +0,0 @@
{
"name": "gatsby-source-ocean"
}