« get me outta code hell

generateNewsEntryPage.js « dependencies « content « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies/generateNewsEntryPage.js
blob: e3071a57b1296632546344e276af271e4c7cf8cd (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import {sortChronologically} from '../../util/wiki-data.js';

export default {
  contentDependencies: [
    'generatePageLayout',
    'generatePreviousNextLinks',
    'linkNewsEntry',
    'linkNewsIndex',
    'transformContent',
  ],

  extraDependencies: ['html', 'language', 'wikiData'],

  sprawl({newsData}) {
    return {newsData};
  },

  query({newsData}, newsEntry) {
    const entries = sortChronologically(newsData.slice());

    const index = entries.indexOf(newsEntry);

    const previousEntry =
      (index > 0
        ? entries[index - 1]
        : null);

    const nextEntry =
      (index < entries.length - 1
        ? entries[index + 1]
        : null);

    return {previousEntry, nextEntry};
  },

  relations(relation, query, sprawl, newsEntry) {
    const relations = {};

    relations.layout =
      relation('generatePageLayout');

    relations.content =
      relation('transformContent', newsEntry.content);

    relations.newsIndexLink =
      relation('linkNewsIndex');

    relations.currentEntryLink =
      relation('linkNewsEntry', newsEntry);

    if (query.previousEntry || query.nextEntry) {
      relations.previousNextLinks =
        relation('generatePreviousNextLinks');

      if (query.previousEntry) {
        relations.previousEntryLink =
          relation('linkNewsEntry', query.previousEntry);
      }

      if (query.nextEntry) {
        relations.nextEntryLink =
          relation('linkNewsEntry', query.nextEntry);
      }
    }

    return relations;
  },

  data(query, sprawl, newsEntry) {
    return {
      name: newsEntry.name,
      date: newsEntry.date,
    };
  },

  generate(data, relations, {html, language}) {
    return relations.layout.slots({
      title:
        language.$('newsEntryPage.title', {
          entry: data.name,
        }),

      headingMode: 'sticky',

      mainClasses: ['long-content'],
      mainContent: [
        html.tag('p',
          language.$('newsEntryPage.published', {
            date: language.formatDate(data.date),
          })),

        relations.content,
      ],

      navLinkStyle: 'hierarchical',
      navLinks: [
        {auto: 'home'},
        {
          html:
            relations.newsIndexLink
              .slot('content', language.$('newsEntryPage.nav.news')),
        },
        {
          html:
            language.$('newsEntryPage.nav.entry', {
              date: language.formatDate(data.date),
              entry:
                relations.currentEntryLink
                  .slot('attributes', {class: 'current'}),
            }),

          accent:
            (relations.previousNextLinks
              ? `(${language.formatUnitList(relations.previousNextLinks.slots({
                  previousLink: relations.previousEntryLink ?? null,
                  nextLink: relations.nextEntryLink ?? null,
                }).content)})`
              : null),
        },
      ],
    });
  },
};