Skip to content

Commit

Permalink
Translate DOM Elements (#45)
Browse files Browse the repository at this point in the history
* Translate DOM Elements

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Substituição do termo 'customizada' por 'personalizada'

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Tradução de 'browser' para 'navegador'

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>

* Update content/docs/reference-dom-elements.md

Co-Authored-By: tiagohermano <[email protected]>
  • Loading branch information
tiagohermano authored and fjoshuajr committed Feb 12, 2019
1 parent 4a8ded7 commit 3dbb42c
Showing 1 changed file with 39 additions and 38 deletions.
77 changes: 39 additions & 38 deletions content/docs/reference-dom-elements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: dom-elements
title: DOM Elements
title: Elementos DOM
layout: docs
category: Reference
permalink: docs/dom-elements.html
Expand All @@ -14,27 +14,27 @@ redirect_from:
- "tips/dangerously-set-inner-html.html"
---

React implements a browser-independent DOM system for performance and cross-browser compatibility. We took the opportunity to clean up a few rough edges in browser DOM implementations.
O React implementa um sistema DOM independente ao navegador visando performance e compatibilidade entre navegadores. Aproveitamos a oportunidade para melhorar algumas implementações do DOM no navegador.

In React, all DOM properties and attributes (including event handlers) should be camelCased. For example, the HTML attribute `tabindex` corresponds to the attribute `tabIndex` in React. The exception is `aria-*` and `data-*` attributes, which should be lowercased. For example, you can keep `aria-label` as `aria-label`.
No React, todas as propriedades e atributos (incluindo manipuladores de eventos) devem estar em _camelCase_. Por exemplo, o atributo HTML `tabindex` corresponde ao atributo `tabIndex` no React. As exceções são os atributos `aria-*` e `data-*`, os quais devem estar em _lowercase_. Por exemplo, você pode manter `aria-label` como `aria-label`.

## Differences In Attributes {#differences-in-attributes}
## Diferenças nos Atributos {#differences-in-attributes}

There are a number of attributes that work differently between React and HTML:
Existem alguns atributos que funcionam de formas diferentes no React e no HTML:

### checked {#checked}

The `checked` attribute is supported by `<input>` components of type `checkbox` or `radio`. You can use it to set whether the component is checked. This is useful for building controlled components. `defaultChecked` is the uncontrolled equivalent, which sets whether the component is checked when it is first mounted.
O atributo `checked` é suportado por componentes `<input>` do tipo (_`type`_) `checkbox` ou `radio `. Você pode usá-lo para definir se o componente está checado. Isso é útil para construção de componentes controlados (_controlled components_). `defaultChecked` é o equivalente para componentes não controlados (_uncontrolled components_), que define se o componente está checado na primeira vez em que é montado.

### className {#classname}

To specify a CSS class, use the `className` attribute. This applies to all regular DOM and SVG elements like `<div>`, `<a>`, and others.
Para especificar uma classe CSS, utilize o atributo `className`. Isso se aplica para todos os DOM e elementos SVG regulares como `<div>`, `<a>`, e outros.

If you use React with Web Components (which is uncommon), use the `class` attribute instead.
Se você usar React com Web Components (que é uma prática incomum), use o atributo `class`.

### dangerouslySetInnerHTML {#dangerouslysetinnerhtml}

`dangerouslySetInnerHTML` is React's replacement for using `innerHTML` in the browser DOM. In general, setting HTML from code is risky because it's easy to inadvertently expose your users to a [cross-site scripting (XSS)](https://en.wikipedia.org/wiki/Cross-site_scripting) attack. So, you can set HTML directly from React, but you have to type out `dangerouslySetInnerHTML` and pass an object with a `__html` key, to remind yourself that it's dangerous. For example:
`dangerouslySetInnerHTML` é o substituto do React para o uso do `innerHTML` no DOM do navegador. Em geral, adicionar HTML através de código é arriscado pois é fácil expor inadvertidamente seus usuários a um ataque de [cross-site scripting (XSS)](https://pt.wikipedia.org/wiki/Cross-site_scripting). Então, você pode definir HTML diretamente através do React, mas vocẽ tem que digitar `dangerouslySetInnerHTML` e passar um objeto com a chave `__html`, para te relembrar que é perigoso. Por exemplo: -->

```js
function createMarkup() {
Expand All @@ -48,23 +48,23 @@ function MyComponent() {

### htmlFor {#htmlfor}

Since `for` is a reserved word in JavaScript, React elements use `htmlFor` instead.
Já que `for` é uma palavra reservada em JavaScript, em vez disso elementos React usam `htmlFor`.

### onChange {#onchange}

The `onChange` event behaves as you would expect it to: whenever a form field is changed, this event is fired. We intentionally do not use the existing browser behavior because `onChange` is a misnomer for its behavior and React relies on this event to handle user input in real time.
O evento `onChange` se comporta como você esperaria que ele se comportasse: sempre que um campo do formulário muda, este evento é disparado. Nós intencionalmente não utilizamos o comportamento existente do navegador porque `onChange` é um termo inadequado para seu comportamento e o React depende deste evento para manipular input do usuário em tempo real.

### selected {#selected}

The `selected` attribute is supported by `<option>` components. You can use it to set whether the component is selected. This is useful for building controlled components.
O atributo `selected` é suportado pelos componentes `<option>`. Você pode usá-lo para definir se um componente está selecionado. Isso é útil para construir componentes controlados (_controlled components_).

### style {#style}

>Note
>Nota
>
>Some examples in the documentation use `style` for convenience, but **using the `style` attribute as the primary means of styling elements is generally not recommended.** In most cases, [`className`](#classname) should be used to reference classes defined in an external CSS stylesheet. `style` is most often used in React applications to add dynamically-computed styles at render time. See also [FAQ: Styling and CSS](/docs/faq-styling.html).
Alguns exemplos na documentação utilizam `style` por conveniência, mas **usar o atributo `style` como a forma principal de estilizar elementos geralmente não é recomendado.** Na maioria dos casos, [`className`](#classname) deve ser usado para referenciar classes definidas em um arquivo de estilo CSS externo. `style` é geralmente usado em aplicações React para adicionar estilos computados dinamicamente em tempo de renderização. Veja também [FAQ: Estilização e CSS](/docs/faq-styling.html).

The `style` attribute accepts a JavaScript object with camelCased properties rather than a CSS string. This is consistent with the DOM `style` JavaScript property, is more efficient, and prevents XSS security holes. For example:
O atributo `style` aceita um objeto JavaScript com propriedades em _camelCase_ ao invés de uma string CSS. Isso é consistente com a propriedade do JavaScript `style`

```js
const divStyle = {
Expand All @@ -77,66 +77,67 @@ function HelloWorldComponent() {
}
```

Note that styles are not autoprefixed. To support older browsers, you need to supply corresponding style properties:
Perceba que estes estilos não são auto prefixados. Para serem compatíveis com navegadores antigos você precisa fornecer as propriedades de estilos correspondentes:

```js
const divStyle = {
WebkitTransition: 'all', // note the capital 'W' here
msTransition: 'all' // 'ms' is the only lowercase vendor prefix
WebkitTransition: 'all', // perceba o 'W' maiúsculo aqui
msTransition: 'all' // 'ms' é o único prefixo de fornecedor minúsculo
};

function ComponentWithTransition() {
return <div style={divStyle}>This should work cross-browser</div>;
return <div style={divStyle}>Isto deve funcionar em diferentes navegadores</div>;
}
```

Style keys are camelCased in order to be consistent with accessing the properties on DOM nodes from JS (e.g. `node.style.backgroundImage`). Vendor prefixes [other than `ms`](http://www.andismith.com/blog/2012/02/modernizr-prefixed/) should begin with a capital letter. This is why `WebkitTransition` has an uppercase "W".
Chaves de _style_ são em _camelCase_ com o intuito de serem consistentes com o acesso de propriedades que são nós do DOM através do JS (ex. `node.style.backgroundImage`). Prefixos de fornecedor (_vendor prefixes_) [diferentes de `ms`](http://www.andismith.com/blog/2012/02/modernizr-prefixed/) devem começar com a letra maiúscula. É por isso que `WebkitTransition` tem um "W" maiúsculo.

React will automatically append a "px" suffix to certain numeric inline style properties. If you want to use units other than "px", specify the value as a string with the desired unit. For example:
React vai acrescentar automaticamente um sufixo "px" para determinadas propriedades numéricas de *inline style*. Se você quiser usar unidades diferentes de "px", especifique o valor como uma string com a unidade desejada. Por exemplo:

```js
// Result style: '10px'
// Style resultante: '10px'
<div style={{ height: 10 }}>
Hello World!
</div>

// Result style: '10%'
// Style resultante: '10%'
<div style={{ height: '10%' }}>
Hello World!
</div>
```

Not all style properties are converted to pixel strings though. Certain ones remain unitless (eg `zoom`, `order`, `flex`). A complete list of unitless properties can be seen [here](https://github.com/facebook/react/blob/4131af3e4bf52f3a003537ec95a1655147c81270/src/renderers/dom/shared/CSSProperty.js#L15-L59).
Nem todas as propriedades de estilos são convertidas para strings pixel. Algumas permanecem sem unidade (exemplo: `zoom`, `order`, `flex`). Uma lista completa com as propriedades sem unidade pode ser vista [aqui](https://github.com/facebook/react/blob/4131af3e4bf52f3a003537ec95a1655147c81270/src/renderers/dom/shared/CSSProperty.js#L15-L59)

### suppressContentEditableWarning {#suppresscontenteditablewarning}

Normally, there is a warning when an element with children is also marked as `contentEditable`, because it won't work. This attribute suppresses that warning. Don't use this unless you are building a library like [Draft.js](https://facebook.github.io/draft-js/) that manages `contentEditable` manually.
Normalmente, existe um alerta quando um elemento contém outros elementos que também estão marcados como `contentEditable`. Assim sendo, não funcionará. Esse atributo interrompe esse alerta. Não faça uso dele. A não ser que você esteja construindo uma biblioteca como a [Draft.js](https://facebook.github.io/draft-js/) que gerencia `contentEditable` manualmente.

### suppressHydrationWarning {#suppresshydrationwarning}

If you use server-side React rendering, normally there is a warning when the server and the client render different content. However, in some rare cases, it is very hard or impossible to guarantee an exact match. For example, timestamps are expected to differ on the server and on the client.
Se você usa a renderização do React no lado do servidor, normalmente existe um alerta para quando o servidor e o lado do cliente renderizam conteúdo de formas diferentes. Entretanto, em alguns casos raros, é muito difícil ou impossível de garantir a correspondência exata. Por exemplo, é esperado que _timestamps_ estejam diferentes no servidor e no cliente.

If you set `suppressHydrationWarning` to `true`, React will not warn you about mismatches in the attributes and the content of that element. It only works one level deep, and is intended to be used as an escape hatch. Don't overuse it. You can read more about hydration in the [`ReactDOM.hydrate()` documentation](/docs/react-dom.html#hydrate).

Se você definir `suppressHydrationWarning` para `true`, o React te avisará sobre incompatibilidades nos atributos e no conteúdo daquele elemento. Isto só funciona dentro de 1 nível de profundidade e destina-se a ser usado como uma saída de emergência. Não use excessivamente. Você pode ler mais sobre _hydration_ na [documentação do `ReactDOM.hydrate()`](/docs/react-dom.html#hydrate).

### value {#value}

The `value` attribute is supported by `<input>` and `<textarea>` components. You can use it to set the value of the component. This is useful for building controlled components. `defaultValue` is the uncontrolled equivalent, which sets the value of the component when it is first mounted.
O atributo `value` é suportado pelos componentes `<input>` e `<textarea>`. Você pode usá-lo para definir o valor do componente. Isso é útil para construção de componentes controlados (_controlled components_). `defaultValue` é o equivalente para componentes não controlados (_uncontrolled components_), que define o valor do componente quando este é montado pela primeira vez.

## All Supported HTML Attributes {#all-supported-html-attributes}
## Todos os atributos HTML suportados {#all-supported-html-attributes}

As of React 16, any standard [or custom](/blog/2017/09/08/dom-attributes-in-react-16.html) DOM attributes are fully supported.
A partir do React 16, qualquer atributo padrão [ou personalizado](/blog/2017/09/08/dom-attributes-in-react-16.html) é totalmente suportado.

React has always provided a JavaScript-centric API to the DOM. Since React components often take both custom and DOM-related props, React uses the `camelCase` convention just like the DOM APIs:
O React sempre forneceu uma API centrada no JavaScript para o DOM. Uma vez que os componentes React geralmente recebem tanto props personalizadas quanto props relacionadas ao DOM, o React usa a convenção `camelCase` assim como as APIs do DOM:

```js
<div tabIndex="-1" /> // Just like node.tabIndex DOM API
<div className="Button" /> // Just like node.className DOM API
<input readOnly={true} /> // Just like node.readOnly DOM API
<div tabIndex="-1" /> // Assim como node.tabIndex DOM API
<div className="Button" /> // Assim como node.className DOM API
<input readOnly={true} /> // Assim como node.readOnly DOM API
```

These props work similarly to the corresponding HTML attributes, with the exception of the special cases documented above.
Essas props funcionam de forma similar aos atributos HTML correspondentes, com exceção dos casos especiais documentados abaixo.

Some of the DOM attributes supported by React include:
Alguns dos elementos DOM suportados pelo React incluem:

```
accept acceptCharset accessKey action allowFullScreen alt async autoComplete
Expand All @@ -154,7 +155,7 @@ sizes span spellCheck src srcDoc srcLang srcSet start step style summary
tabIndex target title type useMap value width wmode wrap
```

Similarly, all SVG attributes are fully supported:
Igualmente, todos os atributos SVG são totalmente suportados:

```
accentHeight accumulate additive alignmentBaseline allowReorder alphabetic
Expand Down Expand Up @@ -193,4 +194,4 @@ xlinkHref xlinkRole xlinkShow xlinkTitle xlinkType xmlns xmlnsXlink xmlBase
xmlLang xmlSpace y y1 y2 yChannelSelector z zoomAndPan
```

You may also use custom attributes as long as they're fully lowercase.
Você também pode usar atributos personalizados, desde que todos eles estejam em letras minúsculas.

0 comments on commit 3dbb42c

Please sign in to comment.