Skip to content

Commit eca3fe6

Browse files
docs: translate decorators and forwarding, call/apply article
Decorators and forwarding, call/apply
2 parents bc56aba + 9f2d639 commit eca3fe6

File tree

19 files changed

+259
-252
lines changed

19 files changed

+259
-252
lines changed

1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/_js.view/solution.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
function spy(func) {
22

33
function wrapper(...args) {
4-
// using ...args instead of arguments to store "real" array in wrapper.calls
4+
// usar `...args` ao invés de `arguments`
5+
// para armazenar o vetor "real" no `wrapper.calls`
56
wrapper.calls.push(args);
67
return func.apply(this, args);
78
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
function spy(func) {
2-
// your code
2+
// o teu código
33
}
44

5-

1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/_js.view/test.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,17 @@ describe("spy", function() {
1818
});
1919

2020
it("transparently wraps functions", function() {
21-
21+
2222
let sum = sinon.spy((a, b) => a + b);
2323

2424
let wrappedSum = spy(sum);
2525

2626
assert.equal(wrappedSum(1, 2), 3);
27-
assert(sum.calledWith(1, 2));
27+
assert(sum.calledWidth(1, 2));
2828
});
2929

30-
3130
it("transparently wraps methods", function() {
32-
31+
3332
let calc = {
3433
sum: sinon.spy((a, b) => a + b)
3534
};
@@ -40,5 +39,4 @@ describe("spy", function() {
4039
assert(calc.sum.calledWith(1, 2));
4140
assert(calc.sum.calledOn(calc));
4241
});
43-
44-
});
42+
});
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
The wrapper returned by `spy(f)` should store all arguments and then use `f.apply` to forward the call.
1+
O embrulhador retornado pela `spy(f)` deve armazenar todos os argumentos e então usar `f.apply` para encaminhar a chamada.

1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/task.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ importance: 5
22

33
---
44

5-
# Spy decorator
5+
# Decorador de Espionagem
66

7-
Create a decorator `spy(func)` that should return a wrapper that saves all calls to function in its `calls` property.
7+
Cria um decorador `spy(func)` que retorna um embrulhador que guarda todas as chamadas à função na sua propriedade `calls`.
88

9-
Every call is saved as an array of arguments.
9+
Toda chamada é guardada num vetor de argumentos.
1010

11-
For instance:
11+
Por exemplo:
1212

1313
```js
1414
function work(a, b) {
15-
alert( a + b ); // work is an arbitrary function or method
15+
alert( a + b ); // `work` é uma função ou método arbitrário
1616
}
1717

1818
*!*
@@ -27,4 +27,4 @@ for (let args of work.calls) {
2727
}
2828
```
2929

