updated achille version
This commit is contained in:
parent
6bec30c566
commit
19f5299aa7
|
@ -4,7 +4,7 @@ module Common
|
||||||
, module Data.String
|
, module Data.String
|
||||||
, module System.FilePath
|
, module System.FilePath
|
||||||
, module Achille
|
, module Achille
|
||||||
, module Achille.Recipe.Pandoc
|
, module Achille.Task.Pandoc
|
||||||
, module Data.Text
|
, module Data.Text
|
||||||
, module Control.Monad
|
, module Control.Monad
|
||||||
, module Data.Maybe
|
, module Data.Maybe
|
||||||
|
@ -15,7 +15,7 @@ module Common
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Achille
|
import Achille
|
||||||
import Achille.Recipe.Pandoc
|
import Achille.Task.Pandoc
|
||||||
|
|
||||||
import Data.Aeson.Types (FromJSON)
|
import Data.Aeson.Types (FromJSON)
|
||||||
import GHC.Generics (Generic)
|
import GHC.Generics (Generic)
|
||||||
|
|
|
@ -27,7 +27,7 @@ data Cmd
|
||||||
|
|
||||||
|
|
||||||
cli :: Parser Cmd
|
cli :: Parser Cmd
|
||||||
cli = subparser $
|
cli = hsubparser $
|
||||||
command "build" (info (Build <$> switch (long "draft" <> short 'D' <> help "Display drafts"))
|
command "build" (info (Build <$> switch (long "draft" <> short 'D' <> help "Display drafts"))
|
||||||
(progDesc "Build the site once" ))
|
(progDesc "Build the site once" ))
|
||||||
<> command "deploy" (info (pure Deploy) (progDesc "Server go brrr" ))
|
<> command "deploy" (info (pure Deploy) (progDesc "Server go brrr" ))
|
||||||
|
@ -53,11 +53,11 @@ build showDrafts = do
|
||||||
match_ "assets/*" copyFile
|
match_ "assets/*" copyFile
|
||||||
|
|
||||||
-- quid page
|
-- quid page
|
||||||
match_ "./quid.rst" $
|
match_ "./quid.rst" \src ->
|
||||||
compilePandoc
|
compilePandoc src
|
||||||
<&> toHtmlRaw
|
<&> toHtmlRaw
|
||||||
<&> outerWith def {Config.title = "quid"}
|
<&> outerWith def {Config.title = "quid"}
|
||||||
>>= saveFileAs (-<.> "html")
|
>>= write (src -<.> "html")
|
||||||
|
|
||||||
Visual.build
|
Visual.build
|
||||||
Projects.build
|
Projects.build
|
||||||
|
|
16
src/Posts.hs
16
src/Posts.hs
|
@ -36,14 +36,14 @@ data Post = Post
|
||||||
instance IsTimestamped Post where timestamp = postDate
|
instance IsTimestamped Post where timestamp = postDate
|
||||||
|
|
||||||
|
|
||||||
buildPost :: Recipe IO FilePath Post
|
buildPost :: FilePath -> Task IO Post
|
||||||
buildPost = do
|
buildPost src = do
|
||||||
src <- copyFile
|
copyFile src
|
||||||
(PostMeta title draft desc, pandoc) <- readPandocMetadataWith ropts
|
(PostMeta title draft desc, pandoc) <- readPandocMetadataWith ropts src
|
||||||
content <- renderPandocWith wopts pandoc
|
content <- renderPandocWith wopts pandoc
|
||||||
|
|
||||||
pure (renderPost title src content)
|
pure (renderPost title src content)
|
||||||
>>= saveFileAs (-<.> "html")
|
>>= write (src -<.> "html")
|
||||||
<&> Post title (timestamp src) (fromMaybe False draft) Nothing content
|
<&> Post title (timestamp src) (fromMaybe False draft) Nothing content
|
||||||
|
|
||||||
toDate :: UTCTime -> String
|
toDate :: UTCTime -> String
|
||||||
|
@ -55,10 +55,10 @@ build showDrafts = do
|
||||||
<&> filter (\p -> not (postDraft p) || showDrafts)
|
<&> filter (\p -> not (postDraft p) || showDrafts)
|
||||||
<&> recentFirst
|
<&> recentFirst
|
||||||
|
|
||||||
watch posts $ match_ "index.rst" do
|
watch posts $ match_ "index.rst" \src -> do
|
||||||
compilePandoc
|
compilePandoc src
|
||||||
<&> renderIndex posts
|
<&> renderIndex posts
|
||||||
>>= saveFileAs (-<.> "html")
|
>>= write (src -<.> "html")
|
||||||
|
|
||||||
now <- liftIO getCurrentTime
|
now <- liftIO getCurrentTime
|
||||||
let (Just feed) = textFeed (AtomFeed $ postsToFeed now posts)
|
let (Just feed) = textFeed (AtomFeed $ postsToFeed now posts)
|
||||||
|
|
|
@ -21,36 +21,35 @@ build :: Task IO ()
|
||||||
build = do
|
build = do
|
||||||
projects <- matchDir "projects/*/" buildProject
|
projects <- matchDir "projects/*/" buildProject
|
||||||
|
|
||||||
watch projects $ match_ "./projects.rst" do
|
watch projects $ match_ "./projects.rst" \src -> do
|
||||||
intro <- compilePandocWith def wopts
|
intro <- compilePandocWith def wopts src
|
||||||
write "projects.html" (renderIndex intro projects)
|
write "projects.html" (renderIndex intro projects)
|
||||||
|
|
||||||
|
|
||||||
buildProject :: Recipe IO a (Project, FilePath)
|
buildProject :: FilePath -> Task IO (Project, FilePath)
|
||||||
buildProject = do
|
buildProject src = do
|
||||||
match "*" copyFile
|
match "*" copyFile
|
||||||
|
|
||||||
name <- takeBaseName <$> getCurrentDir
|
name <- takeBaseName <$> getCurrentDir
|
||||||
children <- buildChildren name
|
children <- buildChildren name
|
||||||
|
|
||||||
watch children $ matchFile "index.*" do
|
watch children $ matchFile "index.*" \src -> do
|
||||||
(meta, doc) <- readPandocMetadataWith ropts
|
(meta, doc) <- readPandocMetadataWith ropts src
|
||||||
|
|
||||||
renderPandocWith wopts doc
|
renderPandocWith wopts doc
|
||||||
<&> renderProject meta children
|
<&> renderProject meta children
|
||||||
>>= saveFileAs (-<.> "html")
|
>>= write (src -<.> "html")
|
||||||
|
|
||||||
(meta,) <$> getCurrentDir
|
(meta,) <$> getCurrentDir
|
||||||
where
|
where
|
||||||
buildChildren :: String -> Recipe IO a [(Text, FilePath)]
|
buildChildren :: String -> Task IO [(Text, FilePath)]
|
||||||
buildChildren name = match "pages/*" do
|
buildChildren name = match "pages/*" \filepath -> do
|
||||||
filepath <- getInput
|
|
||||||
let (key, file) = getKey $ takeFileName filepath
|
let (key, file) = getKey $ takeFileName filepath
|
||||||
(TitledPage title _, doc) <- readPandocMetadataWith ropts
|
(TitledPage title _, doc) <- readPandocMetadataWith ropts filepath
|
||||||
renderPandocWith wopts doc
|
renderPandocWith wopts doc
|
||||||
<&> toHtmlRaw
|
<&> toHtmlRaw
|
||||||
<&> outerWith (def {Config.title = title})
|
<&> outerWith (def {Config.title = title})
|
||||||
>>= saveFileAs (const $ file -<.> "html")
|
>>= write (filepath -<.> "html")
|
||||||
<&> (title,)
|
<&> (title,)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -14,12 +14,12 @@ data Book = Book
|
||||||
} deriving (Generic, Show, FromJSON)
|
} deriving (Generic, Show, FromJSON)
|
||||||
|
|
||||||
|
|
||||||
build :: Recipe IO () FilePath
|
build :: Task IO FilePath
|
||||||
build = matchFile "readings.yaml" $
|
build = matchFile "readings.yaml" \p ->
|
||||||
readBS
|
readBS p
|
||||||
>>= (liftIO . Yaml.decodeThrow)
|
>>= (liftIO . Yaml.decodeThrow)
|
||||||
<&> renderReadings
|
<&> renderReadings
|
||||||
>>= saveFileAs (-<.> "html")
|
>>= write (p -<.> "html")
|
||||||
|
|
||||||
|
|
||||||
renderReadings :: [Book] -> Html ()
|
renderReadings :: [Book] -> Html ()
|
||||||
|
|
|
@ -7,14 +7,16 @@ import Lucid
|
||||||
|
|
||||||
build :: Task IO ()
|
build :: Task IO ()
|
||||||
build = do
|
build = do
|
||||||
pictures <- match "visual/*" do
|
pictures <- match "visual/*" \src -> do
|
||||||
copyFile
|
copyFile src
|
||||||
runCommandWith (-<.> "thumb.png")
|
callCommandWith
|
||||||
(\a b -> "convert -resize 740x " <> a <> " " <> b)
|
(\a b -> "convert -resize 740x " <> a <> " " <> b)
|
||||||
<&> timestamped
|
(-<.> "thumb.png")
|
||||||
|
src
|
||||||
|
<&> timestamped
|
||||||
|
|
||||||
watch pictures $ match_ "./visual.rst" do
|
watch pictures $ match_ "./visual.rst" \src -> do
|
||||||
intro <- compilePandoc
|
intro <- compilePandoc src
|
||||||
write "visual.html" $ renderVisual intro (recentFirst pictures)
|
write "visual.html" $ renderVisual intro (recentFirst pictures)
|
||||||
|
|
||||||
renderVisual :: Text -> [Timestamped FilePath] -> Html ()
|
renderVisual :: Text -> [Timestamped FilePath] -> Html ()
|
||||||
|
|
Loading…
Reference in New Issue