mirror of
https://github.com/oceanprotocol/react-tutorial
synced 2024-11-22 01:36:58 +01:00
add Compute component example
This commit is contained in:
parent
12f484c643
commit
65b99456a6
62
src/Compute.js
Normal file
62
src/Compute.js
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
import React, { useState } from 'react'
|
||||||
|
import asset from './asset'
|
||||||
|
|
||||||
|
export default function Compute({ ocean, web3 }) {
|
||||||
|
const [ddoAsset, setDdoAsset] = useState('')
|
||||||
|
const [ddoAlgorithm, setDdoAlgorithm] = useState('')
|
||||||
|
|
||||||
|
// publish a dataset and an algorithm
|
||||||
|
async function publish() {
|
||||||
|
try {
|
||||||
|
const accounts = await ocean.accounts.list()
|
||||||
|
const ddoAssetNew = await ocean.assets.create(asset, accounts[0])
|
||||||
|
const ddoAlgorithmNew = await ocean.assets.create(asset, accounts[0])
|
||||||
|
|
||||||
|
console.log('Asset successfully submitted.')
|
||||||
|
console.log(ddoAssetNew)
|
||||||
|
console.log(ddoAlgorithmNew)
|
||||||
|
// keep track of this registered asset for consumption later on
|
||||||
|
setDdoAsset(ddoAssetNew)
|
||||||
|
setDdoAlgorithm(ddoAlgorithmNew)
|
||||||
|
alert(
|
||||||
|
'Asset successfully submitted. Look into your console to see the response DDO object.'
|
||||||
|
)
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error.message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// order and start the compute service
|
||||||
|
async function start() {
|
||||||
|
try {
|
||||||
|
const accounts = await ocean.accounts.list()
|
||||||
|
|
||||||
|
// order the compute service
|
||||||
|
const agreementId = await ocean.compute.order(accounts[0], ddoAsset.id)
|
||||||
|
|
||||||
|
// start a compute job
|
||||||
|
const status = await ocean.compute.start(
|
||||||
|
accounts[0],
|
||||||
|
agreementId,
|
||||||
|
ddoAlgorithm.id
|
||||||
|
)
|
||||||
|
console.log(status)
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error.message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// get results
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<h3>Compute</h3>
|
||||||
|
<button onClick={() => publish()} disabled={!web3}>
|
||||||
|
Publish dataset and algorithm
|
||||||
|
</button>
|
||||||
|
<button onClick={() => start()} disabled={!web3}>
|
||||||
|
Order and start compute service
|
||||||
|
</button>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
@ -3,6 +3,7 @@ import ReactDOM from 'react-dom'
|
|||||||
import { Ocean } from '@oceanprotocol/squid'
|
import { Ocean } from '@oceanprotocol/squid'
|
||||||
import Web3 from 'web3'
|
import Web3 from 'web3'
|
||||||
import asset from './asset'
|
import asset from './asset'
|
||||||
|
import Compute from './Compute'
|
||||||
|
|
||||||
let web3
|
let web3
|
||||||
|
|
||||||
@ -119,6 +120,8 @@ class App extends Component {
|
|||||||
<button onClick={() => this.consumeAsset()} disabled={!web3}>
|
<button onClick={() => this.consumeAsset()} disabled={!web3}>
|
||||||
Consume asset
|
Consume asset
|
||||||
</button>
|
</button>
|
||||||
|
<hr />
|
||||||
|
<Compute ocean={this.state.ocean} web3={web3} />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user