aboutsummaryrefslogtreecommitdiff
path: root/src/templates.js
blob: a9e330537e9ac51bcbeeb581f84562dd019bf660 (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
const fs = require('fs');
const path = require('path');
const handlebars = require("handlebars");

function loadTemplate(templates, name, filepath){
    const templateContent = fs.readFileSync(filepath).toString()
    templates[name] = handlebars.compile(templateContent);
}

function loadPartial(name, filepath){
    handlebars.registerPartial(name, fs.readFileSync(filepath).toString());
}

function setUpTemplates(){
    loadPartial("navigation", path.join(__dirname, "templates/navigation.html"))

    let templates = {};
    loadTemplate(templates, "about", path.join(__dirname, 'templates/about.html'))
    loadTemplate(templates, "login", path.join(__dirname, 'templates/login.html'))
    loadTemplate(templates, "signup", path.join(__dirname, 'templates/sign-up.html'))
    loadTemplate(templates, "ledger", path.join(__dirname, 'templates/ledger.html'))
    loadTemplate(templates, "ledger-edit", path.join(__dirname, 'templates/ledger-edit.html'))
    loadTemplate(templates, "goals", path.join(__dirname, 'templates/goals.html'))
    loadTemplate(templates, "expected", path.join(__dirname, 'templates/expected.html'))
    loadTemplate(templates, "summary", path.join(__dirname, 'templates/summary.html'))
    return templates
}


module.exports = {
    setUpTemplates
};