mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
metadata fixes
This commit is contained in:
parent
508628bfda
commit
a9da3e33e0
@ -13,7 +13,7 @@ interface File {
|
|||||||
found: boolean
|
found: boolean
|
||||||
checksum?: string
|
checksum?: string
|
||||||
checksumType?: string
|
checksumType?: string
|
||||||
contentLength?: string
|
contentLength?: number
|
||||||
contentType?: string
|
contentType?: string
|
||||||
resourceId?: string
|
resourceId?: string
|
||||||
encoding?: string
|
encoding?: string
|
||||||
@ -77,7 +77,13 @@ export default class Files extends PureComponent<FilesProps, FilesStates> {
|
|||||||
|
|
||||||
public addItem = async (value: string) => {
|
public addItem = async (value: string) => {
|
||||||
let res: any
|
let res: any
|
||||||
let file: File = { url: value, found: false, size: 0, type: '' }
|
let file: File = {
|
||||||
|
url: value,
|
||||||
|
found: false,
|
||||||
|
contentLength: 0,
|
||||||
|
contentType: '',
|
||||||
|
compression: ''
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await fetch(
|
const response = await fetch(
|
||||||
@ -93,7 +99,7 @@ export default class Files extends PureComponent<FilesProps, FilesStates> {
|
|||||||
res = await response.json()
|
res = await response.json()
|
||||||
file.contentLength = res.result.contentLength
|
file.contentLength = res.result.contentLength
|
||||||
file.contentType = res.result.contentType
|
file.contentType = res.result.contentType
|
||||||
file.compression = await getFileCompression(file.contentType)
|
file.compression = await getFileCompression(res.result.contentType)
|
||||||
file.found = res.result.found
|
file.found = res.result.found
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// error
|
// error
|
||||||
|
Loading…
Reference in New Issue
Block a user