Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
fix: tarball download not working on Firefox and Edge (#144)
Browse files Browse the repository at this point in the history
* fix tarball download not working on firefox and edge

* update lastModified to be a date number
  • Loading branch information
sumanbh authored and juanpicado committed Oct 3, 2019
1 parent 1d705da commit f8e3013
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/utils/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,37 @@ export function extractFileName(url: string): string {
return url.substring(url.lastIndexOf('/') + 1);
}

function blobToFile(blob: Blob, fileName: string): File {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const b: any = blob;
b.lastModified = Date.now();
b.name = fileName;
return b as File;
}

export function downloadFile(fileStream: Blob, fileName: string): void {
const file = new File([fileStream], fileName, { type: 'application/octet-stream', lastModified: Date.now() });
let file: File;
// File constructor is not supported by Edge
// https://developer.mozilla.org/en-US/docs/Web/API/File#Browser_compatibility
if (navigator.msSaveBlob) {
// Detect if Edge
file = blobToFile(new Blob([fileStream], { type: 'application/octet-stream' }), fileName);
} else {
file = new File([fileStream], fileName, { type: 'application/octet-stream', lastModified: Date.now() });
}

const objectURL = URL.createObjectURL(file);
const fileLink = document.createElement('a');
fileLink.href = objectURL;
fileLink.download = fileName;

// Without appending to an HTML Element, download dialog does not show up on Firefox
// https://github.com/verdaccio/ui/issues/119
document.documentElement.appendChild(fileLink);
fileLink.click();
// firefox requires remove the object url
setTimeout(() => {
URL.revokeObjectURL(objectURL);
document.documentElement.removeChild(fileLink);
}, 150);
}

0 comments on commit f8e3013

Please sign in to comment.