2using System.Collections.Generic;
6using Microsoft.AspNetCore.Components.Forms;
13 public static class EditContextCslaExtensions
19 public static EditContext AddCslaValidation(
this EditContext editContext)
21 if (editContext ==
null)
23 throw new ArgumentNullException(nameof(editContext));
26 var messages =
new ValidationMessageStore(editContext);
29 editContext.OnValidationRequested +=
30 (sender, eventArgs) => ValidateModel((EditContext)sender, messages);
33 editContext.OnFieldChanged +=
34 (sender, eventArgs) => ValidateField(editContext, messages, eventArgs.FieldIdentifier);
45 private static void ValidateModel(EditContext editContext, ValidationMessageStore messages)
53 foreach (var brokenRule
in brokenRuleNode.BrokenRules)
57 messages.Add(
new FieldIdentifier(brokenRuleNode.Object, brokenRule.Property), brokenRule.Description);
63 editContext.NotifyValidationStateChanged();
73 private static void ValidateField(EditContext editContext, ValidationMessageStore messages, in FieldIdentifier fieldIdentifier)
78 messages.Clear(fieldIdentifier);
79 foreach (
BrokenRule brokenRule
in model.GetBrokenRules())
83 if (fieldIdentifier.FieldName.Equals(brokenRule.
Property))
86 messages.Add(fieldIdentifier, brokenRule.
Description);
94 editContext.NotifyValidationStateChanged();
Stores details about a specific broken business rule.
string Property
Provides access to the property affected by the broken rule.
string Description
Provides access to the description of the broken rule.
RuleSeverity Severity
Gets the severity of the broken rule.
Tracks the business rules for a business object.
static BrokenRulesTree GetAllBrokenRules(object root)
Gets all nodes in tree that have IsValid = false (and all parents)
Defines the common methods for any business object which exposes means to supress and check business ...
RuleSeverity
Values for validation rule severities.