« get me outta code hell

generateStaticPage.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/generateStaticPage.js
blob: 931352b42f490eb8bd5d0117f3cebf8a73f8647d (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
export default {
  contentDependencies: ['generatePageLayout', 'transformContent'],
  extraDependencies: ['html'],

  relations(relation, staticPage) {
    return {
      layout: relation('generatePageLayout'),
      content: relation('transformContent', staticPage.content),
    };
  },

  data(staticPage) {
    return {
      name: staticPage.name,
      stylesheet: staticPage.stylesheet,
      script: staticPage.script,
    };
  },

  generate(data, relations, {html}) {
    return relations.layout
      .slots({
        title: data.name,
        headingMode: 'sticky',

        styleTags: [
          html.tag('style', {class: 'static-page-style'},
            {[html.onlyIfContent]: true},
            data.stylesheet),
        ],

        mainClasses: ['long-content'],
        mainContent: [
          relations.content,

          html.tag('script',
            {[html.onlyIfContent]: true},
            data.script),
        ],

        navLinkStyle: 'hierarchical',
        navLinks: [
          {auto: 'home'},
          {auto: 'current'},
        ],
      });
  },
};