Skip to content

Commit 27d86ff

Browse files
authored
Touch-ups to Activity (#7940)
1 parent 0a74f01 commit 27d86ff

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/reference/react/Activity.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ While hidden, children still re-render in response to new props, albeit at a low
5151

5252
When the boundary becomes <CodeStep step={3}>visible</CodeStep> again, React will reveal the children with their previous state restored, and re-create their Effects.
5353

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.
5555

5656
[See more examples below.](#usage)
5757

@@ -62,15 +62,15 @@ In this way, Activity can thought of as a mechanism for rendering "background ac
6262

6363
#### Caveats {/*caveats*/}
6464

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.
6666

6767
---
6868

6969
## Usage {/*usage*/}
7070

7171
### Restoring the state of hidden components {/*restoring-the-state-of-hidden-components*/}
7272

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:
7474

7575
```jsx
7676
{isShowingSidebar && (
@@ -88,11 +88,11 @@ When you hide a component using an Activity boundary instead, React will "save"
8888
</Activity>
8989
```
9090

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.
9292

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.
9494

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:
9696

9797
<Sandpack>
9898

0 commit comments

Comments
 (0)