added option for building with drafts
This commit is contained in:
parent
d286f603a6
commit
6bec30c566
|
@ -1,6 +1,7 @@
|
||||||
{ mkDerivation, achille, aeson, base, binary, bytestring
|
{ mkDerivation, achille, aeson, base, binary, bytestring
|
||||||
, containers, data-default, feed, filepath, lucid, pandoc
|
, containers, data-default, directory, feed, filepath, lucid
|
||||||
, pandoc-types, sort, stdenv, text, time, yaml
|
, optparse-applicative, pandoc, pandoc-types, process, sort, stdenv
|
||||||
|
, text, time, yaml
|
||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "site";
|
pname = "site";
|
||||||
|
@ -9,8 +10,9 @@ mkDerivation {
|
||||||
isLibrary = false;
|
isLibrary = false;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
executableHaskellDepends = [
|
executableHaskellDepends = [
|
||||||
achille aeson base binary bytestring containers data-default feed
|
achille aeson base binary bytestring containers data-default
|
||||||
filepath lucid pandoc pandoc-types sort text time yaml
|
directory feed filepath lucid optparse-applicative pandoc
|
||||||
|
pandoc-types process sort text time yaml
|
||||||
];
|
];
|
||||||
license = "unknown";
|
license = "unknown";
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
|
|
|
@ -34,6 +34,9 @@ executable site
|
||||||
, feed
|
, feed
|
||||||
, time
|
, time
|
||||||
, lucid
|
, lucid
|
||||||
|
, optparse-applicative
|
||||||
|
, process
|
||||||
|
, directory
|
||||||
extensions: BlockArguments
|
extensions: BlockArguments
|
||||||
, TupleSections
|
, TupleSections
|
||||||
, OverloadedStrings
|
, OverloadedStrings
|
||||||
|
|
40
src/Main.hs
40
src/Main.hs
|
@ -1,5 +1,11 @@
|
||||||
|
{-# LANGUAGE LambdaCase #-}
|
||||||
|
|
||||||
module Main where
|
module Main where
|
||||||
|
|
||||||
|
import qualified System.Process as Process
|
||||||
|
import System.Directory (removePathForcibly)
|
||||||
|
import Control.Monad (void, mapM_)
|
||||||
|
import Options.Applicative
|
||||||
import Lucid
|
import Lucid
|
||||||
|
|
||||||
import Common
|
import Common
|
||||||
|
@ -11,9 +17,38 @@ import qualified Projects
|
||||||
import qualified Visual
|
import qualified Visual
|
||||||
import qualified Readings
|
import qualified Readings
|
||||||
|
|
||||||
|
type ShowDrafts = Bool
|
||||||
|
|
||||||
|
data Cmd
|
||||||
|
= Build ShowDrafts -- ^ Build the site
|
||||||
|
| Deploy -- ^ Deploy to the server
|
||||||
|
| Clean -- ^ Delete all artefacts
|
||||||
|
deriving (Eq, Show)
|
||||||
|
|
||||||
|
|
||||||
|
cli :: Parser Cmd
|
||||||
|
cli = subparser $
|
||||||
|
command "build" (info (Build <$> switch (long "draft" <> short 'D' <> help "Display drafts"))
|
||||||
|
(progDesc "Build the site once" ))
|
||||||
|
<> command "deploy" (info (pure Deploy) (progDesc "Server go brrr" ))
|
||||||
|
<> command "clean" (info (pure Clean) (progDesc "Delete all artefacts"))
|
||||||
|
|
||||||
|
|
||||||
main :: IO ()
|
main :: IO ()
|
||||||
main = achilleWith config do
|
main = customExecParser p opts >>= \case
|
||||||
|
Deploy -> mapM_ Process.callCommand (deployCmd config)
|
||||||
|
Clean -> removePathForcibly (outputDir config)
|
||||||
|
>> removePathForcibly (cacheFile config)
|
||||||
|
Build showDrafts ->
|
||||||
|
void $ runTask [] config (build showDrafts)
|
||||||
|
where
|
||||||
|
opts = info (cli <**> helper) $ fullDesc <> header desc
|
||||||
|
p = prefs showHelpOnEmpty
|
||||||
|
desc = "acatalepsie & co"
|
||||||
|
|
||||||
|
|
||||||
|
build :: ShowDrafts -> Task IO String
|
||||||
|
build showDrafts = do
|
||||||
-- static assets
|
-- static assets
|
||||||
match_ "assets/*" copyFile
|
match_ "assets/*" copyFile
|
||||||
|
|
||||||
|
@ -26,5 +61,6 @@ main = achilleWith config do
|
||||||
|
|
||||||
Visual.build
|
Visual.build
|
||||||
Projects.build
|
Projects.build
|
||||||
Posts.build
|
Posts.build showDrafts
|
||||||
Readings.build
|
Readings.build
|
||||||
|
|
||||||
|
|
|
@ -49,10 +49,10 @@ buildPost = do
|
||||||
toDate :: UTCTime -> String
|
toDate :: UTCTime -> String
|
||||||
toDate = formatTime defaultTimeLocale rfc822DateFormat
|
toDate = formatTime defaultTimeLocale rfc822DateFormat
|
||||||
|
|
||||||
build :: Task IO ()
|
build :: Bool -> Task IO ()
|
||||||
build = do
|
build showDrafts = do
|
||||||
posts <- match "posts/*" buildPost
|
posts <- match "posts/*" buildPost
|
||||||
<&> filter (not . postDraft)
|
<&> filter (\p -> not (postDraft p) || showDrafts)
|
||||||
<&> recentFirst
|
<&> recentFirst
|
||||||
|
|
||||||
watch posts $ match_ "index.rst" do
|
watch posts $ match_ "index.rst" do
|
||||||
|
|
Loading…
Reference in New Issue