You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The ValidationRule extension methods added in #130 only accept and IValidationState, more usefully, they should accept any object/struct that implements that interface (including ValidationState).
Describe the solution you'd like
Adding the following 2 overloads will significantly increase the usability of the API:
/// <summary>/// Setup a validation rule with a general observable based on <see cref="IValidationState"/>./// </summary>/// <typeparam name="TViewModel">ViewModel type.</typeparam>/// <typeparam name="TValue">Validation observable type.</typeparam>/// <param name="viewModel">ViewModel instance.</param>/// <param name="validationObservable">Observable to define if the viewModel is valid or not.</param>/// <returns>Returns a <see cref="ValidationHelper"/> object.</returns>/// <remarks>/// It should be noted that the observable should provide an initial value, otherwise that can result/// in an inconsistent performance./// </remarks>publicstaticValidationHelperValidationRule<TViewModel,TValue>(thisTViewModelviewModel,IObservable<TValue>validationObservable)whereTViewModel:IReactiveObject,IValidatableViewModelwhereTValue:IValidationState{if(viewModelisnull){thrownewArgumentNullException(nameof(viewModel));}if(validationObservableisnull){thrownewArgumentNullException(nameof(validationObservable));}returnviewModel.RegisterValidation(newObservableValidation<TViewModel,bool>(validationObservable.Select(s =>sasIValidationState)));}/// <summary>/// Setup a validation rule with a general observable based on <see cref="IValidationState"/>./// </summary>/// <typeparam name="TViewModel">ViewModel type.</typeparam>/// <typeparam name="TViewModelProp">ViewModel property type.</typeparam>/// <typeparam name="TValue">Validation observable type.</typeparam>/// <param name="viewModel">ViewModel instance.</param>/// <param name="viewModelProperty">ViewModel property referenced in viewModelObservableProperty.</param>/// <param name="validationObservable">Observable to define if the viewModel is valid or not.</param>/// <returns>Returns a <see cref="ValidationHelper"/> object.</returns>/// <remarks>/// It should be noted that the observable should provide an initial value, otherwise that can result/// in an inconsistent performance./// </remarks>publicstaticValidationHelperValidationRule<TViewModel,TViewModelProp,TValue>(thisTViewModelviewModel,Expression<Func<TViewModel,TViewModelProp>>viewModelProperty,IObservable<TValue>validationObservable)whereTViewModel:IReactiveObject,IValidatableViewModelwhereTValue:IValidationState{if(viewModelisnull){thrownewArgumentNullException(nameof(viewModel));}if(viewModelPropertyisnull){thrownewArgumentNullException(nameof(viewModelProperty));}if(validationObservableisnull){thrownewArgumentNullException(nameof(validationObservable));}returnviewModel.RegisterValidation(newObservableValidation<TViewModel,bool,TViewModelProp>(viewModelProperty,validationObservable.Select(v =>vasIValidationState)));}
These will now accept observables such as IObservable<ValidationState.
Describe alternatives you've considered
Without these methods consumers need to write code like this:
Is your feature request related to a problem? Please describe.
The
ValidationRule
extension methods added in #130 only accept andIValidationState
, more usefully, they should accept any object/struct that implements that interface (includingValidationState
).Describe the solution you'd like
Adding the following 2 overloads will significantly increase the usability of the API:
These will now accept observables such as
IObservable<ValidationState
.Describe alternatives you've considered
Without these methods consumers need to write code like this:
Describe suggestions on how to achieve the feature
Implementation above.
The text was updated successfully, but these errors were encountered: