aboutsummaryrefslogtreecommitdiff
path: root/lib/generators/static.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 16:58:56 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 16:58:56 +0100
commit6cd62e795e3716aa0cbd2d1ff8c1b3a345803563 (patch)
treef35cfd157529d890d8d5e8e4280c9d44d77a5e01 /lib/generators/static.js
parent02f408c24d82d1fac4e55c146c4fa57cbdcdeca4 (diff)
Use modules, use XDG dirs
Diffstat (limited to 'lib/generators/static.js')
-rw-r--r--lib/generators/static.js50
1 files changed, 25 insertions, 25 deletions
diff --git a/lib/generators/static.js b/lib/generators/static.js
index 416076c..60719e2 100644
--- a/lib/generators/static.js
+++ b/lib/generators/static.js
@@ -1,10 +1,10 @@
'use strict';
-const { access, cp } = require('fs/promises');
-const { join } = require('path');
-const { debuglog } = require('util');
-const { rmIfExists } = require('../utils');
-const { kFileNotFoundError } = require('../constants');
+import { access, cp, readdir } from 'fs/promises';
+import { constants } from 'fs';
+import { join } from 'path';
+import { debuglog } from 'util';
+import { kFileNotFoundError } from '../constants.js';
const internals = {
debuglog: debuglog('blog'),
@@ -19,31 +19,31 @@ const internals = {
* @param {string} target the target directory
* @param {Array.<Blog.tPost>} posts the list of posts
*/
-module.exports = async function StaticGenerator(source, target, posts) {
+export default async function StaticGenerator(source, target, _) {
- const assetsTarget = join(target, internals.kAssetsDirectoryName);
+ try {
+ await access(source, constants.R_OK);
- internals.debuglog(`Removing ${assetsTarget}`);
- await rmIfExists(assetsTarget);
+ const entries = await readdir(source, { withFileTypes: true });
+ for (const entry of entries) {
+ const sourceAsset = join(source, entry.name);
+ const targetAsset = join(target, entry.name);
- for (let i = 0; i < posts.length; ++i) {
- const postSourcePath = join(source, `${i}`);
+ internals.debuglog(`Copying ${sourceAsset} to ${targetAsset}`);
- try {
- await access(postSourcePath);
-
- const assetsSource = join(postSourcePath, internals.kAssetsDirectoryName);
-
- internals.debuglog(`Copying ${assetsSource} to ${assetsTarget}`);
- await cp(assetsSource, assetsTarget, { recursive: true });
- }
- catch (error) {
- if (error.code === kFileNotFoundError) {
- internals.debuglog(`Skipping ${i}`);
- continue;
+ if (entry.isDirectory()) {
+ await cp(sourceAsset, targetAsset, { recursive: true });
+ } else {
+ await cp(sourceAsset, targetAsset);
}
-
- throw error;
}
}
+ catch (error) {
+ if (error.code === kFileNotFoundError) {
+ internals.debuglog(`No static directory found in ${source}`);
+ return;
+ }
+
+ throw error;
+ }
};