30-
P.S. That decorator is sometimes useful for unit-testing. Its advanced form is `sinon.spy` in [Sinon.JS](http://sinonjs.org/) library.
30+
Pós-escrito: Este decorador pode ser útil para testes unitários. Sua forma avançada é `sinon.spy` na biblioteca [Sinon.JS](http://sinonjs.org).

1-js/06-advanced-functions/09-call-apply-decorators/02-delay/_js.view/test.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe("delay", function() {
77
this.clock.restore();
88
});
99

10-
it("calls the function after the specified timeout", function() {
10+
it("chama a função após o tempo de espera especificado", function() {
1111
let start = Date.now();
1212

1313
function f(x) {
@@ -16,12 +16,12 @@ describe("delay", function() {
1616
f = sinon.spy(f);
1717

1818
let f1000 = delay(f, 1000);
19-
f1000("test");
19+
f1000("teste");
2020
this.clock.tick(2000);
21-
assert(f.calledOnce, 'calledOnce check fails');
21+
assert(f.calledOnce, 'a verificação de calledOnce falha');
2222
});
2323

24-
it("passes arguments and this", function() {
24+
it("passa os argumentos e o contexto de this", function() {
2525
let start = Date.now();
2626
let user = {
2727
sayHi: function(phrase, who) {
@@ -37,10 +37,10 @@ describe("delay", function() {
3737
let spy = user.sayHi;
3838
user.sayHi = delay(user.sayHi, 1500);
3939

40-
user.sayHi("Hello", "John");
40+
user.sayHi("Olá", "John");
4141

4242
this.clock.tick(2000);
4343

44-
assert(spy.calledOnce, 'calledOnce check failed');
44+
assert(spy.calledOnce, 'a verificação de calledOnce falhou');
4545
});
46-
});
46+
});

1-js/06-advanced-functions/09-call-apply-decorators/02-delay/solution.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The solution:
1+
A solução:
22

33
```js run demo
44
function delay(f, ms) {
@@ -11,22 +11,22 @@ function delay(f, ms) {
1111

1212
let f1000 = delay(alert, 1000);
1313

14-
f1000("test"); // shows "test" after 1000ms
14+
f1000("teste"); // exibe "teste" após 1000ms
1515
```
1616

17-
Please note how an arrow function is used here. As we know, arrow functions do not have own `this` and `arguments`, so `f.apply(this, arguments)` takes `this` and `arguments` from the wrapper.
17+
Notemos como usamos uma função de seta neste exemplo de código. Como sabemos, as funções de seta não possuem `this` e `arguments` próprios, então `f.apply(this, arguments)` recebe o `this` e `arguments` da função envolvente.
1818

19-
If we pass a regular function, `setTimeout` would call it without arguments and `this=window` (assuming we're in the browser).
19+
Se passarmos uma função normal, `setTimeout` a chamaria sem argumentos e `this=window` (assumindo que estamos no navegador).
2020

21-
We still can pass the right `this` by using an intermediate variable, but that's a little bit more cumbersome:
21+
Nós podemos ainda passar o `this` correto utilizando uma variável intermediária, mas isso é um pouco mais complicado:
2222

2323
```js
2424
function delay(f, ms) {
2525

2626
return function(...args) {
27-
let savedThis = this; // store this into an intermediate variable
27+
let savedThis = this; // armazenar isto numa variável intermédia
2828
setTimeout(function() {
29-
f.apply(savedThis, args); // use it here
29+
f.apply(savedThis, args); // utilizá-lo aqui
3030
}, ms);
3131
};
3232

1-js/06-advanced-functions/09-call-apply-decorators/02-delay/task.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ importance: 5
22

33
---
44

5-
# Delaying decorator
5+
# Decorador de Atraso
66

7-
Create a decorator `delay(f, ms)` that delays each call of `f` by `ms` milliseconds.
7+
Crie um decorador `delay(f, ms)` que atrasa cada chamada de `f` por `ms` milissegundos.
88

9-
For instance:
9+
Por exemplo:
1010

1111
```js
1212
function f(x) {
1313
alert(x);
1414
}
1515

16-
// create wrappers
16+
// criar funções envolventes
1717
let f1000 = delay(f, 1000);
1818
let f1500 = delay(f, 1500);
1919

20-
f1000("test"); // shows "test" after 1000ms
21-
f1500("test"); // shows "test" after 1500ms
20+
f1000("teste"); // exibe "teste" após 1000ms
21+
f1500("teste"); // exibe "teste" após 1500ms
2222
```
2323

24-
In other words, `delay(f, ms)` returns a "delayed by `ms`" variant of `f`.
24+
Por outras palavras, `delay(f, ms)` retorna uma variante "atrasada por `ms`" de `f`.
2525

26-
In the code above, `f` is a function of a single argument, but your solution should pass all arguments and the context `this`.
26+
No código acima, `f` é uma função de um único argumento, mas a sua solução deve passar todos os argumentos e o contexto de `this`.

1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/_js.view/test.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,33 @@ describe('debounce', function () {
77
this.clock.restore();
88
});
99

10-
it('for one call - runs it after given ms', function () {
10+
it('para uma chamada - execute-a após um determinado ms', function () {
1111
const f = sinon.spy();
1212
const debounced = debounce(f, 1000);
1313

1414
debounced('test');
15-
assert(f.notCalled, 'not called immediately');
15+
assert(f.notCalled, 'não é chamada imediatamente');
1616
this.clock.tick(1000);
17-
assert(f.calledOnceWith('test'), 'called after 1000ms');
17+
assert(f.calledOnceWith('test'), 'chamada após 1000ms');
1818
});
1919

20-
it('for 3 calls - runs the last one after given ms', function () {
20+
it('para 3 chamadas - executa a última após determinados ms', function () {
2121
const f = sinon.spy();
2222
const debounced = debounce(f, 1000);
2323

2424
debounced('a');
25-
setTimeout(() => debounced('b'), 200); // ignored (too early)
26-
setTimeout(() => debounced('c'), 500); // runs (1000 ms passed)
25+
setTimeout(() => debounced('b'), 200); // ignorada (demasiado cedo)
26+
setTimeout(() => debounced('c'), 500); // executar (1000ms passados)
2727
this.clock.tick(1000);
2828

29-
assert(f.notCalled, 'not called after 1000ms');
29+
assert(f.notCalled, 'não é chamada após 1000ms');
3030

3131
this.clock.tick(500);
3232

33-
assert(f.calledOnceWith('c'), 'called after 1500ms');
33+
assert(f.calledOnceWith('c'), 'chamada após 1500ms');
3434
});
3535

36-
it('keeps the context of the call', function () {
36+
it('mantém o contexto da chamada', function () {
3737
let obj = {
3838
f() {
3939
assert.equal(this, obj);
Loading
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<!doctype html>
22
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
33

4-
Function <code>handler</code> is called on this input:
4+
A função <code>handler</code> é chamada nesta entrada:
55
<br>
66
<input id="input1" placeholder="type here">
77

88
<p>
99

10-
Debounced function <code>debounce(handler, 1000)</code> is called on this input:
10+
A função <code>debounce(handler, 1000)</code> reduzida é chamada nesta entrada:
1111
<br>
1212
<input id="input2" placeholder="type here">
1313

1414
<p>
15-
<button id="result">The <code>handler</code> puts the result here</button>
15+
<button id="result">A <code>handler</code> coloca o resultado aqui</button>
1616

1717
<script>
1818
function handler(event) {
@@ -21,4 +21,4 @@
2121

2222
input1.oninput = handler;
2323
input2.oninput = _.debounce(handler, 1000);
24-
</script>
24+
</script>

1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ function debounce(func, ms) {
99

1010
```
1111

12-
A call to `debounce` returns a wrapper. When called, it schedules the original function call after given `ms` and cancels the previous such timeout.
13-
12+
Uma chamada à `debounce` retorna um embrulhador. Quando chamado, este agenda a chamada da função original depois de dados `ms` e cancela o tempo de espera anterior.

0 commit comments

Comments
 (0)