Steven T. Cramer

Results 32 comments of Steven T. Cramer

Derek, [RenderSubscriptionsPostProcessor.cs](https://github.com/TimeWarpEngineering/blazor-state/blob/70fea1e4bf3709a29492bad468e1d2f98bba80af/Source/BlazorState/Pipeline/RenderSubscriptions/RenderSubscriptionsPostProcessor.cs#L41) This particular middleware is used to enforce the constraint. And the `DeclaringType` is used by the [CloneStateBehavior](https://github.dev/TimeWarpEngineering/blazor-state/blob/02eba8edd442364af287689d7e519be609c15fff/Source/BlazorState/Pipeline/CloneState/CloneStateBehavior.cs#L56)middleware to determine what State needs to be cloned. > I have...

hmm good question. One would have to register these after the library is lazy loaded. ``` @code { private List lazyLoadedAssemblies = new(); private async Task OnNavigateAsync(NavigationContext args) { try...

@pablopioli could you please give me example of the edge cases where this would be of benefit? See Pete's Docs for nice overview of Blazor component lifecycle. https://blazor-university.com/components/component-lifecycles/

Pablo, have you looked at how the pipeline works. One can fire an event and handle this event from anywhere. This would be more in line with my objectives of...

If you go back in history of the two repositories you will see I started Blazor-State a few days before Pete started Fluxor. We hadn't talked to each other in...

@Latency I just cloned your master branch and ran the demo app and history fails. You don't have "Issues" enabled on your fork so I thought I would respond here....

> Why do you want to use this extension over the new built in feature? I can not even find docs on AddQuickFile? So how would I even know how...

> > > Why do you want to use this extension over the new built in feature? > > > > > > I can not even find docs on...

You probably are not actually using the extension. Visual studio now has a built in `AddQuickFile` feature. That overrideds the `Shift+F2` look at you keyboard bindings ![image](https://user-images.githubusercontent.com/357219/223696015-2e26ddd1-4246-4423-885d-fea645a3121e.png) To use this...