aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/DocCreatorMenu/TemplateManager.tsx
blob: d47ae802c3e387179eab36688c8b22e872f4d28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
    }

    /**
     * Provides a text summary of content currently filled into a template, formatted for GPT analysis.
     * @param template the template to be summarized
     */
    getContentSummary = (template: Template) => {
        let summary: string = '';
        template.contentFields.forEach(field => {
            summary += `--- Field #${field.getID} (title: ${field.getTitle()}): ${field.getContent() ?? ''} ---`;
        });
        return summary;
    }

    getValidTemplates = (cols: Col[]): Template[] => {
        return this.templates.filter(template => template.isValidTemplate(cols));
    }
}