mirror of
https://github.com/oceanprotocol/react.git
synced 2025-01-03 18:35:18 +01:00
metadata refactor , example
This commit is contained in:
parent
2fee743f8d
commit
6809183b5d
@ -4,6 +4,7 @@ import { DDO } from '@oceanprotocol/lib'
|
||||
import { useState } from 'react'
|
||||
import { useEffect } from 'react'
|
||||
import shortid from 'shortid'
|
||||
import { MetadataExample } from './MetadataExample'
|
||||
export function AllDdos() {
|
||||
const { accountId, chainId, account, ocean } = useOcean()
|
||||
|
||||
@ -32,7 +33,7 @@ export function AllDdos() {
|
||||
{ddos?.map((ddo) => {
|
||||
return (
|
||||
<div key={shortid.generate()}>
|
||||
{ddo.id}
|
||||
<MetadataExample did={ddo.id} />
|
||||
<br />
|
||||
</div>
|
||||
)
|
||||
|
@ -10,6 +10,7 @@ import { ConsumeDdo } from './ConsumeDdo'
|
||||
import WalletConnectProvider from '@walletconnect/web3-provider'
|
||||
import Torus from '@toruslabs/torus-embed'
|
||||
import { NetworkMonitor } from './NetworkMonitor'
|
||||
import { MetadataExample } from './MetadataExample'
|
||||
|
||||
// factory Address needs to be updated each time you deploy the contract on local network
|
||||
const config = {
|
||||
@ -53,11 +54,7 @@ function App() {
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<OceanProvider
|
||||
initialConfig={configRinkeby}
|
||||
web3ModalOpts={web3ModalOpts}
|
||||
marketFeeAddress={'0x4D156A2ef69ffdDC55838176C6712C90f60a2285'}
|
||||
>
|
||||
<OceanProvider initialConfig={configRinkeby} web3ModalOpts={web3ModalOpts}>
|
||||
<div className="container">
|
||||
<NetworkMonitor />
|
||||
<div>
|
||||
|
25
example/src/MetadataExample.tsx
Normal file
25
example/src/MetadataExample.tsx
Normal file
@ -0,0 +1,25 @@
|
||||
import React, { useEffect, useState } from 'react'
|
||||
import { useMetadata } from '@oceanprotocol/react'
|
||||
|
||||
export function MetadataExample({ did }: { did: string }) {
|
||||
const { title, getBestPrice } = useMetadata(did)
|
||||
const [price, setPrice] = useState<string>()
|
||||
|
||||
useEffect(() => {
|
||||
async function init(): Promise<void> {
|
||||
if (title) {
|
||||
const price = await getBestPrice()
|
||||
setPrice(price)
|
||||
}
|
||||
}
|
||||
init()
|
||||
}, [title])
|
||||
|
||||
return (
|
||||
<>
|
||||
<div>
|
||||
{title} - {price}
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
@ -1,81 +1,95 @@
|
||||
import { useState, useEffect } from 'react'
|
||||
import { DID, DDO, Metadata, MetadataStore, Logger } from '@oceanprotocol/lib'
|
||||
import { DID, DDO, Metadata, Logger } from '@oceanprotocol/lib'
|
||||
import { useOcean } from '../../providers'
|
||||
import ProviderStatus from '../../providers/OceanProvider/ProviderStatus'
|
||||
import { getBestDataTokenPrice, getCheapestPool } from '../../utils/dtUtils'
|
||||
|
||||
interface UseMetadata {
|
||||
ddo: DDO
|
||||
did: DID | string
|
||||
metadata: Metadata
|
||||
title: string
|
||||
getDDO: (did: DID | string) => Promise<DDO>
|
||||
getMetadata: (did: DID | string) => Promise<Metadata>
|
||||
getTitle: (did: DID | string) => Promise<string>
|
||||
getBestPrice: (dataTokenAddress: string) => Promise<string>
|
||||
isLoaded: boolean
|
||||
getBestPrice: (dataTokenAddress?: string) => Promise<string>
|
||||
getBestPool: (
|
||||
dataTokenAddress: string
|
||||
dataTokenAddress?: string
|
||||
) => Promise<{ poolAddress: string; poolPrice: string }>
|
||||
}
|
||||
|
||||
function useMetadata(did?: DID | string): UseMetadata {
|
||||
function useMetadata(did?: DID | string, ddo?: DDO): UseMetadata {
|
||||
const { ocean, status, config, accountId } = useOcean()
|
||||
const [ddo, setDDO] = useState<DDO | undefined>()
|
||||
const [internalDdo, setDDO] = useState<DDO | undefined>()
|
||||
const [internalDid, setDID] = useState<DID | string | undefined>()
|
||||
const [metadata, setMetadata] = useState<Metadata | undefined>()
|
||||
const [title, setTitle] = useState<string | undefined>()
|
||||
const [isLoaded, setIsLoaded] = useState(false)
|
||||
|
||||
async function getDDO(did: DID | string): Promise<DDO> {
|
||||
if (status === ProviderStatus.CONNECTED) {
|
||||
const ddo = await ocean.metadatastore.retrieveDDO(did)
|
||||
return ddo
|
||||
}
|
||||
|
||||
// fallback hitting MetadataStore directly
|
||||
const metadataStore = new MetadataStore(config.metadataStoreUri, Logger)
|
||||
const ddo = await metadataStore.retrieveDDO(did)
|
||||
return ddo
|
||||
}
|
||||
|
||||
async function getBestPrice(dataTokenAddress: string): Promise<string> {
|
||||
async function getBestPrice(dataTokenAddress?: string): Promise<string> {
|
||||
if (!dataTokenAddress) dataTokenAddress = internalDdo.dataToken
|
||||
return await getBestDataTokenPrice(ocean, accountId, dataTokenAddress)
|
||||
}
|
||||
async function getBestPool(
|
||||
dataTokenAddress: string
|
||||
): Promise<{ poolAddress: string; poolPrice: string }> {
|
||||
if (!dataTokenAddress) dataTokenAddress = internalDdo.dataToken
|
||||
return await getCheapestPool(ocean, accountId, dataTokenAddress)
|
||||
}
|
||||
|
||||
async function getMetadata(did: DID | string): Promise<Metadata> {
|
||||
const ddo = await getDDO(did)
|
||||
if (!ddo) return
|
||||
const metadata = ddo.findServiceByType('metadata')
|
||||
async function getMetadata(): Promise<Metadata> {
|
||||
if (!internalDdo) return
|
||||
const metadata = internalDdo.findServiceByType('metadata')
|
||||
return metadata.attributes
|
||||
}
|
||||
|
||||
async function getTitle(did: DID | string): Promise<string> {
|
||||
const metadata = await getMetadata(did)
|
||||
async function getTitle(): Promise<string> {
|
||||
const metadata = await getMetadata()
|
||||
return metadata.main.name
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
async function init(): Promise<void> {
|
||||
if (!did) return
|
||||
const ddo = await getDDO(did)
|
||||
Logger.debug('meta init', status)
|
||||
if (ocean && status === ProviderStatus.CONNECTED) {
|
||||
if (ddo) {
|
||||
setDDO(ddo)
|
||||
|
||||
const metadata = await getMetadata(did)
|
||||
setMetadata(metadata)
|
||||
setTitle(metadata.main.name)
|
||||
setDID(ddo.id)
|
||||
}
|
||||
Logger.debug('meta init', did)
|
||||
if (did && !ddo) {
|
||||
const ddo = await getDDO(did)
|
||||
Logger.debug('DDO', ddo)
|
||||
setDDO(ddo)
|
||||
setDID(did)
|
||||
}
|
||||
}
|
||||
}
|
||||
init()
|
||||
}, [ocean])
|
||||
}, [ocean, status])
|
||||
|
||||
useEffect(() => {
|
||||
async function init(): Promise<void> {
|
||||
if (internalDdo) {
|
||||
const metadata = await getMetadata()
|
||||
setMetadata(metadata)
|
||||
setTitle(metadata.main.name)
|
||||
setIsLoaded(true)
|
||||
}
|
||||
}
|
||||
init()
|
||||
}, [internalDdo])
|
||||
return {
|
||||
ddo,
|
||||
ddo: internalDdo,
|
||||
did: internalDid,
|
||||
metadata,
|
||||
title,
|
||||
getDDO,
|
||||
getMetadata,
|
||||
getTitle,
|
||||
isLoaded,
|
||||
getBestPrice,
|
||||
getBestPool
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user