Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change layout in Blazor page based on URL

Tags:

blazor

We are exploring whether we can slowly migrate an old WinForms application to be a blazor web application.

Until the entire application would be migrated, we will expose each forms functionality as a blazor page one at a time. If the web application is missing (not yet implemented) functionality, the users can open the full WinFroms app to get what they need done.

To make this work, I would like to have one page that has different layouts depending on what UI client is accessing the page. So if you are accessing via the web, it should display the nav menu, header footer, etc... If it's being accessed as an embedded WebControl2 view within the Winforms app (I don't want to duplicate code across the 2 platforms) then all the navbar/header/footer stuff should be gone because the Winforms app assumes that functionality.

My initial idea was to do have 2 URLs that go to the same page and have the page apply a different layout depending on whether the web app was used (the navLinks would use the 'employees' url) or whether the Winforms app was accessing it (the winforms app would load the '/winforms/employees' url) like this:

@page "/employees"
@page "/winforms/employees"


@inject NavigationManager MyNavigationManager

@if (MyNavigationManager.Uri.Contains("winforms"))
{
    @layout AppHostLayout
}
else
{
    @layout MainLayout
}

However this does not work because you can only have ONE layout directive per page.

Is there a better and/or blazor-specific way to achieve my desired outcome?

like image 267
Bitfiddler Avatar asked Sep 03 '20 00:09

Bitfiddler


People also ask

How do you navigate to another page in Blazor with parameter?

By using Blazor route parameters, you can pass values from one page to another page. Use NavigationManager to pass a value and route the parameter to another page. Follow this example to achieve passing values from one page to another. Get the passed Page1 parameter value in Page2.

How do I create a Blazor page?

To create a page in Blazor, create a component and add the @page Razor directive to specify the route for the component. The @page directive takes a single parameter, which is the route template to add to that component. The route template parameter is required.

How can I get current page name in Blazor?

You can get the current page title in Blazor by using the “title” property of the document object in JavaScript and by using a . JavaScript interop since there is no DOM accessibility in Blazor.


1 Answers

I wish I spent a few more minutes thinking about this. The solution is rather simple.

Put the logic of which layout you want in the MainLayout.razor file:

@inherits LayoutComponentBase
@inject NavigationManager _navManager

@if (_navManager.Uri.Contains("winforms"))
{
    <div class="main">
        <div class="content px-4">
            @Body
        </div>
    </div>
}
else
{
    <div class="sidebar">
        <NavMenu />
    </div>

    <div class="main">
        <div class="top-row px-4 auth">
            <LoginDisplay />
            <a href="https://learn.microsoft.com/aspnet/" target="_blank">About</a>
        </div>

        <div class="content px-4">
            @Body
        </div>
    </div>
}

Then you just have both page directives in your Page.razor file:

@page "/employees"
@page "/winforms/employees"

Works like a charm!

like image 95
Bitfiddler Avatar answered Oct 08 '22 03:10

Bitfiddler