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