« get me outta code hell

use Intl formatting for dates, numbers, lists - 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-05 21:59:38 -0400
committer(quasar) nebula <towerofnix@gmail.com>2021-03-05 21:59:38 -0400
commit1a23b80b3d22911a5b4c24afcdac50fb3618d8ca (patch)
tree729d67cc8d51b608bb6d0faa8bcf0bf5493a8952
parent7462e5126a387c2bd35dbb66f972f68ebaf42a84 (diff)
use Intl formatting for dates, numbers, lists
-rwxr-xr-xupd8.js43
1 files changed, 24 insertions, 19 deletions
diff --git a/upd8.js b/upd8.js
index 61a6ee8..9dd2e2c 100755
--- a/upd8.js
+++ b/upd8.js
@@ -486,6 +486,17 @@ function genStrings(stringsJSON, defaultJSON = null) {
     // Store the strings dictionary itself, also for convenience.
     strings.json = stringsJSON;
 
+    // Store Intl o8jects that can 8e reused for value formatting.
+    strings.intl = {
+        date: new Intl.DateTimeFormat(code, {full: true}),
+        number: new Intl.NumberFormat(code),
+        list: {
+            conjunction: new Intl.ListFormat(code, {type: 'conjunction'}),
+            disjunction: new Intl.ListFormat(code, {type: 'disjunction'}),
+            unit: new Intl.ListFormat(code, {type: 'unit'})
+        }
+    };
+
     const bindUtilities = (obj, bind) => Object.fromEntries(Object.entries(obj).map(
         ([ key, fn ]) => [key, (value, opts = {}) => fn(value, {...bind, ...opts})]
     ));
@@ -516,24 +527,15 @@ const countHelper = (stringKey, argName = stringKey) => (value, {strings, unit =
             ? '.singular'
             : '.plural')
         : `count.${stringKey}`),
-    {[argName]: value});
+    {[argName]: strings.intl.number.format(value)});
 
 const count = {
     date: (date, {strings}) => {
-        // TODO: Localize.
-        const months = [
-            'January', 'February', 'March', 'April', 'May', 'June',
-            'July', 'August', 'September', 'October', 'November', 'December'
-        ]
-        date = new Date(date);
-        return `${date.getDate()} ${months[date.getMonth()]} ${date.getFullYear()}`
+        return strings.intl.date.format(date);
     },
 
     dateRange: ([startDate, endDate], {strings}) => {
-        // TODO: Localize.
-        return (startDate === endDate
-            ? count.date(startDate, {strings})
-            : `${count.date(startDate, {strings})} to ${count.date(endDate, {strings})}`);
+        return strings.intl.date.formatRange(startDate, endDate);
     },
 
     duration: (secTotal, {strings, approximate = false, unit = false}) => {
@@ -566,10 +568,12 @@ const count = {
     },
 
     index: (value, {strings}) => {
-        // TODO: Localize.
-        return th(value);
+        // TODO: Localize...?
+        return '#' + value;
     },
 
+    number: value => strings.intl.number.format(value),
+
     words: (value, {strings, unit = false}) => {
         const words = (value > 1000
             ? strings('count.words.thousand', {words: Math.floor(value / 100) / 10})
@@ -589,11 +593,12 @@ const count = {
     tracks: countHelper('tracks')
 };
 
+const listHelper = type => (list, {strings}) => strings.intl.list[type].format(list);
+
 const list = {
-    // TODO: Localize.
-    comma: (arr, {strings}) => arr.join(', '),
-    or: (arr, {strings}) => joinNoOxford(arr, 'or'),
-    and: (arr, {strings}) => joinNoOxford(arr, 'and')
+    unit: listHelper('unit'),
+    or: listHelper('disjunction'),
+    and: listHelper('conjunction')
 };
 
 // Note there isn't a 'find track data files' function. I plan on including the
@@ -3152,7 +3157,7 @@ function writeArtistPage(artist) {
                         })
                     })}</p>`}
                     <p>${strings('misc.jumpTo.withLinks', {
-                        links: strings.list.comma([
+                        links: strings.list.unit([
                             [
                                 [...releasedTracks, ...unreleasedTracks].length && `<a href="#tracks">${strings('artistPage.trackList.title')}</a>`,
                                 unreleasedTracks.length && `(<a href="#unreleased-tracks">${strings('artistPage.unreleasedTrackList.title')}</a>)`