Skip to content
Snippets Groups Projects
Commit 1e6d4847 authored by vkovtun's avatar vkovtun
Browse files

BIS-753: Rolled back file download to use the blob instead of the experimental File System API.

parent 1532f4e9
No related branches found
No related tags found
No related merge requests found
......@@ -340,15 +340,12 @@ class DataBrowser extends React.Component {
}
async downloadFile(file) {
if ('showSaveFilePicker' in window) {
try {
this.setState({ loading: true, progress: 0 })
await this.controller.downloadAndSaveFile(file, this.updateProgress)
} finally {
this.setState({ loading: false, progress: 0 })
}
} else {
this.openErrorDialog(messages.get(messages.DOWNLOADS_NOT_SUPPORTED))
try {
this.setState({ loading: true, progress: 0 })
const blob = await this.fileToBlob(file)
this.downloadBlob(blob, file.name)
} finally {
this.setState({ loading: false, progress: 0 })
}
}
......@@ -366,7 +363,7 @@ class DataBrowser extends React.Component {
}
async fileToBlob(file) {
const dataArray = await this.controller.downloadFile(file)
const dataArray = await this.controller.download(file)
return new Blob(dataArray, { type: this.inferMimeType(file.path) })
}
......
......@@ -217,39 +217,6 @@ export default class DataBrowserController extends ComponentController {
return dataArray
}
async downloadAndSaveFile(file, onProgressUpdate) {
try {
const fileHandle = await window.showSaveFilePicker(
{
startIn: 'downloads',
id: 'download-file-picker',
suggestedName: file.name
})
const writable = await fileHandle.createWritable()
try {
let offset = 0
const size = file.size
while (offset < size) {
const chunk = await this._download(file, offset)
await writable.write(chunk)
offset += CHUNK_SIZE
const progress = Math.round((offset / size) * 100)
onProgressUpdate(Math.min(progress, 100))
}
} finally {
onProgressUpdate(100)
await writable.close()
}
} catch (error) {
if (error.name !== 'AbortError') {
throw error
}
}
}
async _download(file, offset) {
const limit = Math.min(CHUNK_SIZE, file.size - offset)
return await openbis.read(this.owner, file.path, offset, limit)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment