Handle index parsing

This commit is contained in:
1ilit 2024-01-21 11:22:45 +02:00
parent b0d262e2a0
commit d32ee38d05

View File

@ -1222,85 +1222,6 @@ export default function ControlPanel({
} }
}; };
/**
*
* {
"id": 0,
"name": "table_4",
"x": 50,
"y": 83,
"fields": [
{
"name": "id",
"type": "INT",
"default": "",
"check": "",
"primary": true,
"unique": true,
"notNull": true,
"increment": true,
"comment": "",
"id": 0
},
{
"name": "name",
"type": "NUMERIC",
"default": "",
"check": "",
"primary": false,
"unique": false,
"notNull": false,
"increment": false,
"comment": "",
"id": 1,
"size": ""
}
],
"comment": "",
"indices": [],
"color": "#175e7a"
},
{
"id": 1,
"name": "table_1",
"x": 360,
"y": 181,
"fields": [
{
"name": "id",
"type": "INT",
"default": "",
"check": "",
"primary": true,
"unique": true,
"notNull": true,
"increment": true,
"comment": "",
"id": 0
},
{
"name": "kk",
"type": "INT",
"default": "",
"check": "",
"primary": false,
"unique": false,
"notNull": false,
"increment": false,
"comment": "",
"id": 1
},
{
"id": 2,
"size": "12"
}
],
"comment": "",
"indices": [],
"color": "#175e7a"
}
*/
const parseSQLAndLoadDiagram = () => { const parseSQLAndLoadDiagram = () => {
const parser = new Parser(); const parser = new Parser();
let ast = null; let ast = null;
@ -1312,13 +1233,16 @@ export default function ControlPanel({
console.log(err); console.log(err);
return; return;
} }
const tables = []; const tables = [];
ast.forEach(((e) => { ast.forEach(((e) => {
console.log(JSON.stringify(e)) console.log(JSON.stringify(e))
if (e.type === "create" && e.keyword === "table") { if (e.type === "create") {
if (e.keyword === "table") {
const table = {}; const table = {};
table.name = e.table[0].table; table.name = e.table[0].table;
table.comment = "";
table.color = "#175e7a"; table.color = "#175e7a";
table.fields = []; table.fields = [];
table.indices = []; table.indices = [];
@ -1341,13 +1265,19 @@ export default function ControlPanel({
field.default = ""; field.default = "";
if (d.default_val) field.default = d.default_val.value.value; if (d.default_val) field.default = d.default_val.value.value;
if (d.definition["length"]) field.size = d.definition["length"]; if (d.definition["length"]) field.size = d.definition["length"];
field.check = "";
if (d.check) { if (d.check) {
let check = ""; let check = "";
if (d.check.definition[0].left.column) { if (d.check.definition[0].left.column) {
check = d.check.definition[0].left.column + " " + d.check.definition[0].operator + " " + d.check.definition[0].right.value; let value = d.check.definition[0].right.value;
if (d.check.definition[0].right.type === "double_quote_string" || d.check.definition[0].right.type === "single_quote_string")
value = '\'' + value + '\''
check = d.check.definition[0].left.column + " " + d.check.definition[0].operator + " " + value;
} else { } else {
check = d.check.definition[0].left.value + " " + d.check.definition[0].operator + " " + d.check.definition[0].right.column; let value = d.check.definition[0].right.value;
if (d.check.definition[0].left.type === "double_quote_string" || d.check.definition[0].left.type === "single_quote_string")
value = '\'' + value + '\''
check = value + " " + d.check.definition[0].operator + " " + d.check.definition[0].right.column;
} }
field.check = check; field.check = check;
} }
@ -1365,9 +1295,29 @@ export default function ControlPanel({
} }
} }
}); });
tables.push(table); tables.push(table);
} }
else if (e.keyword === "index") {
const index = {};
index.name = e.index;
index.unique = false;
if (e.index_type === "unique") index.unique = true;
index.fields = [];
e.index_columns.forEach(f => index.fields.push(f.column));
let found = -1;
tables.forEach((t, i) => {
if (found !== -1) return;
if (t.name === e.table.table) {
t.indices.push(index);
found = i;
}
});
if (found !== -1)
tables[found].indices.forEach((i, j) => i.id = j);
}
}
})) }))
tables.forEach((e, i) => { tables.forEach((e, i) => {