now retrieving thumbnail sizes

This commit is contained in:
flupe 2020-10-08 00:42:10 +02:00
parent 19f5299aa7
commit 2eed97086f
3 changed files with 24 additions and 10 deletions

View File

@ -63,4 +63,3 @@ build showDrafts = do
Projects.build Projects.build
Posts.build showDrafts Posts.build showDrafts
Readings.build Readings.build

View File

@ -76,7 +76,6 @@ outerWith SiteConfig{title,..} content = doctypehtml_ do
a_ [ href_ "/visual.html" ] "Visual" a_ [ href_ "/visual.html" ] "Visual"
a_ [ href_ "/readings.html" ] "Readings" a_ [ href_ "/readings.html" ] "Readings"
a_ [ href_ "/quid.html" ] "Quid" a_ [ href_ "/quid.html" ] "Quid"
a_ [ href_ "/atom.xml" ] "Feed"
main_ content main_ content

View File

@ -9,20 +9,36 @@ build :: Task IO ()
build = do build = do
pictures <- match "visual/*" \src -> do pictures <- match "visual/*" \src -> do
copyFile src copyFile src
callCommandWith src' <- toAbsolute src
(\a b -> "convert -resize 740x " <> a <> " " <> b) size <- (resized . read)
(-<.> "thumb.png") <$> readCommand "identify" ["-ping", "-format", "(%w, %h)", src']
src processMagick src
<&> timestamped <&> timestamped
<&> fmap (size,)
watch pictures $ match_ "./visual.rst" \src -> do watch pictures $ match_ "./visual.rst" \src -> do
intro <- compilePandoc src intro <- compilePandoc src
write "visual.html" $ renderVisual intro (recentFirst pictures) write "visual.html" $ renderVisual intro (recentFirst pictures)
renderVisual :: Text -> [Timestamped FilePath] -> Html () resized :: (Int, Int) -> (Int, Int)
resized (width, height) = (710, round $ fi height * 710.0 / fi width)
where
fi :: Int -> Float
fi = fromIntegral
renderVisual :: Text -> [Timestamped ((Int, Int), FilePath)] -> Html ()
renderVisual txt imgs = renderVisual txt imgs =
outerWith def {title = "visual"} do outerWith def {title = "visual"} do
toHtmlRaw txt toHtmlRaw txt
hr_ [] hr_ []
section_ $ forM_ imgs \ (Timestamped _ p) -> section_ $ forM_ imgs \ (Timestamped _ ((width, height), p)) ->
figure_ $ img_ [ src_ (fromString p), loading_ "lazy" ] figure_ $ img_
[ src_ (fromString p)
, width_ (fromString $ show width)
, height_ (fromString $ show height)
, loading_ "lazy" ]
processMagick :: FilePath -> Task IO FilePath
processMagick = callCommandWith
(\a b -> "convert -resize 710x " <> a <> " " <> b)
(-<.> "thumb.webp")