Make generator run

This commit is contained in:
Niels G. W. Serup 2024-09-30 23:31:16 +02:00
parent abc05a6032
commit f6c73cf906
No known key found for this signature in database
GPG Key ID: 38EEEBCE67324F19
1 changed files with 10 additions and 7 deletions

View File

@ -24,13 +24,13 @@ makeImageHTML t = do
(toText thumbnail)
(inject "\"></a></p>"))))
handleRecipeDir :: Token FilePath -> Token Template -> Token FilePath -> Token FilePath -> DepGenM ()
handleRecipeDir outputDir template indexName dir = do
recipeDirOut <- joinPaths outputDir dir
handleRecipeDir :: Token FilePath -> Token FilePath -> Token Template -> Token FilePath -> Token FilePath -> DepGenM ()
handleRecipeDir inputDir outputDir template indexName name = do
dir <- joinPaths inputDir name
recipeDirOut <- joinPaths outputDir name
makeDir recipeDirOut
dirContents <- listDirectory dir
areImageFilenames <- mapDepGenM hasImageExtension
$ unzipSndDepGenM $ mapDepGenM fileComponents dirContents
areImageFilenames <- mapDepGenM hasImageExtension dirContents
imageFilenames <- filterDepGenM areImageFilenames dirContents
imagePaths <- mapDepGenM (joinPaths dir) imageFilenames
imagePathsOut <- mapDepGenM (joinPaths recipeDirOut) imageFilenames
@ -56,8 +56,11 @@ generateSite = do
makeDir outputRecipesDir
template <- readTemplate $ inject "template.html"
indexName <- inject "index.html"
dirContents <- listDirectory recipesDir
mapDepGenM_ (handleRecipeDir outputRecipesDir template indexName) dirContents
dirNames <- listDirectory recipesDir
dirPaths <- mapDepGenM (joinPaths recipesDir) dirNames
dirPathsAreSubdirs <- mapDepGenM isDirectory dirPaths
dirNames' <- filterDepGenM dirPathsAreSubdirs dirNames
mapDepGenM_ (handleRecipeDir recipesDir outputRecipesDir template indexName) dirNames'
html <- applyTemplate template $ runPandoc $ inject "om.md"
aboutDir <- joinPaths outputDir $ inject "om"
makeDir aboutDir