« get me outta code hell

let static content specify auto-formatted date - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2021-03-07 18:36:46 -0400
committer(quasar) nebula <towerofnix@gmail.com>2021-03-07 18:36:46 -0400
commitc21054c17e5736299434d4aa9b0729b757e982fa (patch)
treea864fb21626df22202239318fe4ea418599d49e1
parentf6c8796571a67111f2070328e806b5a8adbfe9c6 (diff)
let static content specify auto-formatted date
-rwxr-xr-xupd8.js34
1 files changed, 23 insertions, 11 deletions
diff --git a/upd8.js b/upd8.js
index 772573a..a54a886 100755
--- a/upd8.js
+++ b/upd8.js
@@ -745,6 +745,11 @@ const replacerSpec = {
         search: null,
         link: 'commentaryIndex'
     },
+    'date': {
+        search: null,
+        value: ref => new Date(ref),
+        html: (date, {strings}) => `<time datetime="${date.toString()}">${strings.count.date(date)}</time>`
+    },
     'flash': {
         search: 'flash',
         link: 'flash',
@@ -813,8 +818,8 @@ const replacerSpec = {
 
 {
     let error = false;
-    for (const [key, {link: linkKey, search: searchKey}] of Object.entries(replacerSpec)) {
-        if (!link[linkKey]) {
+    for (const [key, {link: linkKey, search: searchKey, value, html}] of Object.entries(replacerSpec)) {
+        if (!html && !link[linkKey]) {
             logError`The replacer spec ${key} has invalid link key ${linkKey}! Specify it in link specs or fix typo.`;
             error = true;
         }
@@ -838,32 +843,39 @@ function transformInline(text, {strings, to}) {
         const {
             search: searchKey,
             link: linkKey,
-            transformName = null
+            value: valueFn,
+            html: htmlFn,
+            transformName
         } = replacerSpec[category];
 
-        const thing = (searchKey
-            ? search[searchKey](ref)
-            : {
+        const value = (
+            valueFn ? valueFn(ref) :
+            searchKey ? search[searchKey](ref) :
+            {
                 directory: ref.replace(category + ':', ''),
                 name: null
             });
 
-        if (!thing) {
+        if (!value) {
             logWarn`The link ${match} does not match anything!`;
             return match;
         }
 
         const label = (enteredName
-            || transformName && transformName(thing.name, match, offset, text)
-            || thing.name);
+            || transformName && transformName(value.name, match, offset, text)
+            || value.name);
 
-        if (!label) {
+        if (!valueFn && !label) {
             logWarn`The link ${match} requires a label be entered!`;
             return match;
         }
 
+        const fn = (htmlFn
+            ? htmlFn
+            : strings.link[linkKey]);
+
         try {
-            return strings.link[linkKey](thing, {text: label, hash, to});
+            return fn(value, {text: label, hash, strings, to});
         } catch (error) {
             logError`The link ${match} failed to be processed: ${error}`;
             return match;