-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Adding ReactiveOwningComponentBase #4205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
glennawatson
merged 3 commits into
reactiveui:main
from
BekAllaev:reactive-owning-component-3001
Nov 24, 2025
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,131 @@ | ||
| // Copyright (c) 2025 .NET Foundation and Contributors. All rights reserved. | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the LICENSE file in the project root for full license information. | ||
| using System.Runtime.CompilerServices; | ||
|
|
||
| using Microsoft.AspNetCore.Components; | ||
|
|
||
| namespace ReactiveUI.Blazor; | ||
|
|
||
| /// <summary> | ||
| /// A base component for handling property changes and updating the blazer view appropriately. | ||
| /// </summary> | ||
| /// <typeparam name="T">The type of view model. Must support INotifyPropertyChanged.</typeparam> | ||
| public class ReactiveOwningComponentBase<T> : OwningComponentBase<T>, IViewFor<T>, INotifyPropertyChanged, ICanActivate | ||
| where T : class, INotifyPropertyChanged | ||
| { | ||
| private readonly Subject<Unit> _initSubject = new(); | ||
| [SuppressMessage("Design", "CA2213: Dispose object", Justification = "Used for deactivation.")] | ||
| private readonly Subject<Unit> _deactivateSubject = new(); | ||
| private readonly CompositeDisposable _compositeDisposable = []; | ||
|
|
||
| private T? _viewModel; | ||
|
|
||
| /// <inheritdoc /> | ||
| public event PropertyChangedEventHandler? PropertyChanged; | ||
|
|
||
| /// <summary> | ||
| /// Gets or sets the view model associated with this component. | ||
| /// </summary> | ||
| [Parameter] | ||
| public T? ViewModel | ||
| { | ||
| get => _viewModel; | ||
| set | ||
| { | ||
| if (EqualityComparer<T?>.Default.Equals(_viewModel, value)) | ||
| { | ||
| return; | ||
| } | ||
|
|
||
| _viewModel = value; | ||
| OnPropertyChanged(); | ||
| } | ||
| } | ||
|
|
||
| /// <inheritdoc /> | ||
| object? IViewFor.ViewModel | ||
| { | ||
| get => ViewModel; | ||
| set => ViewModel = (T?)value; | ||
| } | ||
|
|
||
| /// <inheritdoc /> | ||
| public IObservable<Unit> Activated => _initSubject.AsObservable(); | ||
|
|
||
| /// <inheritdoc /> | ||
| public IObservable<Unit> Deactivated => _deactivateSubject.AsObservable(); | ||
|
|
||
| /// <inheritdoc /> | ||
glennawatson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| protected override void OnInitialized() | ||
| { | ||
| if (ViewModel is IActivatableViewModel avm) | ||
| { | ||
| Activated.Subscribe(_ => avm.Activator.Activate()).DisposeWith(_compositeDisposable); | ||
| Deactivated.Subscribe(_ => avm.Activator.Deactivate()); | ||
| } | ||
|
|
||
| _initSubject.OnNext(Unit.Default); | ||
| base.OnInitialized(); | ||
| } | ||
|
|
||
| /// <inheritdoc/> | ||
| #if NET6_0_OR_GREATER | ||
| [RequiresDynamicCode("OnAfterRender uses methods that require dynamic code generation")] | ||
| [RequiresUnreferencedCode("OnAfterRender uses methods that may require unreferenced code")] | ||
| [SuppressMessage("AOT", "IL3051:'RequiresDynamicCodeAttribute' annotations must match across all interface implementations or overrides.", Justification = "ComponentBase is an external reference")] | ||
| [SuppressMessage("Trimming", "IL2046:'RequiresUnreferencedCodeAttribute' annotations must match across all interface implementations or overrides.", Justification = "ComponentBase is an external reference")] | ||
| #endif | ||
| protected override void OnAfterRender(bool firstRender) | ||
| { | ||
| if (firstRender) | ||
| { | ||
| // The following subscriptions are here because if they are done in OnInitialized, they conflict with certain JavaScript frameworks. | ||
| var viewModelChanged = | ||
| this.WhenAnyValue<ReactiveOwningComponentBase<T>, T?>(nameof(ViewModel)) | ||
| .WhereNotNull() | ||
| .Publish() | ||
| .RefCount(2); | ||
|
|
||
| viewModelChanged | ||
| .Subscribe(_ => InvokeAsync(StateHasChanged)) | ||
| .DisposeWith(_compositeDisposable); | ||
|
|
||
| viewModelChanged | ||
| .Select(x => | ||
| Observable | ||
| .FromEvent<PropertyChangedEventHandler, Unit>( | ||
| eventHandler => | ||
| { | ||
| void Handler(object? sender, PropertyChangedEventArgs e) => eventHandler(Unit.Default); | ||
| return Handler; | ||
| }, | ||
| eh => x.PropertyChanged += eh, | ||
| eh => x.PropertyChanged -= eh)) | ||
| .Switch() | ||
| .Subscribe(_ => InvokeAsync(StateHasChanged)) | ||
| .DisposeWith(_compositeDisposable); | ||
| } | ||
|
|
||
| base.OnAfterRender(firstRender); | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Invokes the property changed event. | ||
| /// </summary> | ||
| /// <param name="propertyName">The name of the changed property.</param> | ||
| protected virtual void OnPropertyChanged([CallerMemberName] string? propertyName = null) => | ||
| PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); | ||
|
|
||
| /// <inheritdoc /> | ||
| protected override void Dispose(bool disposing) | ||
| { | ||
| if (disposing) | ||
| { | ||
| _initSubject.Dispose(); | ||
| _compositeDisposable.Dispose(); | ||
| _deactivateSubject.OnNext(Unit.Default); | ||
| } | ||
glennawatson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.