ViewModel validations
No edit summary
No edit summary
Tag: 2017 source edit
 
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Validations exist to enforce a set of rules that apply to a specific use case. A use case is implemented by a ViewModel, so the ViewModel needs Validations.
Validations exist to enforce a set of rules that apply to a specific use case. A use case is implemented by a ViewModel, so the ViewModel needs validations.


This is how you add them in the ViewModelEditor:
This is how to add them in the ViewModelEditor:


[[File:Valid -1.png|frameless|334x334px]]
[[File:Valid -1.png|frameless|334x334px]]
Line 20: Line 20:


All these apply to the web interface.  
All these apply to the web interface.  
(Example)


== WPF Implementation ==
== WPF Implementation ==
Line 52: Line 50:


== Validation Rules in the ViewModel ==
== Validation Rules in the ViewModel ==
In a ViewModel, you can add validation rules that will create messages when some data is not properly enteredAdd a validation rule and name it.  For example here int out of range and an expression. So here self-docked and then in this case some int roger than phi. That is the root and the message to show the int count be more than phiSo this is a message that will show up next to this control here when I have connected it to this control.  Right-click on some int validation rules. Clicking on this one will select it. Verify that it now has a checkmark. This some int will now show this. If we go back to the validation rules, you can see that it has one column connected to it.  So you can connect this rule to any number of controls that you want to be affected by thisA more general rule could select several.   
You can add validation rules in a ViewModel that will generate error messages when some data is improperly entered. Name and connect this rule to any number of controls you want to be affected by this.   
 
If you have constraints, you should not repeat expressions   
* Look up the constraint to ensure that it is not broken.      
* Create a method to verify the validity of the constraint by providing the constraint name as a string and returning a boolean.    
This helps in linking the constraints in the class with the validations in the ViewModel.    
 
If we look up the name of the constraint, it should not be empty because we need to find the constraint to be sure we specified the right constraint. We should also check that it's not broken. If it is incorrectly specified, the whole expression will be false and we will get notified with constant problems, which can be seen in the user interface.     


If you have constraints, you should not repeat expressions.  Instead, let's create a constraint on the thing class.  So here again not more than 5 we call it and here the value should not exceed 5 and basically the same expression save some int roger than 5 and here we say that this is an error level. Let's say instead this is warning level. Now we have this as a rule on the class. Each view.  So here this expression should not be here. We should use the concept of looking up if we have broken the constraint.  So let's say we take the constraint name.  To this and we say instead self const range.  So this is all the constraints and we select the constraint with a name no more than  5.  And then we check if it is broken. First.  So take all the constraints.  Select the one that is not more than 5.  Then we have created.  Take the first one just to get one because we know it will only be one and check if it's broken.  And in this case, it's actually the opposite.  So we need to say not broken.  So if it's not broken then it's okay.  This might seem like it's too long here.  This is more complicated than what we started with.  But it is not repeating the same thing again.  We could also take this expression and add a method to a thing called check constraint valid.  Some of constraint which is a string.  And it should return a boolean.  So constraint valid name or constraint which is a string and returns a boolean.  We make it a query.  Otherwise, we can't use it in OCL. 
This is a good way to link together constraints in the class with validations in the ViewModel.        


Then we put the body. The body here is very similar to what we had before.  So here we take the name of the constraint.  So now we're looking this up and we are returning if it's not broken.  We could also of course phrase this as maybe that's better to say that this constraint and constraint and it's not broken.  Because then we could here say that this is empty.  Now, self constraints and the name equal the name of the constraint and are not broken.  We should also add here for extra protection.  Copy of that that says we should find this.  If we look up the name of the constraint, it should not be empty.  Because we need to find the constraint to be sure that we had specified the right constraint. We should also check that it's not broken. We go back to the ViewModel.  We can change this to self.com.  And then the name.  This is a very compact way of writing it and it can be reused over and over. If this is incorrect, it specifies that the whole expression will be false and we will get notified with constant problems showing the user interface.  This is a good way to link together constraints in the class with validations in the ViewModel.  
'''To learn more about this, watch this video:'''  
<html>
<div class="video">
  <div class="video__wrapper">
    <iframe src="https://www.youtube.com/embed/CkA8qQWqSUg?si=C5aN_7XBfzD3E8Ct" title="YouTube video player" frameborder="0" allowfullscreen></iframe>
  </div>


=== Watch the Video ===
</html>    
 
[[Category:View Model]]
[[Category:View Model]]
[[Category:Validation rules]]
[[Category:Validation rules]]
{{Edited|July|12|2024}}

Latest revision as of 06:05, 12 March 2024

Validations exist to enforce a set of rules that apply to a specific use case. A use case is implemented by a ViewModel, so the ViewModel needs validations.

This is how to add them in the ViewModelEditor:

Valid -1.png

You will get a new row in the Validations list. Fill in the rule name and the expression that should evaluate to true when the rule is fulfilled, and false when data breaks the rule. Also, provide a text with the error message you want to show.

The context of the rule is the context of the Main ViewModelClass; this means that you reach variables etc.

Valid -2.png

You can have as many rules as you need.

The rule state (true or false) can then be displayed by one or multiple columns. Right-click a ViewModelColumn and check the correct rule to make an association between the two:

Valid -4.png

Once the association is made and a rule break is discovered in runtime, a standard WPF ValidationError will occur. How this ValidationError is displayed is defined by styles.

All these apply to the web interface.

WPF Implementation

In WPF, I added a default style – override it if you need to – that brings up a tooltip, draws an exclamation mark behind the offending control, and draws a red border around the value.

The default style is defined like this:

Code Snippet

<ControlTemplate x:Key="validationTemplate">
  <DockPanel>
    <Border BorderBrush="Red" BorderThickness="2" CornerRadius="4,4,4,4"  >
      <AdornedElementPlaceholder/>
    </Border>
    <TextBlock Foreground="Red" VerticalAlignment="Center" FontWeight="ExtraBold" Margin="4">!</TextBlock>
  </DockPanel>
</ControlTemplate>

<Style TargetType="TextBox">
  <Setter Property="Validation.ErrorTemplate" Value="{StaticResource validationTemplate}">
  </Setter>
  <Style.Triggers>
    <Trigger Property="Validation.HasError" Value="true">
      <Setter Property="TextBox.ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].ErrorContent}"/>
    </Trigger>
  </Style.Triggers>
</Style>

When the rule is broken, it looks like this in runtime:

Valid -5.png

Validation Rules in the ViewModel

You can add validation rules in a ViewModel that will generate error messages when some data is improperly entered. Name and connect this rule to any number of controls you want to be affected by this.   

If you have constraints, you should not repeat expressions.     

  • Look up the constraint to ensure that it is not broken.    
  • Create a method to verify the validity of the constraint by providing the constraint name as a string and returning a boolean.    

This helps in linking the constraints in the class with the validations in the ViewModel.    

If we look up the name of the constraint, it should not be empty because we need to find the constraint to be sure we specified the right constraint. We should also check that it's not broken. If it is incorrectly specified, the whole expression will be false and we will get notified with constant problems, which can be seen in the user interface.   

This is a good way to link together constraints in the class with validations in the ViewModel.       

To learn more about this, watch this video:

    

This page was edited 70 days ago on 03/12/2024. What links here