@openremote/or-rules 1.8.0-snapshot.20250725074716 → 1.8.0-snapshot.20250725120000
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -30
- package/custom-elements.json +13 -13
- package/dist/umd/index.bundle.js +4744 -4744
- package/dist/umd/index.bundle.js.map +1 -1
- package/lib/flow-viewer/components/confirmation-dialog.js +61 -24
- package/lib/flow-viewer/components/connection-container.js +35 -1
- package/lib/flow-viewer/components/connection-line.js +117 -28
- package/lib/flow-viewer/components/context-menu.js +140 -45
- package/lib/flow-viewer/components/editor-workspace.js +282 -20
- package/lib/flow-viewer/components/flow-editor.js +160 -47
- package/lib/flow-viewer/components/flow-node-socket.js +146 -31
- package/lib/flow-viewer/components/flow-node.js +192 -29
- package/lib/flow-viewer/components/internal-picker.js +271 -54
- package/lib/flow-viewer/components/node-menu-item.js +132 -32
- package/lib/flow-viewer/components/node-panel.js +104 -60
- package/lib/flow-viewer/components/notification-dialog.js +55 -23
- package/lib/flow-viewer/components/popup-modal.js +113 -54
- package/lib/flow-viewer/components/rule-browser.js +119 -30
- package/lib/flow-viewer/components/selectable-element.js +71 -1
- package/lib/flow-viewer/components/selection-box.js +119 -15
- package/lib/flow-viewer/components/top-bar.js +116 -49
- package/lib/flow-viewer/components/workspace-contextmenu-options.js +128 -5
- package/lib/flow-viewer/components/writable-dropdown.js +51 -5
- package/lib/flow-viewer/converters/node-converter.js +10 -1
- package/lib/flow-viewer/flow-viewer.js +19 -1
- package/lib/flow-viewer/models/camera.js +2 -1
- package/lib/flow-viewer/models/context-menu-button.js +2 -1
- package/lib/flow-viewer/models/light-node-collection.js +2 -1
- package/lib/flow-viewer/models/status.js +8 -1
- package/lib/flow-viewer/node-structure/copy.machine.js +34 -1
- package/lib/flow-viewer/node-structure/identity.assigner.js +10 -1
- package/lib/flow-viewer/node-structure/identity.dom.link.js +4 -1
- package/lib/flow-viewer/node-structure/index.js +5 -1
- package/lib/flow-viewer/node-structure/socket.type.matcher.js +50 -1
- package/lib/flow-viewer/node-structure/utils.js +109 -1
- package/lib/flow-viewer/services/copy-paste-manager.js +59 -1
- package/lib/flow-viewer/services/exporter.js +67 -1
- package/lib/flow-viewer/services/input.js +80 -1
- package/lib/flow-viewer/services/integration.js +27 -1
- package/lib/flow-viewer/services/modal.js +29 -8
- package/lib/flow-viewer/services/project.js +222 -1
- package/lib/flow-viewer/services/shortcuts.js +63 -1
- package/lib/flow-viewer/styles/editor-workspace-style.js +55 -53
- package/lib/flow-viewer/styles/flow-node-style.js +95 -93
- package/lib/flow-viewer/styles/picker-styles.js +31 -29
- package/lib/flow-viewer/utils.js +49 -1
- package/lib/index.js +953 -56
- package/lib/json-viewer/forms/or-rule-form-alarm.js +91 -18
- package/lib/json-viewer/forms/or-rule-form-email-message.js +51 -12
- package/lib/json-viewer/forms/or-rule-form-localized.js +269 -43
- package/lib/json-viewer/forms/or-rule-form-push-notification.js +152 -63
- package/lib/json-viewer/forms/or-rule-form-webhook.js +296 -101
- package/lib/json-viewer/modals/or-rule-alarm-modal.js +173 -17
- package/lib/json-viewer/modals/or-rule-notification-modal.js +196 -11
- package/lib/json-viewer/modals/or-rule-radial-modal.js +142 -17
- package/lib/json-viewer/modals/or-rule-webhook-modal.js +78 -8
- package/lib/json-viewer/or-rule-action-alarm.js +97 -5
- package/lib/json-viewer/or-rule-action-attribute.js +235 -33
- package/lib/json-viewer/or-rule-action-notification.js +465 -56
- package/lib/json-viewer/or-rule-action-webhook.js +49 -18
- package/lib/json-viewer/or-rule-asset-query.js +849 -126
- package/lib/json-viewer/or-rule-condition.js +216 -29
- package/lib/json-viewer/or-rule-json-viewer.js +393 -34
- package/lib/json-viewer/or-rule-then-otherwise.js +609 -113
- package/lib/json-viewer/or-rule-trigger-query.js +227 -57
- package/lib/json-viewer/or-rule-when.js +343 -126
- package/lib/or-rule-group-viewer.js +106 -12
- package/lib/or-rule-text-viewer.js +133 -22
- package/lib/or-rule-tree.js +601 -57
- package/lib/or-rule-validity.js +373 -62
- package/lib/or-rule-viewer.js +361 -81
- package/lib/style.js +89 -64
- package/package.json +11 -11
|
@@ -1,136 +1,353 @@
|
|
|
1
|
-
var
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var OrRuleWhen_1;
|
|
8
|
+
import { css, html, LitElement } from "lit";
|
|
9
|
+
import { customElement, property } from "lit/decorators.js";
|
|
10
|
+
import { OrRulesRuleUnsupportedEvent } from "../index";
|
|
11
|
+
import { buttonStyle } from "../style";
|
|
12
|
+
import "./or-rule-condition";
|
|
13
|
+
import i18next from "i18next";
|
|
14
|
+
import { InputType } from "@openremote/or-mwc-components/or-mwc-input";
|
|
15
|
+
import { OrRulesJsonRuleChangedEvent } from "./or-rule-json-viewer";
|
|
16
|
+
import { getWhenTypesMenu, updateRuleConditionType } from "./or-rule-condition";
|
|
17
|
+
import { getContentWithMenuTemplate } from "@openremote/or-mwc-components/or-mwc-menu";
|
|
18
|
+
import { translate } from "@openremote/or-translate";
|
|
19
|
+
var ResetOption;
|
|
20
|
+
(function (ResetOption) {
|
|
21
|
+
ResetOption["NO_LONGER_MATCHES"] = "noLongerMatches";
|
|
22
|
+
ResetOption["VALUE_CHANGES"] = "valueChanges";
|
|
23
|
+
})(ResetOption || (ResetOption = {}));
|
|
24
|
+
// language=CSS
|
|
25
|
+
const style = css `
|
|
26
|
+
|
|
27
|
+
:host {
|
|
28
|
+
display: block;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
${buttonStyle}
|
|
32
|
+
|
|
33
|
+
.rule-group-items {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: column;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.rule-group .rule-group-items > div {
|
|
39
|
+
margin: 10px 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.rule-condition {
|
|
43
|
+
display: flex;
|
|
44
|
+
padding-right: 5px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.rule-condition > * {
|
|
48
|
+
flex-grow: 0;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.rule-condition > or-rule-condition {
|
|
52
|
+
flex-grow: 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
or-rule-condition {
|
|
56
|
+
margin-bottom: 10px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.rule-group-item > or-icon {
|
|
60
|
+
padding-left: 17px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
or-icon.small {
|
|
64
|
+
--or-icon-width: 14px;
|
|
65
|
+
--or-icon-height: 14px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
or-panel {
|
|
69
|
+
margin: 10px 10px 20px 10px;
|
|
70
|
+
position: relative;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
or-panel > .remove-button {
|
|
74
|
+
position: absolute;
|
|
75
|
+
right: 0;
|
|
76
|
+
top: 0;
|
|
77
|
+
width: 24px;
|
|
78
|
+
height: 24px;
|
|
79
|
+
transform: translate(50%, -50%);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.rule-condition:hover .button-clear {
|
|
83
|
+
visibility: visible;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
or-panel:hover .remove-button.button-clear {
|
|
87
|
+
visibility: visible;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.add-button-wrapper {
|
|
91
|
+
display: flex;
|
|
92
|
+
align-items: center;
|
|
93
|
+
white-space: nowrap;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.add-button-wrapper > * {
|
|
97
|
+
margin-right: 6px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.add-button-wrapper or-mwc-menu {
|
|
101
|
+
text-transform: capitalize;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
strong {
|
|
105
|
+
margin: var(--internal-or-panel-heading-margin);
|
|
106
|
+
font-size: var(--internal-or-panel-heading-font-size);
|
|
107
|
+
}
|
|
108
|
+
`;
|
|
109
|
+
let OrRuleWhen = OrRuleWhen_1 = class OrRuleWhen extends translate(i18next)(LitElement) {
|
|
110
|
+
static get styles() {
|
|
111
|
+
return style;
|
|
5
112
|
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
113
|
+
ruleGroupTemplate(group, parentGroup) {
|
|
114
|
+
if (!group) {
|
|
115
|
+
return html ``;
|
|
116
|
+
}
|
|
117
|
+
const isTopLevel = !parentGroup;
|
|
118
|
+
const showAddCondition = !this.readonly && (!this.config || !this.config.controls || this.config.controls.hideWhenAddCondition !== true);
|
|
119
|
+
const showRemoveCondition = !this.readonly;
|
|
120
|
+
const showRemoveGroup = !this.readonly;
|
|
121
|
+
let wrapper;
|
|
122
|
+
if (isTopLevel) {
|
|
123
|
+
wrapper = (content, item, parent, isGroup, isFirst) => {
|
|
124
|
+
return html `
|
|
125
|
+
<or-panel .heading="${i18next.t(isFirst ? "when" : "orWhen")}...">
|
|
126
|
+
${showRemoveGroup ? html `
|
|
127
|
+
<button class="button-clear remove-button" @click="${() => this.removeItem(item, parent, isGroup)}">
|
|
128
|
+
<or-icon icon="close-circle"></or-icon>
|
|
129
|
+
</button>
|
|
130
|
+
` : ``}
|
|
131
|
+
${content}
|
|
132
|
+
</or-panel>`;
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
wrapper = (content, item, parent, isGroup, isFirst) => {
|
|
137
|
+
return html `
|
|
138
|
+
${!isFirst ? html `
|
|
139
|
+
<or-icon class="small" icon="ampersand"></or-icon>
|
|
140
|
+
` : ``}
|
|
141
|
+
${content}
|
|
142
|
+
`;
|
|
143
|
+
return content;
|
|
144
|
+
};
|
|
145
|
+
}
|
|
146
|
+
let groupsTemplate = ``;
|
|
147
|
+
let itemsTemplate = ``;
|
|
148
|
+
let addTemplate = ``;
|
|
149
|
+
let isFirst = true;
|
|
150
|
+
if (group.groups && group.groups.length > 0) {
|
|
151
|
+
groupsTemplate = html `
|
|
152
|
+
${group.groups.map((childGroup, index) => {
|
|
153
|
+
const content = html `
|
|
154
|
+
<div class="rule-group-item">
|
|
155
|
+
${this.ruleGroupTemplate(childGroup, group)}
|
|
156
|
+
</div>
|
|
157
|
+
`;
|
|
158
|
+
return wrapper(content, childGroup, group, true, index == 0);
|
|
159
|
+
})}
|
|
160
|
+
`;
|
|
161
|
+
isFirst = false;
|
|
162
|
+
}
|
|
163
|
+
if (group.items && group.items.length > 0) {
|
|
164
|
+
itemsTemplate = html `
|
|
165
|
+
${group.items.map((condition, index) => {
|
|
166
|
+
const content = html `
|
|
167
|
+
<div class="rule-group-item">
|
|
168
|
+
<div class="rule-condition">
|
|
169
|
+
<or-rule-condition .config="${this.config}" .assetInfos="${this.assetInfos}" .ruleCondition="${condition}" .readonly="${this.readonly}" .assetProvider="${this.assetProvider}"></or-rule-condition>
|
|
170
|
+
${showRemoveGroup ? html `
|
|
171
|
+
<button class="button-clear ${showRemoveCondition ? "" : "hidden"}" @click="${() => this.removeItem(condition, group, false)}"><or-icon icon="close-circle"></or-icon></input>
|
|
172
|
+
` : ``}
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
`;
|
|
176
|
+
return wrapper(content, condition, group, true, isFirst && index === 0);
|
|
177
|
+
})}
|
|
178
|
+
`;
|
|
179
|
+
isFirst = false;
|
|
180
|
+
}
|
|
181
|
+
if (!isTopLevel && showAddCondition) {
|
|
182
|
+
addTemplate = html `
|
|
183
|
+
<span class="add-button-wrapper">
|
|
184
|
+
${getContentWithMenuTemplate(html `<or-mwc-input class="plus-button" type="${InputType.BUTTON}" icon="plus"
|
|
185
|
+
.label="${i18next.t("rulesEditorAddCondition")}"></or-mwc-input>`, getWhenTypesMenu(this.config, this.assetInfos), undefined, (value) => this.addCondition(group, value))}
|
|
186
|
+
</span>
|
|
187
|
+
`;
|
|
188
|
+
}
|
|
189
|
+
return html `
|
|
190
|
+
${groupsTemplate}
|
|
191
|
+
${itemsTemplate}
|
|
192
|
+
${addTemplate}
|
|
193
|
+
`;
|
|
12
194
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
margin: 10px 0;
|
|
195
|
+
dateTimePredicateTemplate() {
|
|
196
|
+
return html `<span>DATE TIME PREDICATE NOT IMPLEMENTED</span>`;
|
|
16
197
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
198
|
+
shouldUpdate(_changedProperties) {
|
|
199
|
+
if (_changedProperties.has("rule")) {
|
|
200
|
+
if (this.rule) {
|
|
201
|
+
if (!this.rule.when) {
|
|
202
|
+
this.rule.when = {
|
|
203
|
+
operator: "OR" /* LogicGroupOperator.OR */
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
else {
|
|
207
|
+
// Check this is a rule compatible with this editor
|
|
208
|
+
if (!OrRuleWhen_1._isRuleWhenCompatible(this.rule.when)) {
|
|
209
|
+
this.rule = undefined;
|
|
210
|
+
this.dispatchEvent(new OrRulesRuleUnsupportedEvent());
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
return super.shouldUpdate(_changedProperties);
|
|
21
216
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
217
|
+
render() {
|
|
218
|
+
if (!this.rule || !this.rule.when) {
|
|
219
|
+
return html ``;
|
|
220
|
+
}
|
|
221
|
+
const showAddGroup = !this.readonly && (!this.config || !this.config.controls || this.config.controls.hideWhenAddGroup !== true);
|
|
222
|
+
return html `
|
|
223
|
+
<div>
|
|
224
|
+
${this.ruleGroupTemplate(this.rule.when)}
|
|
225
|
+
</div>
|
|
226
|
+
|
|
227
|
+
${!showAddGroup ? `` : html `
|
|
228
|
+
<or-panel>
|
|
229
|
+
<strong>${i18next.t(!this.rule.when.groups || this.rule.when.groups.length === 0 ? "when" : "orWhen")}...</strong>
|
|
230
|
+
<span class="add-button-wrapper">
|
|
231
|
+
${getContentWithMenuTemplate(html `<or-mwc-input class="plus-button" type="${InputType.BUTTON}" icon="plus"></or-mwc-input>`, getWhenTypesMenu(this.config, this.assetInfos), undefined, (value) => this.addGroup(this.rule.when, value))}
|
|
232
|
+
</span>
|
|
233
|
+
</or-panel>
|
|
234
|
+
`}
|
|
235
|
+
`;
|
|
25
236
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
237
|
+
/**
|
|
238
|
+
* Currently only support a top level OR group and then N child AND groups with no more descendants
|
|
239
|
+
*/
|
|
240
|
+
static _isRuleWhenCompatible(when) {
|
|
241
|
+
if (when.operator !== "OR" /* LogicGroupOperator.OR */) {
|
|
242
|
+
console.warn("Incompatible rule: when operator not set to 'OR'");
|
|
243
|
+
return false;
|
|
244
|
+
}
|
|
245
|
+
if (when.items && when.items.length > 0) {
|
|
246
|
+
console.warn("Incompatible rule: when items not supported");
|
|
247
|
+
return false;
|
|
248
|
+
}
|
|
249
|
+
if (when.groups && when.groups.find((g) => !this._isWhenGroupCompatible(g))) {
|
|
250
|
+
console.warn("Incompatible rule: when groups incompatible");
|
|
251
|
+
return false;
|
|
252
|
+
}
|
|
253
|
+
return true;
|
|
29
254
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
255
|
+
static _isWhenGroupCompatible(group) {
|
|
256
|
+
if (group.operator === "OR" /* LogicGroupOperator.OR */) {
|
|
257
|
+
console.warn("Incompatible rule: when group operator not set to 'AND'");
|
|
258
|
+
return false;
|
|
259
|
+
}
|
|
260
|
+
if (group.groups && group.groups.length > 0) {
|
|
261
|
+
console.warn("Incompatible rule: when group nested groups not supported");
|
|
262
|
+
return false;
|
|
263
|
+
}
|
|
264
|
+
return true;
|
|
33
265
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
266
|
+
addGroup(parent, type) {
|
|
267
|
+
if (!this.rule || !this.rule.when || parent !== this.rule.when) {
|
|
268
|
+
return;
|
|
269
|
+
}
|
|
270
|
+
let newGroup = {
|
|
271
|
+
operator: "AND" /* LogicGroupOperator.AND */
|
|
272
|
+
};
|
|
273
|
+
if (this.config && this.config.json && this.config.json.whenGroup) {
|
|
274
|
+
newGroup = JSON.parse(JSON.stringify(this.config.json.whenGroup));
|
|
275
|
+
}
|
|
276
|
+
if (newGroup.operator !== "AND" /* LogicGroupOperator.AND */) {
|
|
277
|
+
console.warn("JSON rules editor doesn't support top level logic group with type OR");
|
|
278
|
+
this.dispatchEvent(new OrRulesRuleUnsupportedEvent());
|
|
279
|
+
return;
|
|
280
|
+
}
|
|
281
|
+
if (newGroup.groups && newGroup.groups.length > 0) {
|
|
282
|
+
console.warn("JSON rules editor doesn't support multiple top level logic groups");
|
|
283
|
+
this.dispatchEvent(new OrRulesRuleUnsupportedEvent());
|
|
284
|
+
return;
|
|
285
|
+
}
|
|
286
|
+
newGroup.groups = undefined;
|
|
287
|
+
// Add an item if none exist
|
|
288
|
+
if (!newGroup.items || newGroup.items.length === 0) {
|
|
289
|
+
this.addCondition(newGroup, type, true);
|
|
290
|
+
}
|
|
291
|
+
if (!parent.groups) {
|
|
292
|
+
parent.groups = [];
|
|
293
|
+
}
|
|
294
|
+
parent.groups.push(newGroup);
|
|
295
|
+
this.dispatchEvent(new OrRulesJsonRuleChangedEvent());
|
|
296
|
+
this.requestUpdate();
|
|
37
297
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
298
|
+
removeItem(item, parent, isGroup) {
|
|
299
|
+
let removed = false;
|
|
300
|
+
if (parent) {
|
|
301
|
+
if (isGroup) {
|
|
302
|
+
const index = parent.groups.indexOf(item);
|
|
303
|
+
parent.groups.splice(index, 1);
|
|
304
|
+
removed = index >= 0;
|
|
305
|
+
}
|
|
306
|
+
else {
|
|
307
|
+
const index = parent.items.indexOf(item);
|
|
308
|
+
parent.items.splice(index, 1);
|
|
309
|
+
removed = index >= 0;
|
|
310
|
+
}
|
|
311
|
+
if (removed) {
|
|
312
|
+
this.dispatchEvent(new OrRulesJsonRuleChangedEvent());
|
|
313
|
+
this.requestUpdate();
|
|
314
|
+
}
|
|
315
|
+
}
|
|
42
316
|
}
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
317
|
+
addCondition(parent, type, silent) {
|
|
318
|
+
if (!parent) {
|
|
319
|
+
return;
|
|
320
|
+
}
|
|
321
|
+
if (!parent.items) {
|
|
322
|
+
parent.items = [];
|
|
323
|
+
}
|
|
324
|
+
let newCondition = {};
|
|
325
|
+
if (this.config && this.config.json && this.config.json.whenCondition) {
|
|
326
|
+
newCondition = JSON.parse(JSON.stringify(this.config.json.whenCondition));
|
|
327
|
+
}
|
|
328
|
+
else {
|
|
329
|
+
updateRuleConditionType(newCondition, type || "ThingAsset" /* WellknownAssets.THINGASSET */, this.config);
|
|
330
|
+
}
|
|
331
|
+
parent.items.push(newCondition);
|
|
332
|
+
if (!silent) {
|
|
333
|
+
this.dispatchEvent(new OrRulesJsonRuleChangedEvent());
|
|
334
|
+
this.requestUpdate();
|
|
335
|
+
}
|
|
47
336
|
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
or-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
.add-button-wrapper {
|
|
67
|
-
display: flex;
|
|
68
|
-
align-items: center;
|
|
69
|
-
white-space: nowrap;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.add-button-wrapper > * {
|
|
73
|
-
margin-right: 6px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.add-button-wrapper or-mwc-menu {
|
|
77
|
-
text-transform: capitalize;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
strong {
|
|
81
|
-
margin: var(--internal-or-panel-heading-margin);
|
|
82
|
-
font-size: var(--internal-or-panel-heading-font-size);
|
|
83
|
-
}
|
|
84
|
-
`,OrRuleWhen=OrRuleWhen_1=class extends d(l)(o){static get styles(){return style}ruleGroupTemplate(e,o){let r;if(!e)return t``;let i=!o,n=!this.readonly&&(!this.config||!this.config.controls||!0!==this.config.controls.hideWhenAddCondition),s=!this.readonly,a=!this.readonly;r=i?(e,o,r,i,n)=>t`
|
|
85
|
-
<or-panel .heading="${l.t(n?"when":"orWhen")}...">
|
|
86
|
-
${a?t`
|
|
87
|
-
<button class="button-clear remove-button" @click="${()=>this.removeItem(o,r,i)}">
|
|
88
|
-
<or-icon icon="close-circle"></or-icon>
|
|
89
|
-
</button>
|
|
90
|
-
`:""}
|
|
91
|
-
${e}
|
|
92
|
-
</or-panel>`:(e,o,r,i,n)=>t`
|
|
93
|
-
${!n?t`
|
|
94
|
-
<or-icon class="small" icon="ampersand"></or-icon>
|
|
95
|
-
`:""}
|
|
96
|
-
${e}
|
|
97
|
-
`;let h="",d="",m="",g=!0;return e.groups&&e.groups.length>0&&(h=t`
|
|
98
|
-
${e.groups.map((o,i)=>r(t`
|
|
99
|
-
<div class="rule-group-item">
|
|
100
|
-
${this.ruleGroupTemplate(o,e)}
|
|
101
|
-
</div>
|
|
102
|
-
`,o,e,!0,0==i))}
|
|
103
|
-
`,g=!1),e.items&&e.items.length>0&&(d=t`
|
|
104
|
-
${e.items.map((o,i)=>r(t`
|
|
105
|
-
<div class="rule-group-item">
|
|
106
|
-
<div class="rule-condition">
|
|
107
|
-
<or-rule-condition .config="${this.config}" .assetInfos="${this.assetInfos}" .ruleCondition="${o}" .readonly="${this.readonly}" .assetProvider="${this.assetProvider}"></or-rule-condition>
|
|
108
|
-
${a?t`
|
|
109
|
-
<button class="button-clear ${s?"":"hidden"}" @click="${()=>this.removeItem(o,e,!1)}"><or-icon icon="close-circle"></or-icon></input>
|
|
110
|
-
`:""}
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
`,o,e,!0,g&&0===i))}
|
|
114
|
-
`,g=!1),!i&&n&&(m=t`
|
|
115
|
-
<span class="add-button-wrapper">
|
|
116
|
-
${c(t`<or-mwc-input class="plus-button" type="${p.BUTTON}" icon="plus"
|
|
117
|
-
.label="${l.t("rulesEditorAddCondition")}"></or-mwc-input>`,u(this.config,this.assetInfos),void 0,t=>this.addCondition(e,t))}
|
|
118
|
-
</span>
|
|
119
|
-
`),t`
|
|
120
|
-
${h}
|
|
121
|
-
${d}
|
|
122
|
-
${m}
|
|
123
|
-
`}dateTimePredicateTemplate(){return t`<span>DATE TIME PREDICATE NOT IMPLEMENTED</span>`}shouldUpdate(e){return e.has("rule")&&this.rule&&(this.rule.when?OrRuleWhen_1._isRuleWhenCompatible(this.rule.when)||(this.rule=void 0,this.dispatchEvent(new n)):this.rule.when={operator:"OR"}),super.shouldUpdate(e)}render(){if(!this.rule||!this.rule.when)return t``;let e=!this.readonly&&(!this.config||!this.config.controls||!0!==this.config.controls.hideWhenAddGroup);return t`
|
|
124
|
-
<div>
|
|
125
|
-
${this.ruleGroupTemplate(this.rule.when)}
|
|
126
|
-
</div>
|
|
127
|
-
|
|
128
|
-
${!e?"":t`
|
|
129
|
-
<or-panel>
|
|
130
|
-
<strong>${l.t(!this.rule.when.groups||0===this.rule.when.groups.length?"when":"orWhen")}...</strong>
|
|
131
|
-
<span class="add-button-wrapper">
|
|
132
|
-
${c(t`<or-mwc-input class="plus-button" type="${p.BUTTON}" icon="plus"></or-mwc-input>`,u(this.config,this.assetInfos),void 0,e=>this.addGroup(this.rule.when,e))}
|
|
133
|
-
</span>
|
|
134
|
-
</or-panel>
|
|
135
|
-
`}
|
|
136
|
-
`}static _isRuleWhenCompatible(e){return"OR"!==e.operator?(console.warn("Incompatible rule: when operator not set to 'OR'"),!1):e.items&&e.items.length>0?(console.warn("Incompatible rule: when items not supported"),!1):!(e.groups&&e.groups.find(e=>!this._isWhenGroupCompatible(e)))||(console.warn("Incompatible rule: when groups incompatible"),!1)}static _isWhenGroupCompatible(e){return"OR"===e.operator?(console.warn("Incompatible rule: when group operator not set to 'AND'"),!1):!e.groups||!(e.groups.length>0)||(console.warn("Incompatible rule: when group nested groups not supported"),!1)}addGroup(e,t){if(!this.rule||!this.rule.when||e!==this.rule.when)return;let o={operator:"AND"};if(this.config&&this.config.json&&this.config.json.whenGroup&&(o=JSON.parse(JSON.stringify(this.config.json.whenGroup))),"AND"!==o.operator){console.warn("JSON rules editor doesn't support top level logic group with type OR"),this.dispatchEvent(new n);return}if(o.groups&&o.groups.length>0){console.warn("JSON rules editor doesn't support multiple top level logic groups"),this.dispatchEvent(new n);return}o.groups=void 0,o.items&&0!==o.items.length||this.addCondition(o,t,!0),e.groups||(e.groups=[]),e.groups.push(o),this.dispatchEvent(new a),this.requestUpdate()}removeItem(e,t,o){let r=!1;if(t){if(o){let o=t.groups.indexOf(e);t.groups.splice(o,1),r=o>=0}else{let o=t.items.indexOf(e);t.items.splice(o,1),r=o>=0}r&&(this.dispatchEvent(new a),this.requestUpdate())}}addCondition(e,t,o){if(!e)return;e.items||(e.items=[]);let r={};this.config&&this.config.json&&this.config.json.whenCondition?r=JSON.parse(JSON.stringify(this.config.json.whenCondition)):h(r,t||"ThingAsset",this.config),e.items.push(r),o||(this.dispatchEvent(new a),this.requestUpdate())}};__decorate([i({type:Object})],OrRuleWhen.prototype,"rule",void 0),__decorate([i({type:Boolean})],OrRuleWhen.prototype,"readonly",void 0),__decorate([i({type:Object})],OrRuleWhen.prototype,"assetProvider",void 0),__decorate([i({type:Object,attribute:!1})],OrRuleWhen.prototype,"assetInfos",void 0),OrRuleWhen=OrRuleWhen_1=__decorate([r("or-rule-when")],OrRuleWhen);
|
|
337
|
+
};
|
|
338
|
+
__decorate([
|
|
339
|
+
property({ type: Object })
|
|
340
|
+
], OrRuleWhen.prototype, "rule", void 0);
|
|
341
|
+
__decorate([
|
|
342
|
+
property({ type: Boolean })
|
|
343
|
+
], OrRuleWhen.prototype, "readonly", void 0);
|
|
344
|
+
__decorate([
|
|
345
|
+
property({ type: Object })
|
|
346
|
+
], OrRuleWhen.prototype, "assetProvider", void 0);
|
|
347
|
+
__decorate([
|
|
348
|
+
property({ type: Object, attribute: false })
|
|
349
|
+
], OrRuleWhen.prototype, "assetInfos", void 0);
|
|
350
|
+
OrRuleWhen = OrRuleWhen_1 = __decorate([
|
|
351
|
+
customElement("or-rule-when")
|
|
352
|
+
], OrRuleWhen);
|
|
353
|
+
//# sourceMappingURL=or-rule-when.js.map
|
|
@@ -1,12 +1,106 @@
|
|
|
1
|
-
var __decorate=this&&this.__decorate
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
/*
|
|
8
|
+
* Copyright 2025, OpenRemote Inc.
|
|
9
|
+
*
|
|
10
|
+
* See the CONTRIBUTORS.txt file in the distribution for a
|
|
11
|
+
* full listing of individual contributors.
|
|
12
|
+
*
|
|
13
|
+
* This program is free software: you can redistribute it and/or modify
|
|
14
|
+
* it under the terms of the GNU Affero General Public License as
|
|
15
|
+
* published by the Free Software Foundation, either version 3 of the
|
|
16
|
+
* License, or (at your option) any later version.
|
|
17
|
+
*
|
|
18
|
+
* This program is distributed in the hope that it will be useful,
|
|
19
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21
|
+
* GNU Affero General Public License for more details.
|
|
22
|
+
*
|
|
23
|
+
* You should have received a copy of the GNU Affero General Public License
|
|
24
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
25
|
+
*/
|
|
26
|
+
import { i18next, translate } from "@openremote/or-translate";
|
|
27
|
+
import { html, LitElement } from "lit";
|
|
28
|
+
import { customElement, property, query, state } from "lit/decorators.js";
|
|
29
|
+
import { style } from "./or-rule-viewer";
|
|
30
|
+
import { InputType } from "@openremote/or-mwc-components/or-mwc-input";
|
|
31
|
+
import { OrRulesGroupNameChangeEvent } from "./index";
|
|
32
|
+
import { showSnackbar } from "@openremote/or-mwc-components/or-mwc-snackbar";
|
|
33
|
+
let OrRuleGroupViewer = class OrRuleGroupViewer extends translate(i18next)(LitElement) {
|
|
34
|
+
constructor() {
|
|
35
|
+
super(...arguments);
|
|
36
|
+
this.readonly = false;
|
|
37
|
+
}
|
|
38
|
+
static get styles() {
|
|
39
|
+
return [style];
|
|
40
|
+
}
|
|
41
|
+
willUpdate(changedProps) {
|
|
42
|
+
var _a;
|
|
43
|
+
if (changedProps.has("group")) {
|
|
44
|
+
(_a = this._groupNameInput) === null || _a === void 0 ? void 0 : _a.focus(); // regain focus on the input (if lost)
|
|
45
|
+
}
|
|
46
|
+
return super.willUpdate(changedProps);
|
|
47
|
+
}
|
|
48
|
+
render() {
|
|
49
|
+
return html `
|
|
50
|
+
<div id="main-wrapper" class="wrapper">
|
|
51
|
+
<div id="rule-header">
|
|
52
|
+
<or-mwc-input id="rule-name" outlined .type="${InputType.TEXT}" .label="${i18next.t("ruleGroupName")}" focused
|
|
53
|
+
.value="${this.group}" ?disabled="${this.readonly}" required minlength="1" maxlength="255" @input="${this._onGroupNameInput}"
|
|
54
|
+
></or-mwc-input>
|
|
55
|
+
<div id="rule-header-controls">
|
|
56
|
+
<or-mwc-input .type="${InputType.BUTTON}" id="save-btn" label="save" raised ?disabled="${this._cannotSave()}" @or-mwc-input-changed="${this._onSaveClicked}"></or-mwc-input>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
`;
|
|
61
|
+
}
|
|
62
|
+
_onGroupNameInput(ev) {
|
|
63
|
+
var _a;
|
|
64
|
+
const value = (_a = this._groupNameInput) === null || _a === void 0 ? void 0 : _a.nativeValue;
|
|
65
|
+
if (value)
|
|
66
|
+
this._changeName(value);
|
|
67
|
+
this.requestUpdate();
|
|
68
|
+
}
|
|
69
|
+
_changeName(name) {
|
|
70
|
+
if (name.length >= 3 && name.length <= 255) {
|
|
71
|
+
this.group = name;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
_cannotSave() {
|
|
75
|
+
var _a, _b, _c;
|
|
76
|
+
return this.readonly || !((_a = this._groupNameInput) === null || _a === void 0 ? void 0 : _a.nativeValue) || !((_b = this._groupNameInput) === null || _b === void 0 ? void 0 : _b.valid) || (((_c = this._groupNameInput) === null || _c === void 0 ? void 0 : _c.nativeValue) || "") === this._lastSaved;
|
|
77
|
+
}
|
|
78
|
+
_onSaveClicked() {
|
|
79
|
+
if (this.group && !this._cannotSave()) {
|
|
80
|
+
const success = this.dispatchEvent(new OrRulesGroupNameChangeEvent(this.group));
|
|
81
|
+
if (success) {
|
|
82
|
+
this._lastSaved = this.group;
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
showSnackbar(undefined, 'ruleGroupExistsError');
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
__decorate([
|
|
91
|
+
property({ type: String })
|
|
92
|
+
], OrRuleGroupViewer.prototype, "group", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
property({ type: Boolean })
|
|
95
|
+
], OrRuleGroupViewer.prototype, "readonly", void 0);
|
|
96
|
+
__decorate([
|
|
97
|
+
state()
|
|
98
|
+
], OrRuleGroupViewer.prototype, "_lastSaved", void 0);
|
|
99
|
+
__decorate([
|
|
100
|
+
query("#rule-name")
|
|
101
|
+
], OrRuleGroupViewer.prototype, "_groupNameInput", void 0);
|
|
102
|
+
OrRuleGroupViewer = __decorate([
|
|
103
|
+
customElement("or-rule-group-viewer")
|
|
104
|
+
], OrRuleGroupViewer);
|
|
105
|
+
export { OrRuleGroupViewer };
|
|
106
|
+
//# sourceMappingURL=or-rule-group-viewer.js.map
|