mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { PublisherTrustedAlgorithm, Asset } from '@oceanprotocol/lib'
|
|
import { AssetSelectionAsset } from '@shared/FormInput/InputElement/AssetSelection'
|
|
import { getServiceByName } from './ddo'
|
|
import normalizeUrl from 'normalize-url'
|
|
|
|
export async function transformAssetToAssetSelection(
|
|
datasetProviderEndpoint: string,
|
|
assets: Asset[],
|
|
selectedAlgorithms?: PublisherTrustedAlgorithm[]
|
|
): Promise<AssetSelectionAsset[]> {
|
|
const algorithmList: AssetSelectionAsset[] = []
|
|
|
|
for (const asset of assets) {
|
|
const algoService =
|
|
getServiceByName(asset, 'compute') || getServiceByName(asset, 'access')
|
|
|
|
if (
|
|
asset?.stats?.price?.value >= 0 &&
|
|
normalizeUrl(algoService?.serviceEndpoint) ===
|
|
normalizeUrl(datasetProviderEndpoint)
|
|
) {
|
|
let selected = false
|
|
selectedAlgorithms?.forEach((algorithm: PublisherTrustedAlgorithm) => {
|
|
if (algorithm.did === asset.id) {
|
|
selected = true
|
|
}
|
|
})
|
|
const algorithmAsset: AssetSelectionAsset = {
|
|
did: asset.id,
|
|
name: asset.metadata.name,
|
|
price: asset.stats.price.value,
|
|
checked: selected,
|
|
symbol: asset.datatokens[0].symbol
|
|
}
|
|
selected
|
|
? algorithmList.unshift(algorithmAsset)
|
|
: algorithmList.push(algorithmAsset)
|
|
}
|
|
}
|
|
return algorithmList
|
|
}
|