summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/formatting.js
blob: 5f4633bba2120b1fe09d1542ff1ad1a3213e1727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import {prettyNumber} from '../utils.js';

const {lang} = document.documentElement;
const dateFormatter = new Intl.DateTimeFormat(lang, {year: 'numeric', month: 'long', day: 'numeric'});

export function initFormattingReplacements() {
  // replace english formatted numbers with locale-specific separators
  for (const el of document.getElementsByClassName('js-pretty-number')) {
    const num = Number(el.getAttribute('data-value'));
    const formatted = prettyNumber(num, lang);
    if (formatted && formatted !== el.textContent) {
      el.textContent = formatted;
    }
  }

  // for each <time></time> tag, if it has the data-format="date" attribute, format
  // the text according to the user's chosen locale
  for (const timeElement of document.querySelectorAll('time[data-format="date"]')) {
    timeElement.textContent = dateFormatter.format(new Date(timeElement.dateTime));
  }
}