smarthbs/ts/smarthbs.partials.ts

27 lines
941 B
TypeScript
Raw Permalink Normal View History

2022-07-24 13:30:19 +00:00
import * as plugins from './smarthbs.plugins.js';
2017-03-19 16:14:28 +00:00
/**
* registers a directory of partials to make them available within handlebars compilation
*/
2017-05-01 14:57:53 +00:00
export let registerPartialDir = (dirPathArg: string): Promise<any> => {
let done = plugins.smartpromise.defer();
2022-07-24 13:30:19 +00:00
plugins.smartfile.fs.listFileTree(dirPathArg, '**/*.hbs').then((hbsFileArrayArg) => {
2017-03-19 16:14:28 +00:00
for (let hbsFilePath of hbsFileArrayArg) {
let parsedPath = plugins.path.parse(hbsFilePath);
let hbsFileString = plugins.smartfile.fs.toStringSync(
plugins.path.join(dirPathArg, hbsFilePath)
);
2017-05-11 12:51:20 +00:00
if (parsedPath.dir === '/') {
parsedPath.dir = '';
2017-03-19 16:14:28 +00:00
}
2017-05-11 12:51:20 +00:00
if (parsedPath.dir !== '') {
parsedPath.dir = parsedPath.dir + '/';
2017-05-11 12:51:20 +00:00
}
let partialName = `partials/${parsedPath.dir}${parsedPath.name}`;
plugins.handlebars.registerPartial(partialName, hbsFileString);
done.resolve();
2017-03-19 16:14:28 +00:00
}
});
return done.promise;
};