Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
601ffc74b1 | |||
5c1beec833 | |||
15c865c141 | |||
5434e01075 | |||
a1c6dda548 | |||
8b83ff0387 | |||
a8efd22ca8 | |||
376a8c3113 | |||
fcd50a780a | |||
875c06f86c | |||
0a8e4a3517 | |||
8b9dec976c | |||
1493848dc8 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -15,8 +15,6 @@ node_modules/
|
||||
|
||||
# builds
|
||||
dist/
|
||||
dist_web/
|
||||
dist_serve/
|
||||
dist_ts_web/
|
||||
dist_*/
|
||||
|
||||
# custom
|
@ -12,29 +12,35 @@ stages:
|
||||
- release
|
||||
- metadata
|
||||
|
||||
before_script:
|
||||
- npm install -g @shipzone/npmci
|
||||
|
||||
# ====================
|
||||
# security stage
|
||||
# ====================
|
||||
mirror:
|
||||
auditProductionDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci git mirror
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --production --ignore-scripts
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=prod --production
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
allow_failure: true
|
||||
|
||||
snyk:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:snyk
|
||||
auditDevDependencies:
|
||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
||||
stage: security
|
||||
script:
|
||||
- npmci npm prepare
|
||||
- npmci command npm install --ignore-scripts
|
||||
- npmci command snyk test
|
||||
- npmci command npm config set registry https://registry.npmjs.org
|
||||
- npmci command npm audit --audit-level=high --only=dev
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
allow_failure: true
|
||||
|
||||
# ====================
|
||||
# test stage
|
||||
@ -49,9 +55,7 @@ testStable:
|
||||
- npmci npm test
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- priv
|
||||
|
||||
testBuild:
|
||||
stage: test
|
||||
@ -62,9 +66,7 @@ testBuild:
|
||||
- npmci command npm run build
|
||||
coverage: /\d+.?\d+?\%\s*coverage/
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
- notpriv
|
||||
|
||||
release:
|
||||
stage: release
|
||||
@ -84,11 +86,12 @@ release:
|
||||
codequality:
|
||||
stage: metadata
|
||||
allow_failure: true
|
||||
only:
|
||||
- tags
|
||||
script:
|
||||
- npmci command npm install -g tslint typescript
|
||||
- npmci command npm install -g typescript
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
@ -108,11 +111,10 @@ trigger:
|
||||
pages:
|
||||
stage: metadata
|
||||
script:
|
||||
- npmci node install lts
|
||||
- npmci command npm install -g @gitzone/tsdoc
|
||||
- npmci node install stable
|
||||
- npmci npm prepare
|
||||
- npmci npm install
|
||||
- npmci command tsdoc
|
||||
- npmci command npm run buildDocs
|
||||
tags:
|
||||
- lossless
|
||||
- docker
|
||||
|
24
.vscode/launch.json
vendored
24
.vscode/launch.json
vendored
@ -2,28 +2,10 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "current file",
|
||||
"type": "node",
|
||||
"command": "npm test",
|
||||
"name": "Run npm test",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"${relativeFile}"
|
||||
],
|
||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"protocol": "inspector",
|
||||
"internalConsoleOptions": "openOnSessionStart"
|
||||
},
|
||||
{
|
||||
"name": "test.ts",
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"args": [
|
||||
"test/test.ts"
|
||||
],
|
||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"protocol": "inspector",
|
||||
"internalConsoleOptions": "openOnSessionStart"
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
@ -11,7 +11,13 @@
|
||||
},
|
||||
"gitzone": {
|
||||
"type": "object",
|
||||
"description": "settings for gitzone"
|
||||
"description": "settings for gitzone",
|
||||
"properties": {
|
||||
"projectType": {
|
||||
"type": "string",
|
||||
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
1
dist_ts/index.d.ts
vendored
Normal file
1
dist_ts/index.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export * from './smartrule.classes.smartrule.js';
|
2
dist_ts/index.js
Normal file
2
dist_ts/index.js
Normal file
@ -0,0 +1,2 @@
|
||||
export * from './smartrule.classes.smartrule.js';
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtDQUFrQyxDQUFDIn0=
|
11
dist_ts/smartrule.classes.rule.d.ts
vendored
Normal file
11
dist_ts/smartrule.classes.rule.d.ts
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { SmartRule } from './smartrule.classes.smartrule.js';
|
||||
export declare type TTreeActionResult = 'continue' | 'apply-continue' | 'apply-stop' | 'stop';
|
||||
export declare type TActionFunc<T = any> = (objectArg: T) => Promise<any>;
|
||||
export declare type TCheckFunc<T> = (objectArg: T) => Promise<TTreeActionResult>;
|
||||
export declare class Rule<T> {
|
||||
smartRuleRef: SmartRule<T>;
|
||||
priority: number;
|
||||
checkFunction: TCheckFunc<T>;
|
||||
actionFunction: TActionFunc;
|
||||
constructor(smartRuleRef: SmartRule<T>, priorityArg: number, checkFunctionArg: TCheckFunc<T>, actionFunctionArg: TActionFunc);
|
||||
}
|
11
dist_ts/smartrule.classes.rule.js
Normal file
11
dist_ts/smartrule.classes.rule.js
Normal file
@ -0,0 +1,11 @@
|
||||
import './smartrule.plugins.js';
|
||||
import './smartrule.classes.smartrule.js';
|
||||
export class Rule {
|
||||
constructor(smartRuleRef, priorityArg, checkFunctionArg, actionFunctionArg) {
|
||||
this.smartRuleRef = smartRuleRef;
|
||||
this.priority = priorityArg;
|
||||
this.checkFunction = checkFunctionArg;
|
||||
this.actionFunction = actionFunctionArg;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRydWxlLmNsYXNzZXMucnVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3NtYXJ0cnVsZS5jbGFzc2VzLnJ1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBeUIsd0JBQXdCLENBQUM7QUFDbEQsT0FBMEIsa0NBQWtDLENBQUM7QUFPN0QsTUFBTSxPQUFPLElBQUk7SUFNZixZQUNFLFlBQTBCLEVBQzFCLFdBQW1CLEVBQ25CLGdCQUErQixFQUMvQixpQkFBOEI7UUFFOUIsSUFBSSxDQUFDLFlBQVksR0FBRyxZQUFZLENBQUM7UUFDakMsSUFBSSxDQUFDLFFBQVEsR0FBRyxXQUFXLENBQUM7UUFDNUIsSUFBSSxDQUFDLGFBQWEsR0FBRyxnQkFBZ0IsQ0FBQztRQUN0QyxJQUFJLENBQUMsY0FBYyxHQUFHLGlCQUFpQixDQUFDO0lBQzFDLENBQUM7Q0FDRiJ9
|
10
dist_ts/smartrule.classes.smartrule.d.ts
vendored
Normal file
10
dist_ts/smartrule.classes.smartrule.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { Rule, TCheckFunc, TActionFunc } from './smartrule.classes.rule.js';
|
||||
export declare class SmartRule<T> {
|
||||
rules: Array<Rule<T>>;
|
||||
/**
|
||||
* makes a decision based on the given obect and the given rules
|
||||
* @param objectArg
|
||||
*/
|
||||
makeDecision(objectArg: T): Promise<void>;
|
||||
createRule(priorityArg: number, checkFunctionArg: TCheckFunc<T>, actionFunctionArg: TActionFunc): void;
|
||||
}
|
69
dist_ts/smartrule.classes.smartrule.js
Normal file
69
dist_ts/smartrule.classes.smartrule.js
Normal file
@ -0,0 +1,69 @@
|
||||
import './smartrule.plugins.js';
|
||||
import { Rule } from './smartrule.classes.rule.js';
|
||||
export class SmartRule {
|
||||
constructor() {
|
||||
this.rules = [];
|
||||
}
|
||||
/**
|
||||
* makes a decision based on the given obect and the given rules
|
||||
* @param objectArg
|
||||
*/
|
||||
async makeDecision(objectArg) {
|
||||
// lets sort the rules
|
||||
this.rules = this.rules.sort((a, b) => {
|
||||
if (a.priority > b.priority) {
|
||||
return 1;
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
});
|
||||
// gets the next batch with the same priority
|
||||
const getNextParallelBatch = (priorityStart) => {
|
||||
return this.rules.filter(rule => {
|
||||
return rule.priority === priorityStart;
|
||||
});
|
||||
};
|
||||
// lets run the checks
|
||||
const runNextBatch = async (startPriority, runRulesAmount) => {
|
||||
const nextBatch = getNextParallelBatch(startPriority);
|
||||
runRulesAmount = runRulesAmount + nextBatch.length;
|
||||
const outcomes = [];
|
||||
for (const rule of nextBatch) {
|
||||
const checkResult = await rule.checkFunction(objectArg);
|
||||
checkResult
|
||||
? null
|
||||
: console.log('WARNING!!! Please make sure your rule always returns a statement of how to continue!');
|
||||
if (checkResult.startsWith('apply')) {
|
||||
await rule.actionFunction(objectArg); // here the action function is run
|
||||
}
|
||||
outcomes.push(checkResult);
|
||||
}
|
||||
if (outcomes.length > 0) {
|
||||
const finalOutcomeOfBatch = outcomes.reduce((previous, current, index, array) => {
|
||||
if (current.includes('continue') || previous.includes('continue')) {
|
||||
return 'continue';
|
||||
}
|
||||
else {
|
||||
return 'stop';
|
||||
}
|
||||
});
|
||||
if (finalOutcomeOfBatch === 'stop') {
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (runRulesAmount < this.rules.length) {
|
||||
await runNextBatch(startPriority + 1, runRulesAmount);
|
||||
}
|
||||
else {
|
||||
return;
|
||||
}
|
||||
};
|
||||
await runNextBatch(0, 0);
|
||||
}
|
||||
createRule(priorityArg, checkFunctionArg, actionFunctionArg) {
|
||||
const rule = new Rule(this, priorityArg, checkFunctionArg, actionFunctionArg);
|
||||
this.rules.push(rule);
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRydWxlLmNsYXNzZXMuc21hcnRydWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvc21hcnRydWxlLmNsYXNzZXMuc21hcnRydWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQXlCLHdCQUF3QixDQUFDO0FBQ2xELE9BQU8sRUFBRSxJQUFJLEVBQThDLE1BQU0sNkJBQTZCLENBQUM7QUFFL0YsTUFBTSxPQUFPLFNBQVM7SUFBdEI7UUFDUyxVQUFLLEdBQW1CLEVBQUUsQ0FBQztJQTJFcEMsQ0FBQztJQXpFQzs7O09BR0c7SUFDSSxLQUFLLENBQUMsWUFBWSxDQUFDLFNBQVk7UUFDcEMsc0JBQXNCO1FBQ3RCLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUU7WUFDcEMsSUFBSSxDQUFDLENBQUMsUUFBUSxHQUFHLENBQUMsQ0FBQyxRQUFRLEVBQUU7Z0JBQzNCLE9BQU8sQ0FBQyxDQUFDO2FBQ1Y7aUJBQU07Z0JBQ0wsT0FBTyxDQUFDLENBQUM7YUFDVjtRQUNILENBQUMsQ0FBQyxDQUFDO1FBRUgsNkNBQTZDO1FBQzdDLE1BQU0sb0JBQW9CLEdBQUcsQ0FBQyxhQUFxQixFQUFFLEVBQUU7WUFDckQsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsRUFBRTtnQkFDOUIsT0FBTyxJQUFJLENBQUMsUUFBUSxLQUFLLGFBQWEsQ0FBQztZQUN6QyxDQUFDLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQztRQUVGLHNCQUFzQjtRQUN0QixNQUFNLFlBQVksR0FBRyxLQUFLLEVBQUUsYUFBcUIsRUFBRSxjQUFzQixFQUFpQixFQUFFO1lBQzFGLE1BQU0sU0FBUyxHQUFHLG9CQUFvQixDQUFDLGFBQWEsQ0FBQyxDQUFDO1lBQ3RELGNBQWMsR0FBRyxjQUFjLEdBQUcsU0FBUyxDQUFDLE1BQU0sQ0FBQztZQUNuRCxNQUFNLFFBQVEsR0FBd0IsRUFBRSxDQUFDO1lBQ3pDLEtBQUssTUFBTSxJQUFJLElBQUksU0FBUyxFQUFFO2dCQUM1QixNQUFNLFdBQVcsR0FBRyxNQUFNLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLENBQUM7Z0JBQ3hELFdBQVc7b0JBQ1QsQ0FBQyxDQUFDLElBQUk7b0JBQ04sQ0FBQyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQ1Qsc0ZBQXNGLENBQ3ZGLENBQUM7Z0JBRU4sSUFBSSxXQUFXLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxFQUFFO29CQUNuQyxNQUFNLElBQUksQ0FBQyxjQUFjLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxrQ0FBa0M7aUJBQ3pFO2dCQUNELFFBQVEsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7YUFDNUI7WUFFRCxJQUFJLFFBQVEsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxFQUFFO2dCQUN2QixNQUFNLG1CQUFtQixHQUFzQixRQUFRLENBQUMsTUFBTSxDQUM1RCxDQUFDLFFBQVEsRUFBRSxPQUFPLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxFQUFFO29CQUNsQyxJQUFJLE9BQU8sQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLElBQUksUUFBUSxDQUFDLFFBQVEsQ0FBQyxVQUFVLENBQUMsRUFBRTt3QkFDakUsT0FBTyxVQUFVLENBQUM7cUJBQ25CO3lCQUFNO3dCQUNMLE9BQU8sTUFBTSxDQUFDO3FCQUNmO2dCQUNILENBQUMsQ0FDRixDQUFDO2dCQUNGLElBQUksbUJBQW1CLEtBQUssTUFBTSxFQUFFO29CQUNsQyxPQUFPO2lCQUNSO2FBQ0Y7WUFFRCxJQUFJLGNBQWMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLE1BQU0sRUFBRTtnQkFDdEMsTUFBTSxZQUFZLENBQUMsYUFBYSxHQUFHLENBQUMsRUFBRSxjQUFjLENBQUMsQ0FBQzthQUN2RDtpQkFBTTtnQkFDTCxPQUFPO2FBQ1I7UUFDSCxDQUFDLENBQUM7UUFFRixNQUFNLFlBQVksQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDM0IsQ0FBQztJQUVNLFVBQVUsQ0FDZixXQUFtQixFQUNuQixnQkFBK0IsRUFDL0IsaUJBQThCO1FBRTlCLE1BQU0sSUFBSSxHQUFHLElBQUksSUFBSSxDQUFJLElBQUksRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsaUJBQWlCLENBQUMsQ0FBQztRQUNqRixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN4QixDQUFDO0NBQ0YifQ==
|
2
dist_ts/smartrule.plugins.d.ts
vendored
Normal file
2
dist_ts/smartrule.plugins.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
declare const removeme: {};
|
||||
export { removeme };
|
3
dist_ts/smartrule.plugins.js
Normal file
3
dist_ts/smartrule.plugins.js
Normal file
@ -0,0 +1,3 @@
|
||||
const removeme = {};
|
||||
export { removeme };
|
||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRydWxlLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydHJ1bGUucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFFBQVEsR0FBRyxFQUFFLENBQUM7QUFDcEIsT0FBTyxFQUFFLFFBQVEsRUFBRSxDQUFDIn0=
|
@ -1,17 +1,29 @@
|
||||
{
|
||||
"gitzone": {
|
||||
"projectType": "npm",
|
||||
"module": {
|
||||
"githost": "gitlab.com",
|
||||
"gitscope": "pushrocks",
|
||||
"githost": "code.foss.global",
|
||||
"gitscope": "push.rocks",
|
||||
"gitrepo": "smartrule",
|
||||
"shortDescription": "a smart rule library for handling decision trees.",
|
||||
"npmPackagename": "@pushrocks/smartrule",
|
||||
"description": "A library for creating and managing decision trees with smart rules.",
|
||||
"npmPackagename": "@push.rocks/smartrule",
|
||||
"license": "MIT",
|
||||
"projectDomain": "push.rocks"
|
||||
"projectDomain": "push.rocks",
|
||||
"keywords": [
|
||||
"decision tree",
|
||||
"rules engine",
|
||||
"smart rules",
|
||||
"typescript",
|
||||
"nodejs",
|
||||
"library"
|
||||
]
|
||||
}
|
||||
},
|
||||
"npmci": {
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "public"
|
||||
},
|
||||
"tsdoc": {
|
||||
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||
}
|
||||
}
|
13547
package-lock.json
generated
13547
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
50
package.json
50
package.json
@ -1,35 +1,51 @@
|
||||
{
|
||||
"name": "@pushrocks/smartrule",
|
||||
"version": "1.0.9",
|
||||
"name": "@push.rocks/smartrule",
|
||||
"version": "2.0.1",
|
||||
"private": false,
|
||||
"description": "a smart rule library for handling decision trees.",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"description": "A library for creating and managing decision trees with smart rules.",
|
||||
"main": "dist_ts/index.js",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"type": "module",
|
||||
"author": "Lossless GmbH",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"test": "(tstest test/)",
|
||||
"build": "(tsbuild)",
|
||||
"format": "(gitzone format)"
|
||||
"build": "(tsbuild --web)",
|
||||
"format": "(gitzone format)",
|
||||
"buildDocs": "tsdoc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.0.22",
|
||||
"@gitzone/tstest": "^1.0.15",
|
||||
"@pushrocks/tapbundle": "^3.0.7",
|
||||
"@types/node": "^10.11.7",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint-config-prettier": "^1.15.0"
|
||||
"@gitzone/tsbuild": "^2.1.65",
|
||||
"@gitzone/tstest": "^1.0.73",
|
||||
"@pushrocks/tapbundle": "^5.0.4",
|
||||
"@types/node": "^18.6.4"
|
||||
},
|
||||
"dependencies": {},
|
||||
"files": [
|
||||
"ts/**/*",
|
||||
"ts_web/**/*",
|
||||
"dist/**/*",
|
||||
"dist_web/**/*",
|
||||
"dist_*/**/*",
|
||||
"dist_ts/**/*",
|
||||
"dist_ts_web/**/*",
|
||||
"assets/**/*",
|
||||
"cli.js",
|
||||
"npmextra.json",
|
||||
"readme.md"
|
||||
]
|
||||
}
|
||||
],
|
||||
"browserslist": [
|
||||
"last 1 chrome versions"
|
||||
],
|
||||
"keywords": [
|
||||
"decision tree",
|
||||
"rules engine",
|
||||
"smart rules",
|
||||
"typescript",
|
||||
"nodejs",
|
||||
"library"
|
||||
],
|
||||
"homepage": "https://code.foss.global/push.rocks/smartrule",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://code.foss.global/push.rocks/smartrule.git"
|
||||
}
|
||||
}
|
4651
pnpm-lock.yaml
generated
Normal file
4651
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
||||
|
145
readme.md
145
readme.md
@ -1,32 +1,135 @@
|
||||
# @pushrocks/smartrule
|
||||
# @push.rocks/smartrule
|
||||
|
||||
a smart rule library for handling decision trees.
|
||||
|
||||
## Availabililty and Links
|
||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartrule)
|
||||
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartrule)
|
||||
* [github.com (source mirror)](https://github.com/pushrocks/smartrule)
|
||||
* [docs (typedoc)](https://pushrocks.gitlab.io/smartrule/)
|
||||
## Install
|
||||
|
||||
## Status for master
|
||||
[](https://gitlab.com/pushrocks/smartrule/commits/master)
|
||||
[](https://gitlab.com/pushrocks/smartrule/commits/master)
|
||||
[](https://www.npmjs.com/package/@pushrocks/smartrule)
|
||||
[](https://snyk.io/test/npm/@pushrocks/smartrule)
|
||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
[](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||
[](https://prettier.io/)
|
||||
To install `@push.rocks/smartrule`, use the following command with npm:
|
||||
|
||||
```bash
|
||||
npm install @push.rocks/smartrule --save
|
||||
```
|
||||
|
||||
Or if you prefer using Yarn:
|
||||
|
||||
```bash
|
||||
yarn add @push.rocks/smartrule
|
||||
```
|
||||
|
||||
Ensure you have TypeScript and necessary typings installed in your project. If you haven't, you can add TypeScript and the types for Node.js by running:
|
||||
|
||||
```bash
|
||||
npm install typescript @types/node --save-dev
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Use TypeScript for best in class intellisense.
|
||||
`@push.rocks/smartrule` is designed to simplify handling decision trees in your application, allowing you to manage complex business logic based on a set of predefined rules. Below we will walk through using this library to create and manage a simple set of decision rules programmatically.
|
||||
|
||||
## Contribution
|
||||
### Getting Started
|
||||
|
||||
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||
First, ensure that you import `SmartRule` & define interfaces or types that you plan to use with it if necessary:
|
||||
|
||||
For further information read the linked docs at the top of this readme.
|
||||
```typescript
|
||||
import { SmartRule } from '@push.rocks/smartrule';
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||
interface IMessage {
|
||||
id: string;
|
||||
content: string;
|
||||
userType: 'admin' | 'user';
|
||||
}
|
||||
```
|
||||
|
||||
[](https://maintainedby.lossless.com)
|
||||
### Creating a Decision Rule Instance
|
||||
|
||||
To start using smart rules, instantiate `SmartRule` with your data type:
|
||||
|
||||
```typescript
|
||||
const messageRule = new SmartRule<IMessage>();
|
||||
```
|
||||
|
||||
### Adding Rules
|
||||
|
||||
Rules are added by specifying a priority, a check function, and an action function. The check function decides whether the action function should be executed based on the input object. Let's define rules for our `IMessage` objects:
|
||||
|
||||
```typescript
|
||||
// Rule 1: Greet Admins
|
||||
messageRule.createRule(
|
||||
1, // priority
|
||||
async (message: IMessage) => {
|
||||
if (message.userType === 'admin') {
|
||||
return 'apply-continue'; // Apply action and continue evaluating
|
||||
}
|
||||
return 'continue'; // Continue without applying
|
||||
},
|
||||
async (message: IMessage) => {
|
||||
console.log(`Welcome, admin with ID: ${message.id}`);
|
||||
}
|
||||
);
|
||||
|
||||
// Rule 2: Delete messages containing forbidden words
|
||||
messageRule.createRule(
|
||||
2, // priority is higher, so this rule gets evaluated first
|
||||
async (message: IMessage) => {
|
||||
const forbiddenWords = ['forbidden', 'unallowed'];
|
||||
const containsForbiddenWord = forbiddenWords.some((word) =>
|
||||
message.content.includes(word)
|
||||
);
|
||||
return containsForbiddenWord ? 'apply-stop' : 'continue'; // Stops evaluating if forbidden word found
|
||||
},
|
||||
async (message: IMessage) => {
|
||||
console.log(`Message with ID: ${message.id} contained a forbidden word and was deleted.`);
|
||||
// Logic to delete the message would go here
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
### Making Decisions
|
||||
|
||||
To evaluate an object against the defined rules, use the `makeDecision` method:
|
||||
|
||||
```typescript
|
||||
const testMessage: IMessage = {
|
||||
id: '001',
|
||||
content: 'This is a welcome message for an admin containing a forbidden word',
|
||||
userType: 'admin'
|
||||
};
|
||||
|
||||
messageRule.makeDecision(testMessage).then(() => {
|
||||
console.log('Decision making process completed.');
|
||||
// Implement further logic as needed
|
||||
});
|
||||
```
|
||||
|
||||
### Advanced Usage
|
||||
|
||||
- **Rule Prioritization**: You can manage the order in which rules are evaluated based on their priority. Rules with lower numbers are evaluated first.
|
||||
- **Decision Flow Control**: Through your check function return value (`apply-continue`, `apply-stop`, `continue`, or `stop`), you can precisely control how the decision-making process progresses after evaluating each rule.
|
||||
- **Asynchronous Support**: Both check and action functions support asynchronous operations, making it easy to integrate with APIs, databases, or other asynchronous data sources in your rules.
|
||||
|
||||
#### Handling Complex Scenarios
|
||||
|
||||
`@push.rocks/smartrule` is especially useful when you have complex decision-making processes in your application. By segmenting the logic into individual rules, you make your code more organized, maintainable, and scalable. You can easily add new rules or modify existing ones without affecting other parts of your decision tree.
|
||||
|
||||
---
|
||||
|
||||
By following this guide, you should now have a basic understanding of how to use `@push.rocks/smartrule` for managing decision trees in TypeScript using ESM syntax. This library provides a powerful yet simple abstraction for creating and managing complex decision-making logic, allowing you to focus on implementing the business rules specific to your application.
|
||||
|
||||
## License and Legal Information
|
||||
|
||||
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||
|
||||
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||
|
||||
### Trademarks
|
||||
|
||||
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||
|
||||
### Company Information
|
||||
|
||||
Task Venture Capital GmbH
|
||||
Registered at District court Bremen HRB 35230 HB, Germany
|
||||
|
||||
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||
|
||||
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
||||
|
10
test/test.ts
10
test/test.ts
@ -1,5 +1,5 @@
|
||||
import { expect, tap } from '@pushrocks/tapbundle';
|
||||
import * as smartrule from '../ts/index';
|
||||
import * as smartrule from '../ts/index.js';
|
||||
|
||||
interface ITestMessage {
|
||||
id: string;
|
||||
@ -12,12 +12,12 @@ tap.test('first test', async () => {
|
||||
testSmartruleInstance = new smartrule.SmartRule<ITestMessage>();
|
||||
testSmartruleInstance.createRule(
|
||||
2,
|
||||
async messageArg => {
|
||||
async (messageArg) => {
|
||||
if (messageArg.body.startsWith('hello')) {
|
||||
return 'apply-stop';
|
||||
}
|
||||
},
|
||||
async messageArg => {
|
||||
async (messageArg) => {
|
||||
console.log(`rule triggered for message with body ${messageArg.body}`);
|
||||
}
|
||||
);
|
||||
@ -26,8 +26,8 @@ tap.test('first test', async () => {
|
||||
tap.test('make a decision based on an object', async () => {
|
||||
testSmartruleInstance.makeDecision({
|
||||
id: '123456',
|
||||
body: 'hello, there. This is a cool message!'
|
||||
})
|
||||
body: 'hello, there. This is a cool message!',
|
||||
});
|
||||
});
|
||||
|
||||
tap.start();
|
||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartrule',
|
||||
version: '2.0.1',
|
||||
description: 'a smart rule library for handling decision trees.'
|
||||
}
|
@ -1 +1 @@
|
||||
export * from './smartrule.classes.smartrule';
|
||||
export * from './smartrule.classes.smartrule.js';
|
||||
|
@ -1,8 +1,8 @@
|
||||
import * as plugins from './smartrule.plugins';
|
||||
import { SmartRule } from './smartrule.classes.smartrule';
|
||||
import * as plugins from './smartrule.plugins.js';
|
||||
import { SmartRule } from './smartrule.classes.smartrule.js';
|
||||
|
||||
export type TTreeActionResult = 'continue' | 'apply-continue' | 'apply-stop' | 'stop';
|
||||
export type TActionFunc = (objectArg) => Promise<any>;
|
||||
export type TActionFunc<T = any> = (objectArg: T) => Promise<any>;
|
||||
|
||||
export type TCheckFunc<T> = (objectArg: T) => Promise<TTreeActionResult>;
|
||||
|
||||
@ -12,10 +12,15 @@ export class Rule<T> {
|
||||
public checkFunction: TCheckFunc<T>;
|
||||
public actionFunction: TActionFunc;
|
||||
|
||||
constructor(smartRuleRef: SmartRule<T>, priorityArg: number, checkFunctionArg: TCheckFunc<T>, actionFunctionArg: TActionFunc) {
|
||||
constructor(
|
||||
smartRuleRef: SmartRule<T>,
|
||||
priorityArg: number,
|
||||
checkFunctionArg: TCheckFunc<T>,
|
||||
actionFunctionArg: TActionFunc
|
||||
) {
|
||||
this.smartRuleRef = smartRuleRef;
|
||||
this.priority = priorityArg;
|
||||
this.checkFunction = checkFunctionArg;
|
||||
this.actionFunction = actionFunctionArg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +1,16 @@
|
||||
import * as plugins from './smartrule.plugins';
|
||||
import { Rule, TCheckFunc, TActionFunc, TTreeActionResult } from './smartrule.classes.rule';
|
||||
import * as plugins from './smartrule.plugins.js';
|
||||
import { Rule, TCheckFunc, TActionFunc, TTreeActionResult } from './smartrule.classes.rule.js';
|
||||
|
||||
export class SmartRule<T> {
|
||||
public rules: Array<Rule<T>> = [];
|
||||
|
||||
/**
|
||||
* makes a decision based on the given obect and the given rules
|
||||
* @param objectArg
|
||||
* @param objectArg
|
||||
*/
|
||||
public async makeDecision(objectArg: T) {
|
||||
// lets sort the rules
|
||||
this.rules = this.rules.sort((a,b) => {
|
||||
this.rules = this.rules.sort((a, b) => {
|
||||
if (a.priority > b.priority) {
|
||||
return 1;
|
||||
} else {
|
||||
@ -20,7 +20,7 @@ export class SmartRule<T> {
|
||||
|
||||
// gets the next batch with the same priority
|
||||
const getNextParallelBatch = (priorityStart: number) => {
|
||||
return this.rules.filter(rule => {
|
||||
return this.rules.filter((rule) => {
|
||||
return rule.priority === priorityStart;
|
||||
});
|
||||
};
|
||||
@ -32,39 +32,49 @@ export class SmartRule<T> {
|
||||
const outcomes: TTreeActionResult[] = [];
|
||||
for (const rule of nextBatch) {
|
||||
const checkResult = await rule.checkFunction(objectArg);
|
||||
checkResult ? null : console.log('WARNING!!! Please make sure your rule always returns a statement of how to continue!');
|
||||
checkResult
|
||||
? null
|
||||
: console.log(
|
||||
'WARNING!!! Please make sure your rule always returns a statement of how to continue!'
|
||||
);
|
||||
|
||||
if (checkResult.startsWith("apply")) {
|
||||
if (checkResult.startsWith('apply')) {
|
||||
await rule.actionFunction(objectArg); // here the action function is run
|
||||
}
|
||||
outcomes.push(checkResult);
|
||||
}
|
||||
|
||||
if (outcomes.length > 0) {
|
||||
const finalOutcomeOfBatch: TTreeActionResult = outcomes.reduce((previous, current, index, array) => {
|
||||
if (current.includes('continue') || previous.includes('continue')) {
|
||||
return 'continue';
|
||||
} else {
|
||||
return 'stop';
|
||||
const finalOutcomeOfBatch: TTreeActionResult = outcomes.reduce(
|
||||
(previous, current, index, array) => {
|
||||
if (current.includes('continue') || previous.includes('continue')) {
|
||||
return 'continue';
|
||||
} else {
|
||||
return 'stop';
|
||||
}
|
||||
}
|
||||
});
|
||||
);
|
||||
if (finalOutcomeOfBatch === 'stop') {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (runRulesAmount < this.rules.length) {
|
||||
await runNextBatch((startPriority + 1), runRulesAmount);
|
||||
await runNextBatch(startPriority + 1, runRulesAmount);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
||||
await runNextBatch(0,0);
|
||||
await runNextBatch(0, 0);
|
||||
}
|
||||
|
||||
public createRule(priorityArg: number, checkFunctionArg: TCheckFunc<T>, actionFunctionArg: TActionFunc) {
|
||||
public createRule(
|
||||
priorityArg: number,
|
||||
checkFunctionArg: TCheckFunc<T>,
|
||||
actionFunctionArg: TActionFunc
|
||||
) {
|
||||
const rule = new Rule<T>(this, priorityArg, checkFunctionArg, actionFunctionArg);
|
||||
this.rules.push(rule);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
14
tsconfig.json
Normal file
14
tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"experimentalDecorators": true,
|
||||
"useDefineForClassFields": false,
|
||||
"target": "ES2022",
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"esModuleInterop": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": [
|
||||
"dist_*/**/*.d.ts"
|
||||
]
|
||||
}
|
17
tslint.json
17
tslint.json
@ -1,17 +0,0 @@
|
||||
{
|
||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||
"rules": {
|
||||
"semicolon": [true, "always"],
|
||||
"no-console": false,
|
||||
"ordered-imports": false,
|
||||
"object-literal-sort-keys": false,
|
||||
"member-ordering": {
|
||||
"options":{
|
||||
"order": [
|
||||
"static-method"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"defaultSeverity": "warning"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user