mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* unused package cleanup * make storybook use webpack 5 * see https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#webpack-5 * bump react, cleanup * button story tweaks * add Alert stories * bump Jest to v28.1.0 * try original storyshots initialization * split up build & test CI jobs * stop testing Node.js v14 * set jest coverage flag * downgrade paambaati/codeclimate-action again * move jest config files, remove coverageReporter override * collect coverage from `src/` only * another paambaati/codeclimate-action bump test * create additional button markup test * downgrade paambaati/codeclimate-action again * more downgrade * render default button without optional style prop * ignore some folders for Jest * full coverage for Alert * more package updates * add eslint-plugin-testing-library & eslint-plugin-jest-dom * bump ESLint packages, follow new rules * start storybook in quiet mode * update docs * test storybook build as part of CI * more testing docs clarification * add jest:watch command * add body background colors switch in toolbar * TypeScript voodoo * test codeclimate-action@v2.7.3 for default coverageCommand * downgrade codeclimate-action and running in debug mode * make coverage artifacts OS agnostic * subgraph typings as artifact for coverage job * disable coverage sending job for now Co-authored-by: Enzo Vezzaro <enzo-vezzaro@live.it>
89 lines
2.9 KiB
TypeScript
89 lines
2.9 KiB
TypeScript
import React, { ReactElement, useEffect, useState } from 'react'
|
|
import { Field, Form, FormikContextType, useFormikContext } from 'formik'
|
|
import Input, { InputProps } from '@shared/FormInput'
|
|
import { AssetSelectionAsset } from '@shared/FormFields/AssetSelection'
|
|
import stylesIndex from './index.module.css'
|
|
import styles from './FormEdit.module.css'
|
|
import {
|
|
generateBaseQuery,
|
|
getFilterTerm,
|
|
queryMetadata
|
|
} from '@utils/aquarius'
|
|
import { useAsset } from '@context/Asset'
|
|
import { PublisherTrustedAlgorithm } from '@oceanprotocol/lib'
|
|
import FormActions from './FormActions'
|
|
import { useCancelToken } from '@hooks/useCancelToken'
|
|
import { SortTermOptions } from '../../../@types/aquarius/SearchQuery'
|
|
import { getServiceByName } from '@utils/ddo'
|
|
import { transformAssetToAssetSelection } from '@utils/assetConvertor'
|
|
import { useMarketMetadata } from '@context/MarketMetadata'
|
|
|
|
export default function FormEditComputeDataset({
|
|
data,
|
|
title
|
|
}: {
|
|
data: InputProps[]
|
|
title: string
|
|
}): ReactElement {
|
|
const { appConfig } = useMarketMetadata()
|
|
const { asset } = useAsset()
|
|
const { values }: FormikContextType<ComputePrivacyForm> = useFormikContext()
|
|
const [allAlgorithms, setAllAlgorithms] = useState<AssetSelectionAsset[]>()
|
|
const newCancelToken = useCancelToken()
|
|
const { publisherTrustedAlgorithms } = getServiceByName(
|
|
asset,
|
|
'compute'
|
|
).compute
|
|
|
|
async function getAlgorithmList(
|
|
publisherTrustedAlgorithms: PublisherTrustedAlgorithm[]
|
|
): Promise<AssetSelectionAsset[]> {
|
|
const baseParams = {
|
|
chainIds: [asset.chainId],
|
|
sort: { sortBy: SortTermOptions.Created },
|
|
filters: [getFilterTerm('metadata.type', 'algorithm')]
|
|
} as BaseQueryParams
|
|
|
|
const query = generateBaseQuery(baseParams)
|
|
const querryResult = await queryMetadata(query, newCancelToken())
|
|
const datasetComputeService = getServiceByName(asset, 'compute')
|
|
const algorithmSelectionList = await transformAssetToAssetSelection(
|
|
datasetComputeService?.serviceEndpoint,
|
|
querryResult?.results,
|
|
publisherTrustedAlgorithms
|
|
)
|
|
return algorithmSelectionList
|
|
}
|
|
|
|
useEffect(() => {
|
|
getAlgorithmList(publisherTrustedAlgorithms).then((algorithms) => {
|
|
setAllAlgorithms(algorithms)
|
|
})
|
|
}, [appConfig, appConfig.metadataCacheUri, publisherTrustedAlgorithms])
|
|
|
|
return (
|
|
<Form className={styles.form}>
|
|
<h3 className={stylesIndex.title}>{title}</h3>
|
|
{data.map((field: InputProps) => (
|
|
<Field
|
|
key={field.name}
|
|
{...field}
|
|
options={
|
|
field.name === 'publisherTrustedAlgorithms'
|
|
? allAlgorithms
|
|
: field.options
|
|
}
|
|
disabled={
|
|
field.name === 'publisherTrustedAlgorithms'
|
|
? values.allowAllPublishedAlgorithms
|
|
: false
|
|
}
|
|
component={Input}
|
|
/>
|
|
))}
|
|
|
|
<FormActions />
|
|
</Form>
|
|
)
|
|
}
|