You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/reference/react-dom/components/index.md
+132Lines changed: 132 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,15 +162,137 @@ React tüm yerleşik tarayıcı HTML bileşenlerini destekler. Bu şunları içe
162
162
163
163
### Özel HTML elemanları {/*custom-html-elements*/}
164
164
165
+
<<<<<<< HEAD
165
166
Eğer `<my-element>` gibi tire içeren bir etiket oluşturursanız, React bir [özel HTML elemanı](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) oluşturmak istediğinizi varsayacaktır. React'te özel elemanların render edilmesi, yerleşik tarayıcı etiketlerinin render edilmesinden daha farklı şekilde çalışır:
166
167
167
168
- Tüm özel eleman prop'ları string olarak serileştirilir ve her zaman öznitelikler kullanılarak ayarlanır.
168
169
- Özel elemanlar `class` yerine `className`, `for` yerine `htmlFor` kabul eder.
170
+
=======
171
+
If you render a tag with a dash, like `<my-element>`, React will assume you want to render a [custom HTML element.](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements)
172
+
>>>>>>> 27d86ffe6ec82e3642c6490d2187bae2271020a4
169
173
170
174
Yerleşik bir tarayıcı HTML elemanını [`is`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/is) özniteliğiyle oluşturursanız, bu eleman da özel bir eleman olarak ele alınacaktır.
171
175
176
+
#### Setting values on custom elements {/*attributes-vs-properties*/}
177
+
178
+
Custom elements have two methods of passing data into them:
179
+
180
+
1) Attributes: Which are displayed in markup and can only be set to string values
181
+
2) Properties: Which are not displayed in markup and can be set to arbitrary JavaScript values
182
+
183
+
By default, React will pass values bound in JSX as attributes:
184
+
185
+
```jsx
186
+
<my-element value="Hello, world!"></my-element>
187
+
```
188
+
189
+
Non-string JavaScript values passed to custom elements will be serialized by default:
190
+
191
+
```jsx
192
+
// Will be passed as `"1,2,3"` as the output of `[1,2,3].toString()`
193
+
<my-element value={[1,2,3]}></my-element>
194
+
```
195
+
196
+
React will, however, recognize an custom element's property as one that it may pass arbitrary values to if the property name shows up on the class during construction:
#### Listening for events on custom elements {/*custom-element-events*/}
235
+
236
+
A common pattern when using custom elements is that they may dispatch [`CustomEvent`s](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent) rather than accept a function to call when an event occur. You can listen for these events using an `on` prefix when binding to the event via JSX.
[React'in gelecekteki bir sürümü daha kapsamlı özel eleman desteği içerecektir.](https://github.com/facebook/react/issues/11347#issuecomment-1122275286)
175
297
176
298
En son deneysel sürüme React paketlerini yükselterek deneyebilirsiniz:
@@ -179,6 +301,16 @@ En son deneysel sürüme React paketlerini yükselterek deneyebilirsiniz:
179
301
-`react-dom@experimental`
180
302
181
303
React'in deneysel sürümleri hatalar içerebilir. Bunları canlı ortamda kullanmayın.
304
+
=======
305
+
Events are case-sensitive and support dashes (`-`). Preserve the casing of the event and include all dashes when listening for custom element's events:
Copy file name to clipboardExpand all lines: src/content/reference/react/Activity.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ While hidden, children still re-render in response to new props, albeit at a low
51
51
52
52
When the boundary becomes <CodeStepstep={3}>visible</CodeStep> again, React will reveal the children with their previous state restored, and re-create their Effects.
53
53
54
-
In this way, Activity can thought of as a mechanism for rendering "background activity". Rather than completely discarding content that's likely to become visible again, you can use Activity to maintain and restore that content's UI and internal state, while ensuring hidden content has no unwanted side effects.
54
+
In this way, Activity can be thought of as a mechanism for rendering "background activity". Rather than completely discarding content that's likely to become visible again, you can use Activity to maintain and restore that content's UI and internal state, while ensuring that your hidden content has no unwanted side effects.
55
55
56
56
[See more examples below.](#usage)
57
57
@@ -62,15 +62,15 @@ In this way, Activity can thought of as a mechanism for rendering "background ac
62
62
63
63
#### Caveats {/*caveats*/}
64
64
65
-
-When used with `<ViewTransition>`, hidden activities that reveal in a transition will activate an "enter" animation. Visible Activities hidden in a transition will activate an "exit" animation.
65
+
-If an Activity is rendered inside of a [ViewTransition](/reference/react/ViewTransition), and it becomes visible as a result of an update caused by [startTransition](/reference/react/startTransition), it will activate the ViewTransition's `enter` animation. If it becomes hidden, it will activate its `exit` animation.
66
66
67
67
---
68
68
69
69
## Usage {/*usage*/}
70
70
71
71
### Restoring the state of hidden components {/*restoring-the-state-of-hidden-components*/}
72
72
73
-
Typically in React, when you want to conditionally show or hide a component, you mount and unmount it:
73
+
In React, when you want to conditionally show or hide a component, you typically mount or unmount it based on that condition:
74
74
75
75
```jsx
76
76
{isShowingSidebar && (
@@ -88,11 +88,11 @@ When you hide a component using an Activity boundary instead, React will "save"
88
88
</Activity>
89
89
```
90
90
91
-
This makes it possible to restore components to their previous state.
91
+
This makes it possible to hide and then later restore components in the state they were previously in.
92
92
93
-
The following example has a sidebar with an expandable section – you can press "Overview" to reveal the three subitems below it. The main app area also has a button that hides and shows the sidebar.
93
+
The following example has a sidebar with an expandable section. You can press "Overview" to reveal the three subitems below it. The main app area also has a button that hides and shows the sidebar.
94
94
95
-
Try expanding the Overview section, then toggling the sidebar closed and open:
95
+
Try expanding the Overview section, and then toggling the sidebar closed then open:
0 commit comments