CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
EditContextCslaExtensions.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Csla.Core;
5using Csla.Rules;
6using Microsoft.AspNetCore.Components.Forms;
7
8namespace Csla.Blazor
9{
13 public static class EditContextCslaExtensions
14 {
19 public static EditContext AddCslaValidation(this EditContext editContext)
20 {
21 if (editContext == null)
22 {
23 throw new ArgumentNullException(nameof(editContext));
24 }
25
26 var messages = new ValidationMessageStore(editContext);
27
28 // Perform object-level validation on request
29 editContext.OnValidationRequested +=
30 (sender, eventArgs) => ValidateModel((EditContext)sender, messages);
31
32 // Perform per-field validation on each field edit
33 editContext.OnFieldChanged +=
34 (sender, eventArgs) => ValidateField(editContext, messages, eventArgs.FieldIdentifier);
35
36 return editContext;
37 }
38
45 private static void ValidateModel(EditContext editContext, ValidationMessageStore messages)
46 {
47 if (editContext.Model is ICheckRules model)
48 {
49 // Transfer broken rules of severity Error to the ValidationMessageStore
50 messages.Clear();
51 foreach (var brokenRuleNode in BusinessRules.GetAllBrokenRules(model))
52 {
53 foreach (var brokenRule in brokenRuleNode.BrokenRules)
54 if (brokenRule.Severity == RuleSeverity.Error)
55 {
56 // Add a new message for each broken rule
57 messages.Add(new FieldIdentifier(brokenRuleNode.Object, brokenRule.Property), brokenRule.Description);
58 }
59 }
60 }
61
62 // Inform consumers that the state may have changed
63 editContext.NotifyValidationStateChanged();
64 }
65
73 private static void ValidateField(EditContext editContext, ValidationMessageStore messages, in FieldIdentifier fieldIdentifier)
74 {
75 if (fieldIdentifier.Model is ICheckRules model)
76 {
77 // Transfer any broken rules of severity Error for the required property to the store
78 messages.Clear(fieldIdentifier);
79 foreach (BrokenRule brokenRule in model.GetBrokenRules())
80 {
81 if (brokenRule.Severity == RuleSeverity.Error)
82 {
83 if (fieldIdentifier.FieldName.Equals(brokenRule.Property))
84 {
85 // Add a message for each broken rule on the property under validation
86 messages.Add(fieldIdentifier, brokenRule.Description);
87 }
88 }
89 }
90 }
91
92 // We have to notify even if there were no messages before and are still no messages now,
93 // because the "state" that changed might be the completion of some async validation task
94 editContext.NotifyValidationStateChanged();
95 }
96 }
97}
Stores details about a specific broken business rule.
Definition: BrokenRule.cs:19
string Property
Provides access to the property affected by the broken rule.
Definition: BrokenRule.cs:65
string Description
Provides access to the description of the broken rule.
Definition: BrokenRule.cs:55
RuleSeverity Severity
Gets the severity of the broken rule.
Definition: BrokenRule.cs:77
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 ...
Definition: ICheckRules.cs:18
RuleSeverity
Values for validation rule severities.
Definition: RuleSeverity.cs:16