2019-04-29 02:11:57 +02:00
|
|
|
export function collectPageVars(content) {
|
|
|
|
const pageVars = [];
|
|
|
|
const collect = (xs: any[]) => {
|
|
|
|
for (const x of xs) {
|
2019-04-30 05:15:41 +02:00
|
|
|
if (x.type === 'textInput') {
|
2019-04-29 02:11:57 +02:00
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
2019-04-30 05:15:41 +02:00
|
|
|
type: 'string',
|
|
|
|
value: x.default
|
|
|
|
});
|
|
|
|
} else if (x.type === 'textareaInput') {
|
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
|
|
|
type: 'string',
|
|
|
|
value: x.default
|
|
|
|
});
|
|
|
|
} else if (x.type === 'numberInput') {
|
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
|
|
|
type: 'number',
|
2019-04-29 02:11:57 +02:00
|
|
|
value: x.default
|
|
|
|
});
|
|
|
|
} else if (x.type === 'switch') {
|
|
|
|
pageVars.push({
|
|
|
|
name: x.name,
|
|
|
|
type: 'boolean',
|
|
|
|
value: x.default
|
|
|
|
});
|
|
|
|
} else if (x.children) {
|
|
|
|
collect(x.children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
collect(content);
|
|
|
|
return pageVars;
|
|
|
|
}
|