Create and Call Functions
Introduction
Functions are methods you build yourself and are comparable to JavaScript functions. They are a set of statements that perform a task or calculate a value and are useful to combine some functionality that you use multiple times in your ruleset. For example, let's assume that the travel insurance calculator needs to add extra costs depending on age that applies to both insurance and extra costs:
18 - 30
0.15
31 - 50
0.10
51 and older
0.05
You can wrap this up in an expression like this:
And add this to both rules in Travel insurance calculator
so that they use the extraCosts
variable in their calculation.
But this has a major downside: if something changes to the age categories, you have to modify every rule where this code is used. In that case, it's better to create a function that calculates the extra costs, which you can (re)use from anywhere in your ruleset. If then something changes to the age categories, you only have to modify the function.
By the end of this tutorial, you'll know how to:
Create a function.
Call a function from a rule.
Create and call functions
Task: Add extra input and constants
Start with creating the following input and constants in your Travel insurance calculator
ruleset:
Input
DateOfBirth
date
Constants
ExtraCostPerDay18_30
Simple
0.15
ExtraCostPerDay31_50
Simple
0.10
ExtraCostPerDay51AndUp
Simple
0.05
Task: Create a function to calculate extra costs
Like methods, functions need input to operate on, and an input for a function is called a parameter. So when calling a function, you supply its parameters, and the function returns a calculated or determined result.
Create a function named
AgeSurcharge
, and in the Return type list, selectnumber
.Click Add parameter. ↳ Rulecube adds a parameter row:
In the Name field, enter
age
, and in the Type list, selectnumber
.Add a second parameter named
numberOfDays
, and set its Type tonumber
.In the Function body, copy and paste the following function:
Explanation: Lines 1, 4 and 7 check the
age
parameter and lines 2, 5 and 8 calculate andreturn
the result using the correct constant. IMPORTANT: Do not worry about the code if you do not fully understand it right now, in the next lesson we will replace this with a better and easier to understand solution!Click Save. ↳ The function is ready for calling now.
Task: Add an Age rule
To prevent us from repeating ourselves, let's first create a rule that pre-calculates the current age based on the DateOfBirth
input.
Add a new rule named
Age
with the following expression:Disable the "Output" checkbox
Task: Call the AgeSurcharge
function within your ruleset
AgeSurcharge
function within your rulesetOpen the
InsuranceCosts
rule.Change the expression to this code:
Now change the expression for the
ElectronicDeviceCosts
rule to this code:Save your ruleset and try it out in the sandbox.
Recap
You've created functions that further sophisticate your rulesets and accelerate your development cycle.
What's next?
So far, you've worked with separated input, constants, and rules. But Rulecube has the entities component in which input, constants, and rules can be combined. This improves the manageability of your rulesets and is the most natural/logical way to implement a business rule in a ruleset.