Skip to content
Snippets Groups Projects
Commit fd3d3c41 authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

make the move work

parent ed2d53ed
No related branches found
No related tags found
No related merge requests found
Pipeline #3517 passed
...@@ -128,10 +128,13 @@ function copyStaticFiles(builddir) { ...@@ -128,10 +128,13 @@ function copyStaticFiles(builddir) {
}, },
) )
fsextra.copy( fsextra.copy(
path.join(__dirname, '..', 'static', 'articles'), path.join(__dirname, '..', 'content', 'articles'),
`${builddir}/clanek`, `${builddir}/clanek`,
(file) => {
return !file.endsWith('.md')
},
() => { () => {
console.log('copy static/articles done') console.log('copy content/articles done')
}, },
) )
} }
......
...@@ -10,6 +10,7 @@ export default (obj) => { ...@@ -10,6 +10,7 @@ export default (obj) => {
const onFile = (root, fileStats, next, array) => { const onFile = (root, fileStats, next, array) => {
// ignore files like .gitkeep // ignore files like .gitkeep
if (fileStats.name.startsWith('.')) return next() if (fileStats.name.startsWith('.')) return next()
if (!fileStats.name.endsWith('.md')) return next()
const filename = path.join(root, fileStats.name) const filename = path.join(root, fileStats.name)
const file = path.relative(path.join(__dirname, '..', 'content'), filename) const file = path.relative(path.join(__dirname, '..', 'content'), filename)
fs.readFile(filename, 'utf8', (err, data) => { fs.readFile(filename, 'utf8', (err, data) => {
......
/* /*
* This jobs translates files to resulting URL * This jobs translates files to resulting URL
*/ */
import path from 'path'
export const rewriteURL = (file) => export const rewriteURL = (file) =>
file.replace(/\.md$/, '/').replace(/^articles/, 'clanek') file.replace(/\/[^/]+$/, '/').replace(/^articles/, 'clanek')
export default (obj) => { export default (obj) => {
console.log('Build step: URLs') console.log('Build step: URLs')
return new Promise((resolve) => { return new Promise((resolve) => {
for (const page of obj.pages) { for (const page of obj.pages) {
const basename = path.basename(page.file, '.md')
if (!page.file.endsWith(basename + '/' + basename + '.md')) {
throw new Error(
'Article md file must be in eponymous folder (ie. something/article-name/article-name.md)',
)
}
page.originalFile = page.file
page.file = rewriteURL(page.file) page.file = rewriteURL(page.file)
page.canonicalURL = `https://ok1kvk.cz/${page.file}` page.canonicalURL = `https://ok1kvk.cz/${page.file}`
} }
......
...@@ -84,7 +84,7 @@ export default { ...@@ -84,7 +84,7 @@ export default {
}, },
} }
function Article({ metadata, content, config, file }) { function Article({ metadata, content, config, originalFile }) {
return ( return (
<BaseBody config={config}> <BaseBody config={config}>
<div className="section container" id="content"> <div className="section container" id="content">
...@@ -98,9 +98,7 @@ function Article({ metadata, content, config, file }) { ...@@ -98,9 +98,7 @@ function Article({ metadata, content, config, file }) {
className="author" className="author"
style={{ color: '#a2a2a2', display: 'block' }} style={{ color: '#a2a2a2', display: 'block' }}
target="_blank" target="_blank"
href={`https://git.ok1kvk.cz/ok1kvk.cz/content/tree/main/content/articles/${file href={`https://git.ok1kvk.cz/ok1kvk.cz/content/tree/main/content/articles/${originalFile}`}
.replace('clanek/', '')
.replace(/\/$/, '')}.md`}
> >
{metadata.published ? ( {metadata.published ? (
<> <>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment