mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2024-11-10 09:13:36 +08:00
fix: parse tags and capabilities in flow rules correctly
This commit is contained in:
parent
ee6a84e1a5
commit
369d96e50a
2 changed files with 32 additions and 4 deletions
|
@ -62,6 +62,8 @@ async function createNetworkAdditionalData(nwid) {
|
|||
additionalConfig: {
|
||||
description: "",
|
||||
rulesSource: constants.defaultRulesSource,
|
||||
tagsByName: {},
|
||||
capabilitiesByName: {},
|
||||
},
|
||||
members: [],
|
||||
};
|
||||
|
@ -79,6 +81,12 @@ async function updateNetworkAdditionalData(nwid, data) {
|
|||
if (data.hasOwnProperty("rulesSource")) {
|
||||
additionalData.rulesSource = data.rulesSource;
|
||||
}
|
||||
if (data.hasOwnProperty("tagsByName")) {
|
||||
additionalData.tagsByName = data.tagsByName;
|
||||
}
|
||||
if (data.hasOwnProperty("capabilitiesByName")) {
|
||||
additionalData.capabilitiesByName = data.capabilitiesByName;
|
||||
}
|
||||
|
||||
if (additionalData) {
|
||||
db.get("networks")
|
||||
|
|
|
@ -29,6 +29,10 @@ function NetworkRules({ network }) {
|
|||
capabilities: [...network.config.capabilities],
|
||||
tags: [...network.config.tags],
|
||||
});
|
||||
const [tagCapByNameData, setTagCapByNameData] = useState({
|
||||
tagsByName: network.tagsByName || {},
|
||||
capabilitiesByName: network.capabilitiesByName || {},
|
||||
});
|
||||
const [errors, setErrors] = useState([]);
|
||||
const [snackbarOpen, setSnackbarOpen] = useState(false);
|
||||
|
||||
|
@ -37,6 +41,7 @@ function NetworkRules({ network }) {
|
|||
const req = await API.post("/network/" + network["config"]["id"], {
|
||||
config: { ...flowData },
|
||||
rulesSource: editor.getValue(),
|
||||
...tagCapByNameData,
|
||||
});
|
||||
console.log("Action", req);
|
||||
setSnackbarOpen(true);
|
||||
|
@ -51,14 +56,29 @@ function NetworkRules({ network }) {
|
|||
const src = event.getValue();
|
||||
setEditor(event);
|
||||
let rules = [],
|
||||
caps = [],
|
||||
tags = [];
|
||||
caps = {},
|
||||
tags = {};
|
||||
const res = compile(src, rules, caps, tags);
|
||||
if (!res) {
|
||||
let capabilitiesByName = {};
|
||||
for (var key in caps) {
|
||||
capabilitiesByName[key] = caps[key].id;
|
||||
}
|
||||
|
||||
let tagsByName = { ...tags };
|
||||
for (let key in tags) {
|
||||
tags[key] = { id: tags[key].id, default: tags[key].default };
|
||||
}
|
||||
|
||||
setFlowData({
|
||||
rules: [...rules],
|
||||
capabilities: [...caps],
|
||||
tags: [...tags],
|
||||
capabilities: [...Object.values(caps)],
|
||||
tags: [...Object.values(tags)],
|
||||
});
|
||||
|
||||
setTagCapByNameData({
|
||||
tagsByName: tagsByName,
|
||||
capabilitiesByName: capabilitiesByName,
|
||||
});
|
||||
setErrors([]);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue