@@ -13,16 +13,22 @@ namespace Morris.Blazor.FluentValidation
13
13
{
14
14
public class FluentValidationValidatorProvider : IValidationProvider
15
15
{
16
- public void InitializeEditContext (
16
+ private Func < object , object > OnTransformModel { get ; set ; } = null ;
17
+
18
+ public void InitializeEditContext
19
+ (
17
20
EditContext editContext ,
18
21
IServiceProvider serviceProvider ,
19
- ValidationProperties properties )
22
+ ValidationProperties properties ,
23
+ Func < object , object > transformModel = null
24
+ )
20
25
{
21
26
if ( editContext == null )
22
27
throw new ArgumentNullException ( nameof ( editContext ) ) ;
23
28
if ( serviceProvider == null )
24
29
throw new ArgumentNullException ( nameof ( serviceProvider ) ) ;
25
30
properties ??= ValidationProperties . Set ;
31
+ OnTransformModel = transformModel ;
26
32
27
33
var messages = new ValidationMessageStore ( editContext ) ;
28
34
editContext . OnValidationRequested +=
@@ -56,9 +62,11 @@ private async Task ValidateModel(
56
62
messages . Clear ( ) ;
57
63
editContext . NotifyValidationStateChanged ( ) ;
58
64
59
- IEnumerable < IValidator > validators = GetValidatorsForObject ( editContext . Model , serviceProvider ) ;
65
+ object transformedModel = GetTransformedModel ( editContext . Model ) ;
66
+
67
+ IEnumerable < IValidator > validators = GetValidatorsForObject ( transformedModel , serviceProvider ) ;
60
68
61
- var validationContext = new ValidationContext < object > ( editContext . Model ) ;
69
+ var validationContext = new ValidationContext < object > ( transformedModel ) ;
62
70
63
71
var validationResults = new List < ValidationResult > ( ) ;
64
72
foreach ( IValidator validator in validators )
@@ -70,13 +78,17 @@ private async Task ValidateModel(
70
78
IEnumerable < ValidationFailure > validationFailures = validationResults . SelectMany ( x => x . Errors ) ;
71
79
foreach ( var validationError in validationFailures )
72
80
{
73
- GetParentObjectAndPropertyName ( editContext . Model , validationError . PropertyName , out object parentObject , out string propertyName ) ;
81
+ GetParentObjectAndPropertyName ( transformedModel , validationError . PropertyName , out object parentObject , out string propertyName ) ;
74
82
if ( parentObject != null )
75
83
messages . Add ( new FieldIdentifier ( parentObject , propertyName ) , validationError . ErrorMessage ) ;
76
84
}
77
85
78
86
editContext . NotifyValidationStateChanged ( ) ;
79
87
}
88
+ private object GetTransformedModel ( object model )
89
+ {
90
+ return OnTransformModel is not null ? OnTransformModel ( model ) : model ;
91
+ }
80
92
81
93
private void GetParentObjectAndPropertyName (
82
94
object model ,
@@ -120,11 +132,13 @@ private void GetParentObjectAndPropertyName(
120
132
propertyName = propertyPathParts . Dequeue ( ) ;
121
133
}
122
134
123
- private async Task ValidateField (
135
+ private async Task ValidateField
136
+ (
124
137
EditContext editContext ,
125
138
ValidationMessageStore messages ,
126
139
FieldIdentifier fieldIdentifier ,
127
- IServiceProvider serviceProvider )
140
+ IServiceProvider serviceProvider
141
+ )
128
142
{
129
143
if ( editContext == null )
130
144
throw new ArgumentNullException ( nameof ( editContext ) ) ;
@@ -135,18 +149,19 @@ private async Task ValidateField(
135
149
if ( editContext . Model == null )
136
150
throw new NullReferenceException ( $ "{ nameof ( editContext ) } .{ nameof ( editContext . Model ) } ") ;
137
151
152
+ object transformedModel = GetTransformedModel ( editContext . Model ) ;
138
153
var propertiesToValidate = new string [ ] { fieldIdentifier . FieldName } ;
139
- var fluentValidationContext =
154
+ var fluentValidationContext =
140
155
new ValidationContext < object > (
141
- instanceToValidate : fieldIdentifier . Model ,
156
+ instanceToValidate : transformedModel ,
142
157
propertyChain : new PropertyChain ( ) ,
143
158
validatorSelector : new MemberNameValidatorSelector ( propertiesToValidate )
144
159
) ;
145
160
146
161
messages . Clear ( fieldIdentifier ) ;
147
162
editContext . NotifyValidationStateChanged ( ) ;
148
163
149
- IEnumerable < IValidator > validators = GetValidatorsForObject ( fieldIdentifier . Model , serviceProvider ) ;
164
+ IEnumerable < IValidator > validators = GetValidatorsForObject ( transformedModel , serviceProvider ) ;
150
165
var validationResults = new List < ValidationResult > ( ) ;
151
166
152
167
foreach ( IValidator validator in validators )
0 commit comments