-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrite-layout-to-index.js
28 lines (25 loc) · 1.33 KB
/
write-layout-to-index.js
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
const fs = require('fs');
const path = require('path');
function processHeaderAndFooter() {
const headerFile = './dist/layout/header/header.html.template';
const footerFile = './dist/layout/footer/footer.html.template';
const indexPath = path.join(__dirname, 'src/index.html');
const indexContent = fs.readFileSync(indexPath, 'utf8');
const headerContent = fs.readFileSync(headerFile, 'utf8');
const footerContent = fs.readFileSync(footerFile, 'utf8');
const indexHeaderRegex = /<header class="header">([\s\S]*?)<\/header>/;
const indexFooterRegex = /<footer class="footer">([\s\S]*?)<\/footer>/;
const indexHeaderMatch = indexHeaderRegex.exec(indexContent);
const indexFooterMatch = indexFooterRegex.exec(indexContent);
let updatedIndexContent = indexContent;
if (indexHeaderMatch) {
const indexHeaderReplacement = `<header class="header">${headerContent}</header>`;
updatedIndexContent = updatedIndexContent.replace(indexHeaderMatch[0], indexHeaderReplacement);
}
if (indexFooterMatch) {
const indexFooterReplacement = `<footer class="footer">${footerContent}</footer>`;
updatedIndexContent = updatedIndexContent.replace(indexFooterMatch[0], indexFooterReplacement);
}
fs.writeFileSync(indexPath + ".template", updatedIndexContent);
}
processHeaderAndFooter();