2020-07-05 18:59:47 +02:00
|
|
|
import {Groen} from "./Layouts/Groen";
|
|
|
|
import {Toilets} from "./Layouts/Toilets";
|
|
|
|
import {GRB} from "./Layouts/GRB";
|
|
|
|
import {Statues} from "./Layouts/Statues";
|
|
|
|
import {Bookcases} from "./Layouts/Bookcases";
|
2020-07-08 17:12:23 +02:00
|
|
|
import Cyclofix from "./Layouts/Cyclofix";
|
2020-07-12 23:19:05 +02:00
|
|
|
import {All} from "./Layouts/All";
|
2020-07-05 18:59:47 +02:00
|
|
|
|
|
|
|
export class AllKnownLayouts {
|
|
|
|
public static allSets: any = AllKnownLayouts.AllLayouts();
|
|
|
|
|
|
|
|
private static AllLayouts() {
|
2020-07-12 23:19:05 +02:00
|
|
|
const all = new All();
|
2020-07-05 18:59:47 +02:00
|
|
|
const layouts = [
|
|
|
|
new Groen(),
|
|
|
|
new GRB(),
|
2020-07-08 17:12:23 +02:00
|
|
|
new Cyclofix(),
|
2020-07-12 23:19:05 +02:00
|
|
|
new Bookcases(),
|
|
|
|
all
|
2020-07-05 18:59:47 +02:00
|
|
|
/*new Toilets(),
|
|
|
|
new Statues(),
|
2020-07-08 16:07:16 +02:00
|
|
|
*/
|
2020-07-05 18:59:47 +02:00
|
|
|
];
|
|
|
|
const allSets = {};
|
|
|
|
for (const layout of layouts) {
|
|
|
|
allSets[layout.name] = layout;
|
2020-07-12 23:19:05 +02:00
|
|
|
all.layers = all.layers.concat(layout.layers);
|
2020-07-05 18:59:47 +02:00
|
|
|
}
|
|
|
|
return allSets;
|
|
|
|
}
|
|
|
|
}
|