GithubHelp home page GithubHelp logo

cornflourblue / blazor-webassembly-registration-login-example Goto Github PK

View Code? Open in Web Editor NEW
87.0 6.0 61.0 4.92 MB

ASP.NET Core Blazor WebAssembly - User Registration and Login Example

Home Page: https://jasonwatmore.com/post/2020/11/09/blazor-webassembly-user-registration-and-login-example-tutorial

License: MIT License

HTML 39.60% C# 56.13% CSS 4.27%

blazor-webassembly-registration-login-example's Introduction

blazor-webassembly-registration-login-example's People

Contributors

cornflourblue avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

blazor-webassembly-registration-login-example's Issues

Bug: unknown error when logout if MainLayout reads user info

I have changed the MainLayout.razor to the following:

@inherits LayoutComponentBase

@using Services
@inject IAccountService AccountService

<div class="page">
    <div class="sidebar">
        <NavMenu />
    </div>

    <div class="main">
        <div class="top-row px-4">
            @if (AccountService.User != null)
            {
                <NavLink href="users/selfedit" class="nav-item nav-link">@AccountService.User.Username</NavLink>
                <NavLink href="account/logout" class="nav-item nav-link">Logout</NavLink>
            }
            else
            {
                <NavLink href="account/login" class="nav-item nav-link">Login</NavLink>
            }
            <a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
        </div>

        <div class="content px-4">
            <div class="float-right">
                <Alert />
            </div>
            @Body
        </div>
    </div>
</div>

Until adding the line:

<NavLink href="users/selfedit" class="nav-item nav-link">@AccountService.User.Username</NavLink>

... the logout process works well.

The error seems to originate from class LocalStorageService. The error goes:

An exception of type 'System.InvalidOperationException' occurred in System.Private.CoreLib.dll but was not handled in user code: 'JavaScript interop calls cannot be issued at this time. This is because the component is being statically rendered. When prerendering is enabled, JavaScript interop calls can only be performed during the OnAfterRenderAsync lifecycle method.

But I do not quite comprehend that error.

I have considered changing LocalStorageService to singleton, but the JSRuntime is a scoped service that should have been a singleton instead.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.