summaryrefslogtreecommitdiff
path: root/src/build/loadMD.mjs
blob: 6ba4f76b7220c3c9e2a1d5c09b843615923b11d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import fs from 'node:fs';
import {u} from 'unist-builder';
import {h} from 'hastscript';
import {select} from 'hast-util-select';
import {toString as hastToString} from 'mdast-util-to-string';
import cssesc from 'cssesc';
import toml from '@ltd/j-toml';

import {toString, toMdRaw, mdToHtmlRaw} from './to-html.mjs';
import {getArticleYear} from './article.mjs';
import i18n from './i18n.mjs';

const loadMD = (listFile, suffix, lang) => {
  const listContent = [];
  for (const file of listFile) {
    console.log(`Working on ${file}`);
    const content = fs.readFileSync(`${suffix}/${file}`, 'utf8');
    const mdRaw = toMdRaw(content);
    const tomlStringValue = mdRaw.children[0].value;
    const metaData = toml.parse(tomlStringValue);
    const newHTML = mdToHtmlRaw(mdRaw);

    const htmlContent = newHTML;
    const htmlRender = toString(htmlContent);

    const titleHtml = select('h1', htmlContent);
    const intro = select('p', htmlContent);
    intro.children = intro.children.filter(child => child.tagName !== 'br');

    const logo = select('img', intro); 
    if (logo && logo?.properties) {
      if (logo.properties.src[0] != '/') {
        logo.properties.src = `/${suffix}/${logo.properties.src}`;
      }
      logo.properties.height = '150';
      logo.properties.width = '150';
    }

    const logoP = select('source', intro);
    if (logoP !== null) {
      logoP.properties.srcSet = `/${suffix}/${logoP.properties.srcSet}`;
    }

    titleHtml.children[0].properties.href = `/${suffix}/${file.slice(0, -3)}`;

    const title = hastToString(titleHtml);
    const domTitle = cssesc(title.replace(/\s+/g, '-').replace(/['"#@]/, '').toLowerCase()); // Maybe encodeURI

    const readMore = h('a', i18n[lang]['read_more']);

    readMore.properties.href = `/${suffix}/${file.slice(0, -3)}`;
    const pubYear = getArticleYear({metaData});

    if (metaData.pubDate) {
      try {
        metaData.pubDateISO = metaData.pubDate.toISOString();
      } catch (error) {
        console.error(`Error on file ${file} with pubDate (${metaData.pubDate}): ${error}`);
      }
    }

    listContent.push({
      name: file.slice(0, -3),
      content: htmlRender,
      intro: toString(u('root', [titleHtml, intro, readMore])),
      introDesc: hastToString(intro),
      imageUrl: logo?.properties?.src || '',
      metaData,
      pubYear,
      title,
      domTitle,
      url: `/${suffix}/${file.slice(0, -3)}`,
    });
  }

  return listContent;
};

export default loadMD;