1 Critical Blazor Mistake to Avoid in 2024: Interactive Auto Render Mode

Поділитися
Вставка
  • Опубліковано 15 лис 2024

КОМЕНТАРІ • 24

  • @julienbarach6620
    @julienbarach6620 Місяць тому +12

    Finally someone talking about the main issue with the Auto mode. Blazor templates are not as ready to go (except for Server) as they were with .Net 7.
    New developers will think that Auto is the default mode and the best of both worlds but you are always dealing with two modes (Server and WASM) that are fondamentally different and no one is telling you that it's dangerous.
    API calls are one example but you'll find even more complex issues when you'll want to use localSotrage for instance.
    So be careful when you want to use the Auto mode. It's sexy on the paper but it can lead to big headhaches and too much complexity for nothing.

    • @alexmadnix
      @alexmadnix Місяць тому

      Useful information!☺

    • @DevilMadeMeDoIt666
      @DevilMadeMeDoIt666 Місяць тому

      What’s the issue with local storage?

    • @imashar
      @imashar 26 днів тому

      ​@@DevilMadeMeDoIt666You cannot access localStorage on the server.

  • @der-mit-dem-rotwild-tanzt
    @der-mit-dem-rotwild-tanzt Місяць тому +3

    This rendermode stuff is really confusing. Thanks for this great explanation and sample!

  • @SBDavin
    @SBDavin 15 днів тому

    Going out on a limb here...
    For a new "WebAssembly" or "InteractiveAuto" project, I think it's a mistake to assume the non-client project is the server. I think it's simply two client projects. Both DLLs are downloaded to the web browser with the .NET wasm runtime. The purpose of the two projects are just to break up the pages based on their render modes.
    After all, why would a server project have a reference to a client project? It's just weird. It goes against all my development experience.
    We Blazor developers continue asking the question, "What was Microsoft thinking?" while we try to make sense of the two VS projects, blaming ourselves for not understanding it and trying to mold the code into the .NET 7 project pattern.
    I think if we want a server project, we should just add a separate Web API project like in .NET 7.
    Thank you as always, Patrick.

  • @imSkod
    @imSkod Місяць тому +1

    I think this title should just be like 'how to use services in Auto rendermode' or something similar. Good explanation and video though

  • @Rks1926
    @Rks1926 Місяць тому

    Great stuff, thank you!

  • @krrk7356
    @krrk7356 Місяць тому

    How do you think it is possible to turn these 2 separate services into server and client. For separate instances of the mediator. We inject the mediator into the component. If it runs on the server then it uses the corresponding handler. If on the client, then the corresponding handler does the http query. And the controller uses the mediator from the server.

    • @webmaster4095
      @webmaster4095 Місяць тому

      Привет, рекомендую посмотреть портированную библиотеку redux-blazor. Она отлично работает с обновлением состояния.

  • @webmaster4095
    @webmaster4095 Місяць тому

    Привет, Мир! Я начал использовать Blazor 8 и столкнулся с проблемой контроля за персистентностью состояния при использовании режима AutoInteractive, где почитать/посмотреть лучшие практики по данному режиму рендеринга?

  • @bou7eliw
    @bou7eliw Місяць тому +4

    Hi, please could show us how we can do an authentification using active directory? Please

  • @tajmaut2
    @tajmaut2 Місяць тому +1

    what about it in MudBlazor??

    • @samerelsahih
      @samerelsahih Місяць тому +1

      Total chaos. I still can't seem to run it correctly on both server and client side

    • @jaytandon
      @jaytandon Місяць тому

      Agreed, hopefully dotnet 9 makes Mudblazor work better

  • @kvelez
    @kvelez 27 днів тому

    Cool

  • @Conjuredfilms
    @Conjuredfilms Місяць тому

    Hi Patrick I saw you're looking for an editor! I'm available and emailing you.

  • @Hasan10-oh7vl
    @Hasan10-oh7vl Місяць тому

    Love ittt!!!
    You need a video editor bro ?
    I can do a sample video 👊🏽

  • @mtranchi
    @mtranchi Місяць тому +2

    No way I could bring myself to make two database calls for every page load across every web app I run.

    • @kijanawoodard
      @kijanawoodard Місяць тому +1

      Wouldn’t it just be for the initial load and then you’re pure web assembly after that?

    • @mtranchi
      @mtranchi Місяць тому

      @@kijanawoodard No it doesn't work that way. Put a break point on your controller and you'll see the endpoint gets hit twice: once from the server, again from the client... though... i already can't remember how Patrick set up his code, so not sure about his implementation, lol.
      however, there's a super simple check built in to Blazor 8 where you can check if the component is being rendered on the server or in the web browser. You can use that to (pseudo code) "if(Environment.IsBrowser)" in your OnInitializedAsync to decide whether you want the db to be hit on the server or in the browser. Comment on this, when i get a chance, i'll find it, post it back here

    • @markhill1066
      @markhill1066 Місяць тому +2

      Your not supposed to, the first database call which happens via SSR fetches the data which is then added to the persistent state. When the component/page is loaded in wasm it loads data from the persistent state. So SSR is for the initial load, WASM handles incremental updates.

    • @mtranchi
      @mtranchi Місяць тому

      @@markhill1066That's the way it should be, but not according to my break-point when debugging. The `controller` `action` that fetches the data from the db gets hit twice, 100% certain it is so in Blazor 8 because i've spent copious hours working to eliminate one of the calls.