6 Commits
Author SHA1 Message Date
Jimmy Wärting 0b9d514107 docs for using url 2018-09-21 16:26:24 +02:00
Jimmy Wärting 17403f0731 don’t crash in worker 2018-09-21 16:16:50 +02:00
Jimmy Wärting 0718d9f852 new version 2018-09-21 16:10:37 +02:00
Jimmy Wärting ae32ccca4d include the list folder 2018-09-21 14:56:39 +02:00
Jimmy Wärting dcdc67deec update dev rep 2018-09-21 14:56:20 +02:00
Jimmy Wärting 465b00f11b remove old demos 2018-09-21 14:54:47 +02:00
10 changed files with 190 additions and 2997 deletions
-3
View File
@@ -1,3 +0,0 @@
# These are supported funding model platforms
github: eligrey
-60
View File
@@ -1,60 +0,0 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.2] - 2019-05-14
- Catching an exception on Send (HEAD) ([#534])
## [2.0.0] - 2018-10-17
- Removed eval to resolve CSP ([#465])
## [2.0.0-rc.4] - 2018-10-17
- Dont throw on module.exports
## [2.0.0-rc.3] - 2018-09-27
- Switch export method
## [2.0.0-rc.2] - 2018-09-26
- Added a changelog.md
- Reverted `a.click()` to use dispatch with a try-catch ([#465], [#382])
- Made third argument to an object where you have to pass `{ autoBom: true }`
- boolean are depricated but still works
## [2.0.0-rc.1] - 2018-09-26
- saveAs don't return anything
- The object that dispatched `writestart progress write writeend` are gone
- detecting such features was never possible and nobody seems to use it.
- Removed the demo folder
- Removed date/version from top of the file
- Dosen't crash in web workers ([#449])
- Support saving urls ([#260] with workarounds for cross origin)
- Uses babel universal module pattern (UMD) to export the package
- Provides source map now as well.
- use a[download] before msSaveAs ([#193], [#294])
- removed dist from .gitignore (npm uses it if it don't find a .npmignore)
- autoBom is now reversed so you have to tell when you want to use autoBom ([#432])
- `a.click()` since there are new and depricated event constructors that works differently ([#382])
- opens up a new popup (tab) directly for the fallback method since the FileReader is async
- removed the explicitly MSIE [1-9] check
- Uses new anchor link for each save (might solve multiple download problems)
[#382]: https://github.com/eligrey/FileSaver.js/issues/382
[#449]: https://github.com/eligrey/FileSaver.js/issues/449
[#260]: https://github.com/eligrey/FileSaver.js/issues/260
[#193]: https://github.com/eligrey/FileSaver.js/issues/193
[#294]: https://github.com/eligrey/FileSaver.js/issues/294
[#432]: https://github.com/eligrey/FileSaver.js/issues/432
[#382]: https://github.com/eligrey/FileSaver.js/issues/382
[#465]: https://github.com/eligrey/FileSaver.js/issues/465
[#469]: https://github.com/eligrey/FileSaver.js/issues/469
[#470]: https://github.com/eligrey/FileSaver.js/issues/470
[#491]: https://github.com/eligrey/FileSaver.js/issues/491
[#534]: https://github.com/eligrey/FileSaver.js/issues/534
+29 -27
View File
@@ -1,27 +1,31 @@
If you need to save really large files bigger than the blob's size limitation or don't have If you need to save really large files bigger then the blob's size limitation or don't have
enough RAM, then have a look at the more advanced [StreamSaver.js][7] enough RAM, then have a look at the more advanced [StreamSaver.js](https://github.com/jimmywarting/StreamSaver.js)
that can save data directly to the hard drive asynchronously with the power of the new streams API. That will have that can save data directly to the hard drive asynchronously with the power of the new streams API. That will have
support for progress, cancelation and knowing when it's done writing support for progress, cancelation and knowing when it's done writing
FileSaver.js FileSaver.js
============ ============
FileSaver.js implements the `saveAs()` FileSaver interface in browsers that do
not natively support it. There is a [FileSaver.js demo][1] that demonstrates saving
various media types.
FileSaver.js is the solution to saving files on the client-side, and is perfect for FileSaver.js is the solution to saving files on the client-side, and is perfect for
web apps that generates files on the client, However if the file is coming from the webapps that need to generate files, or for saving sensitive information that shouldn't be
server we recommend you to first try to use [Content-Disposition][8] attachment response header as it has more cross-browser compatiblity. sent to an external server.
Looking for `canvas.toBlob()` for saving canvases? Check out Looking for `canvas.toBlob()` for saving canvases? Check out
[canvas-toBlob.js][2] for a cross-browser implementation. [canvas-toBlob.js][2] for a cross-browser implementation.
Supported Browsers Supported browsers
------------------ ------------------
| Browser | Constructs as | Filenames | Max Blob Size | Dependencies | | Browser | Constructs as | Filenames | Max Blob Size | Dependencies |
| -------------- | ------------- | ------------ | ------------- | ------------ | | -------------- | ------------- | ------------ | ------------- | ------------ |
| Firefox 20+ | Blob | Yes | 800 MiB | None | | Firefox 20+ | Blob | Yes | 800 MiB | None |
| Firefox < 20 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) | | Firefox < 20 | data: URI | No | n/a | [Blob.js](https://github.com/eligrey/Blob.js) |
| Chrome | Blob | Yes | [2GB][3] | None | | Chrome | Blob | Yes | [500 MiB][3] | None |
| Chrome for Android | Blob | Yes | [RAM/5][3] | None | | Chrome for Android | Blob | Yes | [500 MiB][3] | None |
| Edge | Blob | Yes | ? | None | | Edge | Blob | Yes | ? | None |
| IE 10+ | Blob | Yes | 600 MiB | None | | IE 10+ | Blob | Yes | 600 MiB | None |
| Opera 15+ | Blob | Yes | 500 MiB | None | | Opera 15+ | Blob | Yes | 500 MiB | None |
@@ -54,21 +58,21 @@ saveAs must be run within a user interaction event such as onTouchDown or onClic
Syntax Syntax
------ ------
### Import `saveAs()` from file-saver ### Import saveAs() from file-saver
```js ```js
import { saveAs } from 'file-saver'; import { saveAs } from 'file-saver/FileSaver';
``` ```
```js ```js
FileSaver saveAs(Blob/File/Url, optional DOMString filename, optional Object { autoBom }) FileSaver saveAs(Blob/File/Url, optional DOMString filename, optional Boolean autoBOM)
``` ```
Pass `{ autoBom: true }` if you want FileSaver.js to automatically provide Unicode text encoding hints (see: [byte order mark](https://en.wikipedia.org/wiki/Byte_order_mark)). Note that this is only done if your blob type has `charset=utf-8` set. Pass `true` for `autoBOM` if you don't want FileSaver.js to automatically provide Unicode text encoding hints (see: [byte order mark](https://en.wikipedia.org/wiki/Byte_order_mark)).
Examples Examples
-------- --------
### Saving text using `require()` ### Saving text using require
```js ```js
var FileSaver = require('file-saver'); var FileSaver = require('file-saver');
var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"}); var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
@@ -82,22 +86,24 @@ var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
FileSaver.saveAs(blob, "hello world.txt"); FileSaver.saveAs(blob, "hello world.txt");
``` ```
### Saving URLs ### Saving urls
```js ```js
FileSaver.saveAs("https://httpbin.org/image", "image.jpg"); FileSaver.saveAs("https://httpbin.org/image", "image.jpg");
``` ```
Using URLs within the same origin will just use `a[download]`. Using urls within the same origin will just use `a[download]`
Otherwise, it will first check if it supports cors header with a synchronous head request. Otherwise it will first check if it supports cors header with a synchronously head request
If it does, it will download the data and save using blob URLs. if it dose it will download the data and save it using blob urls
If not, it will try to download it using `a[download]`. if not it will try to download it using `a[download]`
The standard W3C File API [`Blob`][4] interface is not available in all browsers. The standard W3C File API [`Blob`][4] interface is not available in all browsers.
[Blob.js][5] is a cross-browser `Blob` implementation that solves this. [Blob.js][5] is a cross-browser `Blob` implementation that solves this.
### Saving a canvas ### Saving a canvas
```js ```js
var canvas = document.getElementById("my-canvas"); var canvas = document.getElementById("my-canvas"), ctx = canvas.getContext("2d");
// draw to canvas...
canvas.toBlob(function(blob) { canvas.toBlob(function(blob) {
saveAs(blob, "pretty image.png"); saveAs(blob, "pretty image.png");
}); });
@@ -108,10 +114,10 @@ Note: The standard HTML5 `canvas.toBlob()` method is not available in all browse
### Saving File ### Saving File
You can save a File constructor without specifying a filename. If the You can save a File constructor without specifying a filename. The
file itself already contains a name, there is a hand full of ways to get a file File itself already contains a name, There is a hand full of ways to get a file
instance (from storage, file input, new constructor, clipboard event). instance (from storage, file input, new constructor, clipboard event)
If you still want to change the name, then you can change it in the 2nd argument. But if you still want to change the name, then you can change it in the 2nd argument
```js ```js
// Note: Ie and Edge don't support the new File constructor, // Note: Ie and Edge don't support the new File constructor,
@@ -126,18 +132,15 @@ FileSaver.saveAs(file);
[1]: http://eligrey.com/demos/FileSaver.js/ [1]: http://eligrey.com/demos/FileSaver.js/
[2]: https://github.com/eligrey/canvas-toBlob.js [2]: https://github.com/eligrey/canvas-toBlob.js
[3]: https://bugs.chromium.org/p/chromium/issues/detail?id=375297#c107 [3]: https://code.google.com/p/chromium/issues/detail?id=375297
[4]: https://developer.mozilla.org/en-US/docs/DOM/Blob [4]: https://developer.mozilla.org/en-US/docs/DOM/Blob
[5]: https://github.com/eligrey/Blob.js [5]: https://github.com/eligrey/Blob.js
[6]: https://github.com/eligrey/canvas-toBlob.js [6]: https://github.com/eligrey/canvas-toBlob.js
[7]: https://github.com/jimmywarting/StreamSaver.js
[8]: https://github.com/eligrey/FileSaver.js/wiki/Saving-a-remote-file#using-http-header
Installation Installation
------------------ ------------------
```bash ```bash
# Basic Node.JS installation
npm install file-saver --save npm install file-saver --save
bower install file-saver bower install file-saver
``` ```
@@ -145,6 +148,5 @@ bower install file-saver
Additionally, TypeScript definitions can be installed via: Additionally, TypeScript definitions can be installed via:
```bash ```bash
# Additional typescript definitions
npm install @types/file-saver --save-dev npm install @types/file-saver --save-dev
``` ```
+3 -2
View File
@@ -1,7 +1,7 @@
{ {
"name": "file-saver", "name": "file-saver",
"main": "dist/FileSaver.min.js", "main": "dist/FileSaver.min.js",
"version": "2.0.0-rc.3", "version": "2.0.0-rc.1",
"homepage": "https://github.com/eligrey/FileSaver.js", "homepage": "https://github.com/eligrey/FileSaver.js",
"authors": [ "authors": [
"Eli Grey <[email protected]>" "Eli Grey <[email protected]>"
@@ -15,7 +15,8 @@
"license": "MIT", "license": "MIT",
"ignore": [ "ignore": [
"*", "*",
"!dist/*", "!FileSaver.*js",
"!FileSaver.*map",
"!LICENSE.md" "!LICENSE.md"
] ]
} }
+45 -61
View File
@@ -1,18 +1,23 @@
(function (global, factory) { (function (global, factory) {
if (typeof define === "function" && define.amd) { if (typeof define === "function" && define.amd) {
define([], factory); define(["exports"], factory);
} else if (typeof exports !== "undefined") { } else if (typeof exports !== "undefined") {
factory(); factory(exports);
} else { } else {
var mod = { var mod = {
exports: {} exports: {}
}; };
factory(); factory(mod.exports);
global.FileSaver = mod.exports; global.FileSaver = mod.exports;
} }
})(this, function () { })(this, function (_exports) {
"use strict"; "use strict";
Object.defineProperty(_exports, "__esModule", {
value: true
});
_exports.default = void 0;
/* /*
* FileSaver.js * FileSaver.js
* A saveAs() FileSaver implementation. * A saveAs() FileSaver implementation.
@@ -22,22 +27,24 @@
* License : https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md (MIT) * License : https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md (MIT)
* source : http://purl.eligrey.com/github/FileSaver.js * source : http://purl.eligrey.com/github/FileSaver.js
*/ */
// The one and only way of getting global scope in all environments // The one and only way of getting global scope in all enviorment
// https://stackoverflow.com/q/3277182/1008999 // https://stackoverflow.com/q/3277182/1008999
var _global = typeof window === 'object' && window.window === window ? window : typeof self === 'object' && self.self === self ? self : typeof global === 'object' && global.global === global ? global : void 0; var _global = function () {
// some use content security policy to disable eval
try {
return Function('return this')() || (42, eval)('this');
} catch (e) {
// every global should have circular reference
// used for checking if someone writes var window = {}; var self = {}
return typeof window === 'object' && window.window === window ? window : typeof self === 'object' && self.self === self ? self : typeof global === 'object' && global.global === global ? global : this;
}
}();
function bom(blob, opts) { function bom(blob, autoBom) {
if (typeof opts === 'undefined') opts = { if (!autoBom) return blob; // prepend BOM for UTF-8 XML and text/* types (including HTML)
autoBom: false
};else if (typeof opts !== 'object') {
console.warn('Deprecated: Expected third argument to be a object');
opts = {
autoBom: !opts
};
} // prepend BOM for UTF-8 XML and text/* types (including HTML)
// note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF
if (opts.autoBom && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) { if (/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) {
return new Blob([String.fromCharCode(0xFEFF), blob], { return new Blob([String.fromCharCode(0xFEFF), blob], {
type: blob.type type: blob.type
}); });
@@ -46,13 +53,13 @@
return blob; return blob;
} }
function download(url, name, opts) { function download(url, name, autoBom) {
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.open('GET', url); xhr.open('GET', url);
xhr.responseType = 'blob'; xhr.responseType = 'blob';
xhr.onload = function () { xhr.onload = function () {
saveAs(xhr.response, name, opts); saveAs(xhr.response, name, autoBom);
}; };
xhr.onerror = function () { xhr.onerror = function () {
@@ -66,32 +73,15 @@
var xhr = new XMLHttpRequest(); // use sync to avoid popup blocker var xhr = new XMLHttpRequest(); // use sync to avoid popup blocker
xhr.open('HEAD', url, false); xhr.open('HEAD', url, false);
try {
xhr.send(); xhr.send();
} catch (e) {}
return xhr.status >= 200 && xhr.status <= 299; return xhr.status >= 200 && xhr.status <= 299;
} // `a.click()` doesn't work for all browsers (#465)
function click(node) {
try {
node.dispatchEvent(new MouseEvent('click'));
} catch (e) {
var evt = document.createEvent('MouseEvents');
evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null);
node.dispatchEvent(evt);
} }
} // Detect WebKit inside a native macOS app
var saveAs = _global.saveAs || // probably in some web worker
var isWebKit = /AppleWebKit/.test(navigator.userAgent);
var saveAs = _global.saveAs || ( // probably in some web worker
typeof window !== 'object' || window !== _global ? function saveAs() {} typeof window !== 'object' || window !== _global ? function saveAs() {}
/* noop */ /* noop */
// Use download attribute first if possible (#193 Lumia mobile) unless this is a native macOS app // Use download attribute first if possible (#193 Lumia mobile)
: 'download' in HTMLAnchorElement.prototype && !isWebKit ? function saveAs(blob, name, opts) { : 'download' in HTMLAnchorElement.prototype ? function saveAs(blob, name, autoBom) {
var URL = _global.URL || _global.webkitURL; var URL = _global.URL || _global.webkitURL;
var a = document.createElement('a'); var a = document.createElement('a');
name = name || blob.name || 'download'; name = name || blob.name || 'download';
@@ -105,9 +95,9 @@
a.href = blob; a.href = blob;
if (a.origin !== location.origin) { if (a.origin !== location.origin) {
corsEnabled(a.href) ? download(blob, name, opts) : click(a, a.target = '_blank'); corsEnabled(a.href) ? download(blob, name, autoBom) : a.click(a.target = '_blank');
} else { } else {
click(a); a.click();
} }
} else { } else {
// Support blobs // Support blobs
@@ -116,47 +106,43 @@
URL.revokeObjectURL(a.href); URL.revokeObjectURL(a.href);
}, 4E4); // 40s }, 4E4); // 40s
setTimeout(function () { setTimeout(a.click.bind(a), 0);
click(a);
}, 0);
} }
} // Use msSaveOrOpenBlob as a second approach } // Use msSaveOrOpenBlob as a second approch
: 'msSaveOrOpenBlob' in navigator ? function saveAs(blob, name, opts) { : 'msSaveOrOpenBlob' in navigator ? function saveAs(blob, name, autoBom) {
name = name || blob.name || 'download'; name = name || blob.name || 'download';
if (typeof blob === 'string') { if (typeof blob === 'string') {
if (corsEnabled(blob)) { if (corsEnabled(blob)) {
download(blob, name, opts); download(blob, name, autoBom);
} else { } else {
var a = document.createElement('a'); var a = document.createElement('a');
a.href = blob; a.href = blob;
a.target = '_blank'; a.target = '_blank';
setTimeout(function () { setTimeout(a.click.bind(a));
click(a);
});
} }
} else { } else {
navigator.msSaveOrOpenBlob(bom(blob, opts), name); navigator.msSaveOrOpenBlob(bom(blob, autoBom), name);
} }
} // Fallback to using FileReader and a popup } // Fallback to using FileReader and a popup
: function saveAs(blob, name, opts, popup) { : function saveAs(blob, name, autoBom, popup) {
// Open a popup immediately do go around popup blocker // Open a popup immediately do go around popup blocker
// Mostly only available on user interaction and the fileReader is async so... // Mostly only avalible on user interaction and the fileReader is async so...
popup = popup || open('', '_blank'); popup = popup || open('', '_blank');
if (popup) { if (popup) {
popup.document.title = popup.document.body.innerText = 'downloading...'; popup.document.title = popup.document.body.innerText = 'downloading...';
} }
if (typeof blob === 'string') return download(blob, name, opts); if (typeof blob === 'string') return download(blob, name, autoBom);
var force = blob.type === 'application/octet-stream'; var force = blob.type === 'application/octet-stream';
var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari; var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari;
var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent); var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent);
if ((isChromeIOS || force && isSafari || isWebKit) && typeof FileReader !== 'undefined') { if ((isChromeIOS || force && isSafari) && typeof FileReader === 'object') {
// Safari doesn't allow downloading of blob URLs // Safari doesn't allow downloading of blob urls
var reader = new FileReader(); var reader = new FileReader();
reader.onloadend = function () { reader.onloadend = function () {
@@ -177,10 +163,8 @@
URL.revokeObjectURL(url); URL.revokeObjectURL(url);
}, 4E4); // 40s }, 4E4); // 40s
} }
}); };
_global.saveAs = saveAs.saveAs = saveAs; _global.saveAs = saveAs;
var _default = saveAs;
if (typeof module !== 'undefined') { _exports.default = _default;
module.exports = saveAs;
}
}); });
+1 -1
View File
@@ -1,3 +1,3 @@
(function(a,b){if("function"==typeof define&&define.amd)define([],b);else if("undefined"!=typeof exports)b();else{b(),a.FileSaver={exports:{}}.exports}})(this,function(){"use strict";function b(a,b){return"undefined"==typeof b?b={autoBom:!1}:"object"!=typeof b&&(console.warn("Deprecated: Expected third argument to be a object"),b={autoBom:!b}),b.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(a.type)?new Blob(["\uFEFF",a],{type:a.type}):a}function c(a,b,c){var d=new XMLHttpRequest;d.open("GET",a),d.responseType="blob",d.onload=function(){g(d.response,b,c)},d.onerror=function(){console.error("could not download file")},d.send()}function d(a){var b=new XMLHttpRequest;b.open("HEAD",a,!1);try{b.send()}catch(a){}return 200<=b.status&&299>=b.status}function e(a){try{a.dispatchEvent(new MouseEvent("click"))}catch(c){var b=document.createEvent("MouseEvents");b.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),a.dispatchEvent(b)}}var f="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:void 0,a=/AppleWebKit/.test(navigator.userAgent),g=f.saveAs||("object"!=typeof window||window!==f?function(){}:"download"in HTMLAnchorElement.prototype&&!a?function(b,g,h){var i=f.URL||f.webkitURL,j=document.createElement("a");g=g||b.name||"download",j.download=g,j.rel="noopener","string"==typeof b?(j.href=b,j.origin===location.origin?e(j):d(j.href)?c(b,g,h):e(j,j.target="_blank")):(j.href=i.createObjectURL(b),setTimeout(function(){i.revokeObjectURL(j.href)},4E4),setTimeout(function(){e(j)},0))}:"msSaveOrOpenBlob"in navigator?function(f,g,h){if(g=g||f.name||"download","string"!=typeof f)navigator.msSaveOrOpenBlob(b(f,h),g);else if(d(f))c(f,g,h);else{var i=document.createElement("a");i.href=f,i.target="_blank",setTimeout(function(){e(i)})}}:function(b,d,e,g){if(g=g||open("","_blank"),g&&(g.document.title=g.document.body.innerText="downloading..."),"string"==typeof b)return c(b,d,e);var h="application/octet-stream"===b.type,i=/constructor/i.test(f.HTMLElement)||f.safari,j=/CriOS\/[\d]+/.test(navigator.userAgent);if((j||h&&i||a)&&"undefined"!=typeof FileReader){var k=new FileReader;k.onloadend=function(){var a=k.result;a=j?a:a.replace(/^data:[^;]*;/,"data:attachment/file;"),g?g.location.href=a:location=a,g=null},k.readAsDataURL(b)}else{var l=f.URL||f.webkitURL,m=l.createObjectURL(b);g?g.location=m:location.href=m,g=null,setTimeout(function(){l.revokeObjectURL(m)},4E4)}});f.saveAs=g.saveAs=g,"undefined"!=typeof module&&(module.exports=g)}); (function(a,b){if("function"==typeof define&&define.amd)define(["exports"],b);else if("undefined"!=typeof exports)b(exports);else{var c={exports:{}};b(c.exports),a.FileSaver=c.exports}})(this,function(a){"use strict";function b(a,b){return b?/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(a.type)?new Blob(["\uFEFF",a],{type:a.type}):a:a}function c(a,b,c){var d=new XMLHttpRequest;d.open("GET",a),d.responseType="blob",d.onload=function(){f(d.response,b,c)},d.onerror=function(){console.error("could not download file")},d.send()}function d(a){var b=new XMLHttpRequest;return b.open("HEAD",a,!1),b.send(),200<=b.status&&299>=b.status}Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;var e=function(){try{return Function("return this")()||(42,eval)("this")}catch(a){return"object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof global&&global.global===global?global:this}}(),f=e.saveAs||"object"!=typeof window||window!==e?function(){}:"download"in HTMLAnchorElement.prototype?function(b,f,g){var h=e.URL||e.webkitURL,i=document.createElement("a");f=f||b.name||"download",i.download=f,i.rel="noopener","string"==typeof b?(i.href=b,i.origin===location.origin?i.click():d(i.href)?c(b,f,g):i.click(i.target="_blank")):(i.href=h.createObjectURL(b),setTimeout(function(){h.revokeObjectURL(i.href)},4E4),setTimeout(i.click.bind(i),0))}:"msSaveOrOpenBlob"in navigator?function(e,f,g){if(f=f||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(b(e,g),f);else if(d(e))c(e,f,g);else{var h=document.createElement("a");h.href=e,h.target="_blank",setTimeout(h.click.bind(h))}}:function(a,b,d,f){if(f=f||open("","_blank"),f&&(f.document.title=f.document.body.innerText="downloading..."),"string"==typeof a)return c(a,b,d);var g="application/octet-stream"===a.type,h=/constructor/i.test(e.HTMLElement)||e.safari,i=/CriOS\/[\d]+/.test(navigator.userAgent);if((i||g&&h)&&"object"==typeof FileReader){var j=new FileReader;j.onloadend=function(){var a=j.result;a=i?a:a.replace(/^data:[^;]*;/,"data:attachment/file;"),f?f.location.href=a:location=a,f=null},j.readAsDataURL(a)}else{var k=e.URL||e.webkitURL,l=k.createObjectURL(a);f?f.location=l:location.href=l,f=null,setTimeout(function(){k.revokeObjectURL(l)},4E4)}};e.saveAs=f;a.default=f});
//# sourceMappingURL=FileSaver.min.js.map //# sourceMappingURL=FileSaver.min.js.map
+1 -1
View File
File diff suppressed because one or more lines are too long
-2714
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "file-saver", "name": "file-saver",
"version": "2.0.3", "version": "2.0.0-rc.1",
"description": "An HTML5 saveAs() FileSaver implementation", "description": "An HTML5 saveAs() FileSaver implementation",
"main": "dist/FileSaver.min.js", "main": "dist/FileSaver.min.js",
"module": "src/FileSaver.js",
"files": [ "files": [
"dist/FileSaver.js", "dist/FileSaver.js",
"dist/FileSaver.min.js", "dist/FileSaver.min.js",
"dist/FileSaver.min.js.map",
"src/FileSaver.js" "src/FileSaver.js"
], ],
"scripts": { "scripts": {
+47 -64
View File
@@ -8,37 +8,40 @@
* source : http://purl.eligrey.com/github/FileSaver.js * source : http://purl.eligrey.com/github/FileSaver.js
*/ */
// The one and only way of getting global scope in all environments
// The one and only way of getting global scope in all enviorment
// https://stackoverflow.com/q/3277182/1008999 // https://stackoverflow.com/q/3277182/1008999
var _global = typeof window === 'object' && window.window === window var _global = (function () {
? window : typeof self === 'object' && self.self === self // some use content security policy to disable eval
? self : typeof global === 'object' && global.global === global try {
? global return Function('return this')() || (42, eval)('this')
: this } catch (e) {
// every global should have circular reference
function bom (blob, opts) { // used for checking if someone writes var window = {}; var self = {}
if (typeof opts === 'undefined') opts = { autoBom: false } return typeof window === 'object' && window.window === window ? window
else if (typeof opts !== 'object') { : typeof self === 'object' && self.self === self ? self
console.warn('Deprecated: Expected third argument to be a object') : typeof global === 'object' && global.global === global ? global : this
opts = { autoBom: !opts }
} }
})()
function bom (blob, autoBom) {
if (!autoBom) return blob
// prepend BOM for UTF-8 XML and text/* types (including HTML) // prepend BOM for UTF-8 XML and text/* types (including HTML)
// note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF
if (opts.autoBom && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) { if (/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) {
return new Blob([String.fromCharCode(0xFEFF), blob], { type: blob.type }) return new Blob([String.fromCharCode(0xFEFF), blob], { type: blob.type })
} }
return blob return blob
} }
function download (url, name, opts) { function download (url, name, autoBom) {
var xhr = new XMLHttpRequest() var xhr = new XMLHttpRequest()
xhr.open('GET', url) xhr.open('GET', url)
xhr.responseType = 'blob' xhr.responseType = 'blob'
xhr.onload = function () { xhr.onload = function () {
saveAs(xhr.response, name, opts) saveAs(xhr.response, name, autoBom)
} }
xhr.onerror = function () { xhr.onerror = function () {
console.error('could not download file') console.error('could not download file')
} }
xhr.send() xhr.send()
@@ -48,35 +51,18 @@ function corsEnabled (url) {
var xhr = new XMLHttpRequest() var xhr = new XMLHttpRequest()
// use sync to avoid popup blocker // use sync to avoid popup blocker
xhr.open('HEAD', url, false) xhr.open('HEAD', url, false)
try {
xhr.send() xhr.send()
} catch (e) {}
return xhr.status >= 200 && xhr.status <= 299 return xhr.status >= 200 && xhr.status <= 299
} }
// `a.click()` doesn't work for all browsers (#465) var saveAs = _global.saveAs ||
function click (node) { // probably in some web worker
try { (typeof window !== 'object' || window !== _global)
node.dispatchEvent(new MouseEvent('click'))
} catch (e) {
var evt = document.createEvent('MouseEvents')
evt.initMouseEvent('click', true, true, window, 0, 0, 0, 80,
20, false, false, false, false, 0, null)
node.dispatchEvent(evt)
}
}
// Detect WebKit inside a native macOS app
var isWebKit = /AppleWebKit/.test(navigator.userAgent)
var saveAs = _global.saveAs || (
// probably in some web worker
(typeof window !== 'object' || window !== _global)
? function saveAs () { /* noop */ } ? function saveAs () { /* noop */ }
// Use download attribute first if possible (#193 Lumia mobile) unless this is a native macOS app // Use download attribute first if possible (#193 Lumia mobile)
: ('download' in HTMLAnchorElement.prototype && !isWebKit) : 'download' in HTMLAnchorElement.prototype
? function saveAs (blob, name, opts) { ? function saveAs (blob, name, autoBom) {
var URL = _global.URL || _global.webkitURL var URL = _global.URL || _global.webkitURL
var a = document.createElement('a') var a = document.createElement('a')
name = name || blob.name || 'download' name = name || blob.name || 'download'
@@ -92,56 +78,56 @@ var saveAs = _global.saveAs || (
a.href = blob a.href = blob
if (a.origin !== location.origin) { if (a.origin !== location.origin) {
corsEnabled(a.href) corsEnabled(a.href)
? download(blob, name, opts) ? download(blob, name, autoBom)
: click(a, a.target = '_blank') : a.click(a.target = '_blank')
} else { } else {
click(a) a.click()
} }
} else { } else {
// Support blobs // Support blobs
a.href = URL.createObjectURL(blob) a.href = URL.createObjectURL(blob)
setTimeout(function () { URL.revokeObjectURL(a.href) }, 4E4) // 40s setTimeout(function () { URL.revokeObjectURL(a.href) }, 4E4) // 40s
setTimeout(function () { click(a) }, 0) setTimeout(a.click.bind(a), 0)
}
} }
}
// Use msSaveOrOpenBlob as a second approach // Use msSaveOrOpenBlob as a second approch
: 'msSaveOrOpenBlob' in navigator : 'msSaveOrOpenBlob' in navigator
? function saveAs (blob, name, opts) { ? function saveAs (blob, name, autoBom) {
name = name || blob.name || 'download' name = name || blob.name || 'download'
if (typeof blob === 'string') { if (typeof blob === 'string') {
if (corsEnabled(blob)) { if (corsEnabled(blob)) {
download(blob, name, opts) download(blob, name, autoBom)
} else { } else {
var a = document.createElement('a') var a = document.createElement('a')
a.href = blob a.href = blob
a.target = '_blank' a.target = '_blank'
setTimeout(function () { click(a) }) setTimeout(a.click.bind(a))
} }
} else { } else {
navigator.msSaveOrOpenBlob(bom(blob, opts), name) navigator.msSaveOrOpenBlob(bom(blob, autoBom), name)
}
} }
}
// Fallback to using FileReader and a popup // Fallback to using FileReader and a popup
: function saveAs (blob, name, opts, popup) { : function saveAs (blob, name, autoBom, popup) {
// Open a popup immediately do go around popup blocker // Open a popup immediately do go around popup blocker
// Mostly only available on user interaction and the fileReader is async so... // Mostly only avalible on user interaction and the fileReader is async so...
popup = popup || open('', '_blank') popup = popup || open('', '_blank')
if (popup) { if (popup) {
popup.document.title = popup.document.title =
popup.document.body.innerText = 'downloading...' popup.document.body.innerText = 'downloading...'
} }
if (typeof blob === 'string') return download(blob, name, opts) if (typeof blob === 'string') return download(blob, name, autoBom)
var force = blob.type === 'application/octet-stream' var force = blob.type === 'application/octet-stream'
var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari var isSafari = /constructor/i.test(_global.HTMLElement) || _global.safari
var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent) var isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent)
if ((isChromeIOS || (force && isSafari) || isWebKit) && typeof FileReader !== 'undefined') { if ((isChromeIOS || (force && isSafari)) && typeof FileReader === 'object') {
// Safari doesn't allow downloading of blob URLs // Safari doesn't allow downloading of blob urls
var reader = new FileReader() var reader = new FileReader()
reader.onloadend = function () { reader.onloadend = function () {
var url = reader.result var url = reader.result
@@ -159,11 +145,8 @@ var saveAs = _global.saveAs || (
popup = null // reverse-tabnabbing #460 popup = null // reverse-tabnabbing #460
setTimeout(function () { URL.revokeObjectURL(url) }, 4E4) // 40s setTimeout(function () { URL.revokeObjectURL(url) }, 4E4) // 40s
} }
}
)
_global.saveAs = saveAs.saveAs = saveAs
if (typeof module !== 'undefined') {
module.exports = saveAs;
} }
_global.saveAs = saveAs
export default saveAs