PatrickJahr.Blazor.ViewTransitions
1.0.0
dotnet add package PatrickJahr.Blazor.ViewTransitions --version 1.0.0
NuGet\Install-Package PatrickJahr.Blazor.ViewTransitions -Version 1.0.0
<PackageReference Include="PatrickJahr.Blazor.ViewTransitions" Version="1.0.0" />
paket add PatrickJahr.Blazor.ViewTransitions --version 1.0.0
#r "nuget: PatrickJahr.Blazor.ViewTransitions, 1.0.0"
// Install PatrickJahr.Blazor.ViewTransitions as a Cake Addin #addin nuget:?package=PatrickJahr.Blazor.ViewTransitions&version=1.0.0 // Install PatrickJahr.Blazor.ViewTransitions as a Cake Tool #tool nuget:?package=PatrickJahr.Blazor.ViewTransitions&version=1.0.0
PatrickJahr.Blazor.ViewTransitions
Introduction
This package should help you to use the View Transition API in your Blazor application. The package contains two ways to use the View Transition API. If you want to know how the View Transition API works look here.
Getting started
Prerequisites
You need .NET 7.0 or newer to use this library.
Download .NET 7 Download .NET 8
Platform/Browser support
Please note that View Transition API is not yet supported in all major browsers. Here, you can find the current support.
Installation
You can install the package via NuGet with the Package Manager in your IDE or alternatively using the command line:
dotnet add package PatrickJahr.Blazor.ViewTransitions
Usage
The package can be used in Blazor WebAssembly projects.
Add to service collection
To make the IViewTransitionService available on all pages, register it at the IServiceCollection in Program.cs
before the host is built:
builder.Services.AddViewTransitionService();
Add to Imports
To use the default RoutingViewTransition
component on the hole app razor files, register it in the _Imports.razor
file.
@using Pazor.ViewTransitionsApi
Routing
For this, you must add the component RoutingViewTransition
to App.razor.
<RoutingViewTransition />
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
Manual view transition
The second option is to start the View Transition API using the IViewTransitionService. The following steps are necessary for this:
- Add the IViewTransitionService to the component or class using DependencyInjection.
[Inject] private IViewTransitionService _viewTransitionService { get; set; } = default!;
To perform a view transition, use the method
StartViewTransitionAsync()
. This takes two parameters.- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method
StartViewTransitionAsync()
, passed as a task, first waits briefly before setting the necessary parameters.
private async Task ShowDialog(User user) { await _viewTransitionService.StartViewTransitionAsync( InternalShowDialog(user), CancellationToken.None); } private async Task InternalShowDialog(User user) { // New user is set and will dispatched _dialogUser = user; _dispatcher.Dispatch(new SelectUserAction(user)); // Wait for the first Screenshot of the current state await Task.Delay(32); // Reset the selected user. Because a view-transition-name css property may appear only once in the DOM. _dispatcher.Dispatch(new SelectUserAction(null)); // Wait until the state has changed. await Task.Delay(32); _showDialog = true; StateHasChanged(); }
- The second parameter is the
CancellationToken
to cancel the operation.
- The first parameter is a task. This Task specifies when the transition can be performed. That means the new view is ready, and the transition can start. Please note that the View Transition API must first take a screenshot of the current state before the DOM is changed. The following example opens a dialog. The method
That's it. Just try it out, and feel free to give feedback 😃
License and Note
BSD-3-Clause.
This is a technical showcase, not an official product.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Microsoft.AspNetCore.Components.Web (>= 7.0.17)
-
net8.0
- Microsoft.AspNetCore.Components.Web (>= 8.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 147 | 3/15/2024 |