2019-04-29 02:11:57 +02:00
|
|
|
export function collectPageVars(content) {
|
|
|
|
const pageVars = [];
|
|
|
|
const collect = (xs: any[]) => {
|
|
|
|
for (const x of xs) {
|
2023-01-13 05:40:33 +01:00
|
|
|
if (x.type === "textInput") {
|
2019-04-29 02:11:57 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "string",
|
|
|
|
value: x.default || "",
|
2019-04-30 05:15:41 +02:00
|
|
|
});
|
2023-01-13 05:40:33 +01:00
|
|
|
} else if (x.type === "textareaInput") {
|
2019-04-30 05:15:41 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "string",
|
|
|
|
value: x.default || "",
|
2019-04-30 05:15:41 +02:00
|
|
|
});
|
2023-01-13 05:40:33 +01:00
|
|
|
} else if (x.type === "numberInput") {
|
2019-04-30 05:15:41 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "number",
|
|
|
|
value: x.default || 0,
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
2023-01-13 05:40:33 +01:00
|
|
|
} else if (x.type === "switch") {
|
2019-04-29 02:11:57 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "boolean",
|
|
|
|
value: x.default,
|
2019-04-29 02:11:57 +02:00
|
|
|
});
|
2023-01-13 05:40:33 +01:00
|
|
|
} else if (x.type === "counter") {
|
2019-05-02 10:55:59 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "number",
|
|
|
|
value: 0,
|
2019-05-02 10:55:59 +02:00
|
|
|
});
|
2023-01-13 05:40:33 +01:00
|
|
|
} else if (x.type === "radioButton") {
|
2019-07-10 11:30:51 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2023-01-13 05:40:33 +01:00
|
|
|
type: "string",
|
|
|
|
value: x.default || "",
|
2019-07-10 11:30:51 +02:00
|
|
|
});
|
2019-04-29 02:11:57 +02:00
|
|
|
} else if (x.children) {
|
|
|
|
collect(x.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
collect(content);
|
|
|
|
return pageVars;
|
|
|
|
}
|