78 lines
2.1 KiB
JavaScript
78 lines
2.1 KiB
JavaScript
import path from 'path'
|
|
import fs from 'fs'
|
|
import set from 'lodash.set'
|
|
import { loadYaml, folders } from './i18n.mjs'
|
|
|
|
// Some arbitrary future time
|
|
const future = new Date('10-12-2026').getTime()
|
|
|
|
// We need to load the translation for blog + showcase
|
|
const loadTranslation = (locale) => {
|
|
const file = `${folders.shared}/navigation/sections.${locale}.yaml`
|
|
let data
|
|
try {
|
|
data = loadYaml(`${folders.shared}/navigation/sections.${locale}.yaml`, false)
|
|
} catch (err) {
|
|
data = {}
|
|
}
|
|
if (!data) data = {}
|
|
|
|
return data
|
|
}
|
|
|
|
/*
|
|
* Main method that does what needs doing
|
|
*/
|
|
export const prebuildNavigation = (mdxPages, strapiPosts, site) => {
|
|
/*
|
|
* Since this is written to disk and loaded as JSON, we minimize
|
|
* the data to load by using the following 1-character keys:
|
|
*
|
|
* t: title
|
|
* l: link title (shorter version of the title, optional
|
|
* o: order, optional
|
|
* s: slug without leading or trailing slash (/)
|
|
*/
|
|
const nav = {}
|
|
for (const lang in mdxPages) {
|
|
const translations = loadTranslation(lang)
|
|
nav[lang] = {}
|
|
|
|
// Handle MDX content
|
|
for (const slug of Object.keys(mdxPages[lang]).sort()) {
|
|
const page = mdxPages[lang][slug]
|
|
const chunks = slug.split('/')
|
|
const val = {
|
|
t: page.t,
|
|
s: slug,
|
|
}
|
|
if (page.o) val._o = page.o
|
|
set(nav, [lang, ...chunks], val)
|
|
}
|
|
|
|
// Handle strapi content
|
|
for (const type in strapiPosts) {
|
|
set(nav, [lang, type], {
|
|
t: translations[type] ? translations[type] : type,
|
|
l: type,
|
|
s: type,
|
|
o: translations[type] ? translations[type] : type,
|
|
})
|
|
for (const [slug, page] of Object.entries(strapiPosts[type][lang])) {
|
|
const chunks = slug.split('/')
|
|
set(nav, [lang, type, ...chunks], {
|
|
t: page.title,
|
|
l: page.linktitle,
|
|
s: type + '/' + slug,
|
|
o: (future - new Date(page.date).getTime()) / 100000,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
fs.writeFileSync(
|
|
path.resolve('..', site, 'prebuild', `navigation.mjs`),
|
|
`export const prebuildNavigation = ${JSON.stringify(nav, null, 2)}`
|
|
)
|
|
|
|
return true
|
|
}
|