mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 14:07:20 +03:00
fetch: adds modified version of fetch with readable streams and progress
This commit is contained in:
parent
5462ecdd08
commit
2858d531e5
@ -20,6 +20,18 @@ const returnJSON = async (route, options) => {
|
||||
return json;
|
||||
};
|
||||
|
||||
export const fetchWithProgress = (url, options, onProgress) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open(options.method || "get", url);
|
||||
for (var k in options.headers || {}) xhr.setRequestHeader(k, options.headers[k]);
|
||||
xhr.onload = (e) => resolve(e.target.responseText);
|
||||
xhr.onerror = reject;
|
||||
if (xhr.upload && onProgress) xhr.upload.onprogress = onProgress; // event.loaded / event.total * 100 ; //event.lengthComputable
|
||||
xhr.send(options.body);
|
||||
});
|
||||
};
|
||||
|
||||
export const health = async (data) => {
|
||||
return await returnJSON(`/api/_`, {
|
||||
...DEFAULT_OPTIONS,
|
||||
|
150
common/fetch-utilities.js
Normal file
150
common/fetch-utilities.js
Normal file
@ -0,0 +1,150 @@
|
||||
// NOTE(jim)
|
||||
// https://github.com/samundrak/fetch-progress (thank you!)
|
||||
|
||||
let tick = 1;
|
||||
let maxTick = 65535;
|
||||
let resolution = 4;
|
||||
let inc = function () {
|
||||
tick = (tick + 1) & maxTick;
|
||||
};
|
||||
|
||||
let timer = setInterval(inc, (1000 / resolution) | 0);
|
||||
if (timer.unref) timer.unref();
|
||||
|
||||
function speedometer(seconds) {
|
||||
let size = resolution * (seconds || 5);
|
||||
let buffer = [0];
|
||||
let pointer = 1;
|
||||
let last = (tick - 1) & maxTick;
|
||||
|
||||
return function (delta) {
|
||||
let dist = (tick - last) & maxTick;
|
||||
if (dist > size) dist = size;
|
||||
last = tick;
|
||||
|
||||
while (dist--) {
|
||||
if (pointer === size) pointer = 0;
|
||||
buffer[pointer] = buffer[pointer === 0 ? size - 1 : pointer - 1];
|
||||
pointer++;
|
||||
}
|
||||
|
||||
if (delta) buffer[pointer - 1] += delta;
|
||||
|
||||
let top = buffer[pointer - 1];
|
||||
let btm = buffer.length < size ? 0 : buffer[pointer === size ? 0 : pointer];
|
||||
|
||||
return buffer.length < resolution ? top : ((top - btm) * resolution) / buffer.length;
|
||||
};
|
||||
}
|
||||
|
||||
class Progress {
|
||||
constructor(length, emitDelay = 1000) {
|
||||
this.length = parseInt(length, 10) || 0;
|
||||
this.transferred = 0;
|
||||
this.speed = 0;
|
||||
this.streamSpeed = speedometer(this.speed || 5000);
|
||||
this.initial = false;
|
||||
this.emitDelay = emitDelay;
|
||||
this.eventStart = 0;
|
||||
this.percentage = 0;
|
||||
}
|
||||
|
||||
getRemainingBytes() {
|
||||
return parseInt(this.length, 10) - parseInt(this.transferred, 10);
|
||||
}
|
||||
|
||||
getEta() {
|
||||
return this.length >= this.transferred ? (this.getRemainingBytes() / this.speed) * 1000000000 : 0;
|
||||
}
|
||||
|
||||
flow(chunk, onProgress) {
|
||||
const chunkLength = chunk.length;
|
||||
this.transferred += chunkLength;
|
||||
this.speed = this.streamSpeed(chunkLength);
|
||||
this.percentage = Math.round((this.transferred / this.length) * 100);
|
||||
if (!this.initial) {
|
||||
this.eventStart = Date.now();
|
||||
this.initial = true;
|
||||
}
|
||||
if (this.length >= this.transferred || Date.now() - this.eventStart > this.emitDelay) {
|
||||
this.eventStart = Date.now();
|
||||
|
||||
const progress = {
|
||||
total: this.length,
|
||||
transferred: this.transferred,
|
||||
speed: this.speed,
|
||||
eta: this.getEta(),
|
||||
};
|
||||
if (this.length) {
|
||||
progress.remaining = this.getRemainingBytes();
|
||||
progress.percentage = this.percentage;
|
||||
}
|
||||
onProgress(progress);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export function isFetchProgressSupported() {
|
||||
return typeof Response !== "undefined" && typeof ReadableStream !== "undefined";
|
||||
}
|
||||
|
||||
export function progress({
|
||||
defaultSize = 0,
|
||||
emitDelay = 10,
|
||||
onProgress = () => null,
|
||||
onComplete = () => null,
|
||||
onError = () => null,
|
||||
}) {
|
||||
return function FetchProgress(response) {
|
||||
if (!isFetchProgressSupported()) {
|
||||
return response;
|
||||
}
|
||||
|
||||
const { body, headers } = response;
|
||||
const contentLength = headers.get("content-length") || defaultSize;
|
||||
const progress = new Progress(contentLength, emitDelay);
|
||||
const reader = body.getReader();
|
||||
const stream = new ReadableStream({
|
||||
start(controller) {
|
||||
function push() {
|
||||
reader
|
||||
.read()
|
||||
.then(({ done, value }) => {
|
||||
if (done) {
|
||||
onComplete({});
|
||||
controller.close();
|
||||
return;
|
||||
}
|
||||
if (value) {
|
||||
progress.flow(value, onProgress);
|
||||
}
|
||||
controller.enqueue(value);
|
||||
push();
|
||||
})
|
||||
.catch((err) => {
|
||||
onError(err);
|
||||
});
|
||||
}
|
||||
|
||||
push();
|
||||
},
|
||||
});
|
||||
return new Response(stream, { headers });
|
||||
};
|
||||
}
|
||||
|
||||
export default (url, options) =>
|
||||
new Promise((resolve, reject) =>
|
||||
fetch(url, options)
|
||||
.then(
|
||||
progress({
|
||||
onProgress(p) {
|
||||
console.log(p);
|
||||
},
|
||||
onError(err) {
|
||||
reject(err);
|
||||
},
|
||||
})
|
||||
)
|
||||
.then((data) => resolve(data))
|
||||
);
|
@ -39,6 +39,7 @@ import ApplicationHeader from "~/components/core/ApplicationHeader";
|
||||
import ApplicationLayout from "~/components/core/ApplicationLayout";
|
||||
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
||||
import Cookies from "universal-cookie";
|
||||
import UFetch from "~/common/fetch-utilities";
|
||||
|
||||
const cookies = new Cookies();
|
||||
|
||||
@ -114,7 +115,8 @@ export default class ApplicationPage extends React.Component {
|
||||
body: data,
|
||||
};
|
||||
|
||||
const response = await fetch(`/api/data/${file.name}`, options);
|
||||
const response = await UFetch(`/api/data/${file.name}`, options);
|
||||
|
||||
const json = await response.json();
|
||||
|
||||
if (!json) {
|
||||
|
@ -32,11 +32,7 @@ export const formMultipart = (req, res, { user }) =>
|
||||
const localPath = `./${path}`;
|
||||
const data = LibraryManager.createLocalDataIncomplete(files.data);
|
||||
|
||||
const {
|
||||
buckets,
|
||||
bucketKey,
|
||||
bucketName,
|
||||
} = await Utilities.getBucketAPIFromUserToken(user.data.tokens.api);
|
||||
const { buckets, bucketKey, bucketName } = await Utilities.getBucketAPIFromUserToken(user.data.tokens.api);
|
||||
|
||||
let readFile;
|
||||
let push;
|
||||
|
Loading…
Reference in New Issue
Block a user