Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename <ViewTransition className="..."> to <ViewTransition default="..."> #32734

Merged
merged 4 commits into from
Mar 26, 2025

Conversation

sebmarkbage
Copy link
Collaborator

It was always confusing that this is not a CSS class but a view-transition-class.

The className sticks out a bit among its siblings enter, exit, update and share. The idea is that the most specific definition override is the class name that gets applied and this prop is really just the fallback, catch-all or "any" that is applied if you didn't specify a more specific one.

It has also since evolved not just to take a string but also a map of Transition Type to strings.

The "class" is really the type of the value. We could add a suffix to all of them like defaultClass, enterClass, exitClass, updateClass and shareClass. However, this doesn't necessarily make sense with the mapping of Transition Type to string. It also makes it a bit too DOM centric. In React Native this might still be called a "class" but it might be represented by an object definition. We might even allow some kind of inline style form for the DOM too. Really this is about picking which "animation" that runs which can be a string or instance. "Animation" is too broad because there's also a concept of a CSS Animation and these are really sets of CSS animations (group, image-pair, old, new). It could maybe be defaultTransition, enterTransition, etc but that seems unnecessarily repetitive and still doesn't say anything about it being a class.

We also already have the name "default" in the map of Transition Types. In fact you can now specify a default for default:

<ViewTransition default={{"navigation-back": "slide-out", "default": "fade-in"}}>

One thing I don't like about the name "default" is that it might be common to just apply a named class that does it matching to enter/exit/update in the CSS selectors (such as the :only-child rule) instead of doing that mapping to each one using React. In that can you end up specifying only default={...} a lot and then what is it the "default" for? It's more like "all". I think it's likely that you end up with either "default" or the specific forms instead of both at once.

@react-sizebot
Copy link

react-sizebot commented Mar 25, 2025

Comparing: a5297ec...f50e9de

Critical size changes

Includes critical production bundles, as well as any change greater than 2%:

Name +/- Base Current +/- gzip Base gzip Current gzip
oss-stable/react-dom/cjs/react-dom.production.js = 6.68 kB 6.68 kB = 1.83 kB 1.83 kB
oss-stable/react-dom/cjs/react-dom-client.production.js = 515.00 kB 515.00 kB = 91.74 kB 91.74 kB
oss-experimental/react-dom/cjs/react-dom.production.js = 6.69 kB 6.69 kB = 1.83 kB 1.83 kB
oss-experimental/react-dom/cjs/react-dom-client.production.js = 614.90 kB 614.66 kB = 108.78 kB 108.74 kB
facebook-www/ReactDOM-prod.classic.js = 646.58 kB 646.38 kB = 114.29 kB 114.25 kB
facebook-www/ReactDOM-prod.modern.js = 636.86 kB 636.66 kB = 112.71 kB 112.68 kB

Significant size changes

Includes any change greater than 0.2%:

Expand to show
Name +/- Base Current +/- gzip Base gzip Current gzip
test_utils/ReactAllWarnings.js +0.25% 64.00 kB 64.16 kB +0.40% 16.06 kB 16.12 kB

Generated by 🚫 dangerJS against f50e9de

@sebmarkbage sebmarkbage merged commit e0c99c4 into facebook:main Mar 26, 2025
241 checks passed
sebmarkbage added a commit that referenced this pull request Mar 26, 2025
Stacked on #32734

In React a ViewTransition class of `"none"` doesn't just mean that it
has no class but also that it has no ViewTransition name. The default
(`null | undefined`) means that it has no specific class but should run
with the default built-in animation. This adds this as an explicit
string called `"auto"` as well.

That way you can do `<ViewTransition default="foo" enter="auto">` to
override the "foo" just for the "enter" trigger to be the default
built-in animation. Where as if you just specified `null` it would be
like not specifying enter at all which would trigger "foo".
github-actions bot pushed a commit that referenced this pull request Mar 26, 2025
….."> (#32734)

It was always confusing that this is not a CSS class but a
view-transition-class.

The `className` sticks out a bit among its siblings `enter`, `exit`,
`update` and `share`. The idea is that the most specific definition
override is the class name that gets applied and this prop is really
just the fallback, catch-all or "any" that is applied if you didn't
specify a more specific one.

It has also since evolved not just to take a string but also a map of
Transition Type to strings.

The "class" is really the type of the value. We could add a suffix to
all of them like `defaultClass`, `enterClass`, `exitClass`,
`updateClass` and `shareClass`. However, this doesn't necessarily make
sense with the mapping of Transition Type to string. It also makes it a
bit too DOM centric. In React Native this might still be called a
"class" but it might be represented by an object definition. We might
even allow some kind of inline style form for the DOM too. Really this
is about picking which "animation" that runs which can be a string or
instance. "Animation" is too broad because there's also a concept of a
CSS Animation and these are really sets of CSS animations (group,
image-pair, old, new). It could maybe be `defaultTransition`,
`enterTransition`, etc but that seems unnecessarily repetitive and still
doesn't say anything about it being a class.

We also already have the name "default" in the map of Transition Types.
In fact you can now specify a default for default:

```
<ViewTransition default={{"navigation-back": "slide-out", "default": "fade-in"}}>
```

One thing I don't like about the name `"default"` is that it might be
common to just apply a named class that does it matching to
enter/exit/update in the CSS selectors (such as the `:only-child` rule)
instead of doing that mapping to each one using React. In that can you
end up specifying only `default={...}` a lot and then what is it the
"default" for? It's more like "all". I think it's likely that you end up
with either "default" or the specific forms instead of both at once.

DiffTrain build for [e0c99c4](e0c99c4)
github-actions bot pushed a commit that referenced this pull request Mar 26, 2025
Stacked on #32734

In React a ViewTransition class of `"none"` doesn't just mean that it
has no class but also that it has no ViewTransition name. The default
(`null | undefined`) means that it has no specific class but should run
with the default built-in animation. This adds this as an explicit
string called `"auto"` as well.

That way you can do `<ViewTransition default="foo" enter="auto">` to
override the "foo" just for the "enter" trigger to be the default
built-in animation. Where as if you just specified `null` it would be
like not specifying enter at all which would trigger "foo".

DiffTrain build for [fceb0f8](fceb0f8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed React Core Team Opened by a member of the React Core Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants