blob: 890bc6f734002825dd93c91640f7488d3133ba3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { Col } from "./DocCreatorMenu";
import { FieldSettings } from "./FieldTypes/Field";
import { Template } from "./Template";
import { TemplateLayouts } from "./TemplateBackend";
export class TemplateManager {
templates: Template[] = [];
constructor(templateSettings: FieldSettings[]) {
this.templates = this.initializeTemplates(templateSettings);
}
initializeTemplates = (templateSettings: FieldSettings[]): Template[] => {
const initializedTemplates: Template[] = [];
templateSettings.forEach(settings => initializedTemplates.push(new Template(settings)));
return initializedTemplates;
}
getValidTemplates = (cols: Col[]): Template[] => {
return this.templates.filter(template => template.isValidTemplate(cols));
}
}
|