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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PatrickJahr.Blazor.ViewTransitions" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PatrickJahr.Blazor.ViewTransitions --version 1.0.0
#r "nuget: PatrickJahr.Blazor.ViewTransitions, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

NuGet Downloads (official NuGet)

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.

https://github.com/PatrickJahr/PatrickJahr.Blazor/assets/16818441/5a56379d-5e82-4f4c-a228-e8f2a6598254

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.

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 98 3/15/2024