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

Prepare for soft-launch of new architecture #988

Merged
merged 15 commits into from
Nov 11, 2024

Conversation

TatianaKapos
Copy link
Contributor

@TatianaKapos TatianaKapos commented Nov 5, 2024

Description

Closes #981 and #980

Why

We are soft-launching the new arch in 0.76, this aims to start the documentation for this change! All feedback and contributions is welcomed if not encouraged :)

Content mostly taken from

Microsoft Reviewers: Open in CodeFlow

docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
@TatianaKapos TatianaKapos marked this pull request as ready for review November 6, 2024 21:43
@TatianaKapos TatianaKapos requested a review from a team as a code owner November 6, 2024 21:43
Copy link
Contributor

@stmoy stmoy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking great! Thank you for putting this content together Tatiana!

docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated

On Windows, the implementation of the previous "Paper" rendering architecture was based on UWP and WinUI/XAML. To meet the requirements of the new "Fabric" rendering architecture the Windows implementation now uses a direct WinAppSDK Scene Graph approach that can also host WinUI/XAML islands as needed. This evolution aims to unify rendering logic cross-platform in C++, aligning more closely with WinAppSDK and WinUI3 that favor Win32 applications. This means that apps built with the new architecture will default to Win32 rather than UWP, a change made to enhance compatibility with Windows’ latest frameworks.

For developers using UWP with RNW, **UWP Paper applications remain fully supported**—there are no immediate plans to remove support. However, **UWP and Fabric together are currently not supported**. We will provide clear migration guidance for UWP Paper apps once Fabric support is fully established. At this stage, Fabric on Windows is best suited for early adopters comfortable with a work-in-progress experience, and the documentation may not yet be as comprehensive. For those willing to dive in, the new architecture offers a glimpse into the future of React Native Windows development.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
For developers using UWP with RNW, **UWP Paper applications remain fully supported**there are no immediate plans to remove support. However, **UWP and Fabric together are currently not supported**. We will provide clear migration guidance for UWP Paper apps once Fabric support is fully established. At this stage, Fabric on Windows is best suited for early adopters comfortable with a work-in-progress experience, and the documentation may not yet be as comprehensive. For those willing to dive in, the new architecture offers a glimpse into the future of React Native Windows development.
For developers using RNW based on UWP, **UWP Paper applications remain fully supported** and there are no immediate plans to remove support. However, **UWP and Fabric together are currently not supported**. We will provide clear migration guidance for UWP Paper apps once Fabric support is fully established. At this stage, Fabric on Windows is best suited for early adopters comfortable with a work-in-progress experience, and the documentation may not yet be as comprehensive. For those willing to dive in, the new architecture offers a glimpse into the future of React Native Windows development.

For those willing to dive in, the new architecture offers a glimpse into the future of React Native Windows development.

This is a good opportunity to include a list of things that work vs. things that don't. I covered this at React Universe, we can recycle some content (or create a new page that we keep up to date).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have link to your talk in React Universe? I can go ahead and add some of the content to this page!

docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated

## Components

The new architecture introduces significant updates. By moving away from XAML, we gain the flexibility to incorporate components that weren’t previously available and reduce technical debt from legacy XAML components. Below is a list of components we plan to support in the new architecture, as well as those we are looking to deprecate. For developers currently using Flyout or Popup, we hope they’ll find Modal a suitable alternative.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we have a guide that helps with the migration from Flyout/Popup to Modal? Is it truly a 1:1 drop-in replacement?

Copy link
Contributor Author

@TatianaKapos TatianaKapos Nov 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we are in a spot where we have a migration plan for Flyout/Popup, there's still a lot of properties/events missing on Modal and discussions on windows-specific properties that should be included. It won't be a 1:1 replacement though as the properties are different.

Will add that for future-work though!

docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
Copy link
Contributor

@jonthysell jonthysell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not done yet but I've already got a lot of comments built up that I don't want to wait for people to see.

docs/NewArch.md Outdated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you rename to new-architecture.md to align with other file naming?

docs/NewArch.md Outdated Show resolved Hide resolved
@@ -9,6 +9,8 @@ Make sure you have installed all of the [development dependencies](rnw-dependenc

For information around how to set up React Native, see the [React Native Getting Started Guide](https://reactnative.dev/docs/getting-started).

> **Interested in exploring the new architecture?** We are "soft-launching" our implementation of the new architecture. If you’d like to be an early adopter, check out the instructions in the [New Architecture Guide](NewArch.md) and discover new templates available in [init-windows-cli](init-windows-cli.md#templates).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think "soft-launch" is purely internal, and perhaps "preview" is better? Checking with others.

Suggested change
> **Interested in exploring the new architecture?** We are "soft-launching" our implementation of the new architecture. If you’d like to be an early adopter, check out the instructions in the [New Architecture Guide](NewArch.md) and discover new templates available in [init-windows-cli](init-windows-cli.md#templates).
> **Interested in migrating to [React Native's New Architecture](https://reactnative.dev/architecture/landing-page)?** New Architecture support in React Native for Windows is now available to preview in 0.76. Note there are several key changes, so if you’d like to be an early adopter, check out the information in the [New Architecture Guide](new-architecture.md).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changed to preview in documentation!

website/sidebars.json Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
docs/NewArch.md Outdated Show resolved Hide resolved
Copy link
Contributor

@jonthysell jonthysell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More comments!

docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
docs/new-architecture.md Show resolved Hide resolved
docs/new-architecture.md Outdated Show resolved Hide resolved
@TatianaKapos
Copy link
Contributor Author

@chrisglein @stmoy Jon added some more content (particularly the FAQ) if you wanted to take a look!

@TatianaKapos TatianaKapos merged commit c64d7f3 into microsoft:main Nov 11, 2024
25 checks passed
@TatianaKapos TatianaKapos deleted the tk-newarch branch November 11, 2024 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: No status
Development

Successfully merging this pull request may close these issues.

Create detailed New vs. Old Arch page with clear expectations and caveats
4 participants