mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* fix loading * fix cancel acction and some cleanups * style typo Co-authored-by: Matthias Kretschmann <m@kretschmann.io> * fix title and replace router with link * add proper loading to edit components * add page title * add more top spacing to form description Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
175 lines
5.0 KiB
TypeScript
175 lines
5.0 KiB
TypeScript
import React, { ReactElement, useState } from 'react'
|
|
import { Formik } from 'formik'
|
|
import {
|
|
LoggerInstance,
|
|
Metadata,
|
|
FixedRateExchange,
|
|
Asset,
|
|
Service
|
|
} from '@oceanprotocol/lib'
|
|
import { validationSchema, getInitialValues } from './_constants'
|
|
import { MetadataEditForm } from './_types'
|
|
import { useWeb3 } from '@context/Web3'
|
|
import { useUserPreferences } from '@context/UserPreferences'
|
|
import Web3Feedback from '@shared/Web3Feedback'
|
|
import FormEditMetadata from './FormEditMetadata'
|
|
import { mapTimeoutStringToSeconds } from '@utils/ddo'
|
|
import styles from './index.module.css'
|
|
import content from '../../../../content/pages/edit.json'
|
|
import { AssetExtended } from 'src/@types/AssetExtended'
|
|
import { useAbortController } from '@hooks/useAbortController'
|
|
import DebugEditMetadata from './DebugEditMetadata'
|
|
import { getOceanConfig } from '@utils/ocean'
|
|
import EditFeedback from './EditFeedback'
|
|
import { useAsset } from '@context/Asset'
|
|
import { setNftMetadata } from '@utils/nft'
|
|
|
|
export default function Edit({
|
|
asset
|
|
}: {
|
|
asset: AssetExtended
|
|
}): ReactElement {
|
|
const { debug } = useUserPreferences()
|
|
const { fetchAsset, isAssetNetwork } = useAsset()
|
|
const { accountId, web3 } = useWeb3()
|
|
const newAbortController = useAbortController()
|
|
const [success, setSuccess] = useState<string>()
|
|
const [error, setError] = useState<string>()
|
|
const isComputeType = asset?.services[0]?.type === 'compute'
|
|
const hasFeedback = error || success
|
|
|
|
async function updateFixedPrice(newPrice: string) {
|
|
const config = getOceanConfig(asset.chainId)
|
|
|
|
const fixedRateInstance = new FixedRateExchange(
|
|
web3,
|
|
config.fixedRateExchangeAddress
|
|
)
|
|
|
|
const setPriceResp = await fixedRateInstance.setRate(
|
|
accountId,
|
|
asset.accessDetails.addressOrId,
|
|
newPrice
|
|
)
|
|
LoggerInstance.log('[edit] setFixedRate result', setPriceResp)
|
|
if (!setPriceResp) {
|
|
setError(content.form.error)
|
|
LoggerInstance.error(content.form.error)
|
|
}
|
|
}
|
|
|
|
async function handleSubmit(
|
|
values: Partial<MetadataEditForm>,
|
|
resetForm: () => void
|
|
) {
|
|
try {
|
|
const linksTransformed = values.links?.length &&
|
|
values.links[0].valid && [
|
|
values.links[0].url.replace('javascript:', '')
|
|
]
|
|
const updatedMetadata: Metadata = {
|
|
...asset.metadata,
|
|
name: values.name,
|
|
description: values.description,
|
|
links: linksTransformed,
|
|
author: values.author
|
|
}
|
|
|
|
asset?.accessDetails?.type === 'fixed' &&
|
|
values.price !== asset.accessDetails.price &&
|
|
(await updateFixedPrice(values.price))
|
|
|
|
const updatedService: Service = {
|
|
...asset.services[0],
|
|
timeout: mapTimeoutStringToSeconds(values.timeout)
|
|
}
|
|
|
|
const updatedAsset: Asset = {
|
|
...asset,
|
|
metadata: updatedMetadata,
|
|
services: [updatedService]
|
|
}
|
|
|
|
const setMetadataTx = await setNftMetadata(
|
|
updatedAsset,
|
|
accountId,
|
|
web3,
|
|
newAbortController()
|
|
)
|
|
|
|
LoggerInstance.log('[edit] setMetadata result', setMetadataTx)
|
|
|
|
if (!setMetadataTx) {
|
|
setError(content.form.error)
|
|
LoggerInstance.error(content.form.error)
|
|
return
|
|
}
|
|
// Edit succeeded
|
|
setSuccess(content.form.success)
|
|
resetForm()
|
|
} catch (error) {
|
|
LoggerInstance.error(error.message)
|
|
setError(error.message)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Formik
|
|
initialValues={getInitialValues(
|
|
asset?.metadata,
|
|
asset?.services[0]?.timeout,
|
|
asset?.accessDetails?.price
|
|
)}
|
|
validationSchema={validationSchema}
|
|
onSubmit={async (values, { resetForm }) => {
|
|
// move user's focus to top of screen
|
|
window.scrollTo({ top: 0, left: 0, behavior: 'smooth' })
|
|
// kick off editing
|
|
await handleSubmit(values, resetForm)
|
|
}}
|
|
>
|
|
{({ isSubmitting, values }) =>
|
|
isSubmitting || hasFeedback ? (
|
|
<EditFeedback
|
|
title="Updating Data Set"
|
|
error={error}
|
|
success={success}
|
|
setError={setError}
|
|
successAction={{
|
|
name: 'View Asset',
|
|
onClick: async () => {
|
|
await fetchAsset()
|
|
},
|
|
to: `/asset/${asset.id}`
|
|
}}
|
|
/>
|
|
) : (
|
|
<>
|
|
<p className={styles.description}>{content.description}</p>
|
|
<article>
|
|
<FormEditMetadata
|
|
data={content.form.data}
|
|
showPrice={asset?.accessDetails?.type === 'fixed'}
|
|
isComputeDataset={isComputeType}
|
|
/>
|
|
|
|
<aside>
|
|
<Web3Feedback
|
|
networkId={asset?.chainId}
|
|
isAssetNetwork={isAssetNetwork}
|
|
/>
|
|
</aside>
|
|
|
|
{debug === true && (
|
|
<div className={styles.grid}>
|
|
<DebugEditMetadata values={values} asset={asset} />
|
|
</div>
|
|
)}
|
|
</article>
|
|
</>
|
|
)
|
|
}
|
|
</Formik>
|
|
)
|
|
}
|