blob: 50ae4d72aec9a0b17a4ddaf43ce685dbd040502e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { Col } from "./DocCreatorMenu";
import { FieldSettings } from "./FieldTypes/Field";
import { Template } from "./Template";
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));
}
}
|