Skip to content

Commit 3771fa0

Browse files
authored
Merge pull request #425 from homero304/Fetch-Download-progress
Fetch: Download progress
2 parents ead3c54 + e208693 commit 3771fa0

File tree

2 files changed

+45
-45
lines changed

2 files changed

+45
-45
lines changed
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11

2-
# Fetch: Download progress
2+
# Fetch: progreso de la descarga
33

4-
The `fetch` method allows to track *download* progress.
4+
El método `fetch` permite rastrear el progreso de *descarga*.
55

6-
Please note: there's currently no way for `fetch` to track *upload* progress. For that purpose, please use [XMLHttpRequest](info:xmlhttprequest), we'll cover it later.
6+
Ten en cuenta: actualmente no hay forma de que `fetch` rastree el progreso de *carga*. Para ese propósito, utiliza [XMLHttpRequest](info:xmlhttprequest), lo cubriremos más adelante.
77

8-
To track download progress, we can use `response.body` property. It's `ReadableStream` -- a special object that provides body chunk-by-chunk, as it comes. Readable streams are described in the [Streams API](https://streams.spec.whatwg.org/#rs-class) specification.
8+
Para rastrear el progreso de la descarga, podemos usar la propiedad `response.body`. Su `ReadableStream`, un objeto especial que proporciona el cuerpo fragmento a fragmento, tal como viene. Las transmisiones legibles se describen en la especificación de la [API de transmisiones](https://streams.spec.whatwg.org/#rs-class).
99

10-
Unlike `response.text()`, `response.json()` and other methods, `response.body` gives full control over the reading process, and we can count how much is consumed at any moment.
10+
A diferencia de `response.text()`, `response.json()` y otros métodos, `response.body` da control total sobre el proceso de lectura, y podemos contar cuánto se consume en cualquier momento.
1111

12-
Here's the sketch of code that reads the reponse from `response.body`:
12+
Aquí está el bosquejo del código que lee la respuesta de `response.body`:
1313

1414
```js
15-
// instead of response.json() and other methods
15+
// en lugar de response.json() y otros métodos
1616
const reader = response.body.getReader();
1717

18-
// infinite loop while the body is downloading
18+
// bucle infinito mientras el cuerpo se descarga
1919
while(true) {
20-
// done is true for the last chunk
21-
// value is Uint8Array of the chunk bytes
20+
// done es true para el último fragmento
21+
// value es Uint8Array de los bytes del fragmento
2222
const {done, value} = await reader.read();
2323

2424
if (done) {
2525
break;
2626
}
2727

28-
console.log(`Received ${value.length} bytes`)
28+
console.log(`Recibí ${value.length} bytes`)
2929
}
3030
```
3131

32-
The result of `await reader.read()` call is an object with two properties:
33-
- **`done`** -- `true` when the reading is complete, otherwise `false`.
34-
- **`value`** -- a typed array of bytes: `Uint8Array`.
32+
El resultado de la llamada `await reader.read()` es un objeto con dos propiedades:
33+
- **`done`** -- `true` cuando la lectura está completa, de lo contrario `false`.
34+
- **`value`** -- una matriz de tipo bytes: `Uint8Array`.
3535

3636
```smart
37-
Streams API also describes asynchronous iteration over `ReadableStream` with `for await..of` loop, but it's not yet widely supported (see [browser issues](https://github.com/whatwg/streams/issues/778#issuecomment-461341033)), so we use `while` loop.
37+
La API de transmisiones también describe la iteración asincrónica sobre `ReadableStream` con el bucle `for await..of`, pero aún no es ampliamente compatible (consulta [problemas del navegador](https://github.com/whatwg/streams/issues/778#issuecomment-461341033)), por lo que usamos el bucle `while`.
3838
```
3939

40-
We receive response chunks in the loop, until the loading finishes, that is: until `done` becomes `true`.
40+
Recibimos fragmentos de respuesta en el bucle, hasta que finaliza la carga, es decir: hasta que `done` se convierte en `true`.
4141

42-
To log the progress, we just need for every received fragment `value` to add its length to the counter.
42+
Para registrar el progreso, solo necesitamos que cada `value` de fragmento recibido agregue su longitud al contador.
4343

44-
Here's the full working example that gets the response and logs the progress in console, more explanations to follow:
44+
Aquí está el ejemplo funcional completo que obtiene la respuesta y registra el progreso en la consola, seguido de su explicación:
4545

4646
```js run async
47-
// Step 1: start the fetch and obtain a reader
48-
let response = await fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits?per_page=100');
47+
// Paso 1: iniciar la búsqueda y obtener un lector
48+
let response = await fetch('https://api.github.com/repos/javascript-tutorial/es.javascript.info/commits?per_page=100');
4949

5050
const reader = response.body.getReader();
5151

52-
// Step 2: get total length
52+
// Paso 2: obtener la longitud total
5353
const contentLength = +response.headers.get('Content-Length');
5454

55-
// Step 3: read the data
56-
let receivedLength = 0; // received that many bytes at the moment
57-
let chunks = []; // array of received binary chunks (comprises the body)
55+
// Paso 3: leer los datos
56+
let receivedLength = 0; // cantidad de bytes recibidos hasta el momento
57+
let chunks = []; // matriz de fragmentos binarios recibidos (comprende el cuerpo)
5858
while(true) {
5959
const {done, value} = await reader.read();
6060

@@ -65,48 +65,48 @@ while(true) {
6565
chunks.push(value);
6666
receivedLength += value.length;
6767

68-
console.log(`Received ${receivedLength} of ${contentLength}`)
68+
console.log(`Recibí ${receivedLength} de ${contentLength}`)
6969
}
7070

71-
// Step 4: concatenate chunks into single Uint8Array
71+
// Paso 4: concatenar fragmentos en un solo Uint8Array
7272
let chunksAll = new Uint8Array(receivedLength); // (4.1)
7373
let position = 0;
7474
for(let chunk of chunks) {
7575
chunksAll.set(chunk, position); // (4.2)
7676
position += chunk.length;
7777
}
7878

79-
// Step 5: decode into a string
79+
// Paso 5: decodificar en un string
8080
let result = new TextDecoder("utf-8").decode(chunksAll);
8181

82-
// We're done!
82+
// ¡Hemos terminado!
8383
let commits = JSON.parse(result);
8484
alert(commits[0].author.login);
8585
```
8686

87-
Let's explain that step-by-step:
87+
Expliquemos eso paso a paso:
8888

89-
1. We perform `fetch` as usual, but instead of calling `response.json()`, we obtain a stream reader `response.body.getReader()`.
89+
1. Realizamos `fetch` como de costumbre, pero en lugar de llamar a `response.json()`, obtenemos un lector de transmisión `response.body.getReader()`.
9090

91-
Please note, we can't use both these methods to read the same response: either use a reader or a response method to get the result.
92-
2. Prior to reading, we can figure out the full response length from the `Content-Length` header.
91+
Ten en cuenta que no podemos usar ambos métodos para leer la misma respuesta: usa un lector o un método de respuesta para obtener el resultado.
92+
2. Antes de leer, podemos averiguar la longitud completa de la respuesta del encabezado `Content-Length`.
9393

94-
It may be absent for cross-origin requests (see chapter <info:fetch-crossorigin>) and, well, technically a server doesn't have to set it. But usually it's at place.
95-
3. Call `await reader.read()` until it's done.
94+
Puede estar ausente para solicitudes cross-origin (consulta el capítulo <info:fetch-crossorigin>) y, bueno, técnicamente un servidor no tiene que configurarlo. Pero generalmente está en su lugar.
95+
3. Llama a `await reader.read()` hasta que esté listo.
9696

97-
We gather response chunks in the array `chunks`. That's important, because after the response is consumed, we won't be able to "re-read" it using `response.json()` or another way (you can try, there'll be an error).
98-
4. At the end, we have `chunks` -- an array of `Uint8Array` byte chunks. We need to join them into a single result. Unfortunately, there's no single method that concatenates those, so there's some code to do that:
99-
1. We create `chunksAll = new Uint8Array(receivedLength)` -- a same-typed array with the combined length.
100-
2. Then use `.set(chunk, position)` method to copy each `chunk` one after another in it.
101-
5. We have the result in `chunksAll`. It's a byte array though, not a string.
97+
Recopilamos fragmentos de respuesta en la matriz `chunks`. Eso es importante, porque después de consumir la respuesta, no podremos "releerla" usando `response.json()` u otra forma (puedes intentarlo, habrá un error).
98+
4. Al final, tenemos `chunks` - una matriz de fragmentos de bytes `Uint8Array`. Necesitamos unirlos en un solo resultado. Desafortunadamente, no hay un método simple que los concatene, por lo que hay un código para hacerlo:
99+
1. Creamos `chunksAll = new Uint8Array(selectedLength)` -- una matriz del mismo tipo con la longitud combinada.
100+
2. Luego usa el método `.set(chunk, position)` para copiar cada `chunk` uno tras otro en él.
101+
5. Tenemos el resultado en `chunksAll`. Sin embargo, es una matriz de bytes, no un string.
102102

103-
To create a string, we need to interpret these bytes. The built-in [TextDecoder](info:text-decoder) does exactly that. Then we can `JSON.parse` it, if necessary.
103+
Para crear un string, necesitamos interpretar estos bytes. El [TextDecoder](info:text-decoder) nativo hace exactamente eso. Luego podemos usar el resultado en `JSON.parse`, si es necesario.
104104

105-
What if we need binary content instead of a string? That's even simpler. Replace steps 4 and 5 with a single line that creates a `Blob` from all chunks:
105+
¿Qué pasa si necesitamos contenido binario en lugar de un string? Eso es aún más sencillo. Reemplaza los pasos 4 y 5 con una sola línea que crea un `Blob` de todos los fragmentos:
106106
```js
107107
let blob = new Blob(chunks);
108108
```
109109

110-
At the end we have the result (as a string or a blob, whatever is convenient), and progress-tracking in the process.
110+
Al final tenemos el resultado (como un string o un blob, lo que sea conveniente) y el seguimiento del progreso en el proceso.
111111

112-
Once again, please note, that's not for *upload* progress (no way now with `fetch`), only for *download* progress.
112+
Una vez más, ten en cuenta que eso no es para el progreso de *carga* (hasta ahora eso no es posible con `fetch`), solo para el progreso de *descarga*.

5-network/03-fetch-progress/progress.view/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
const chunk = await reader.read();
1313

1414
if (chunk.done) {
15-
console.log("done!");
15+
console.log("listo!");
1616
break;
1717
}
1818

1919
chunks.push(chunk.value);
2020
receivedLength += chunk.value.length;
21-
console.log(`${receivedLength}/${contentLength} received`)
21+
console.log(`recibí ${receivedLength}/${contentLength}`)
2222
}
2323

2424

0 commit comments

Comments
 (0)