now retrieving thumbnail sizes
This commit is contained in:
parent
19f5299aa7
commit
2eed97086f
|
@ -63,4 +63,3 @@ build showDrafts = do
|
||||||
Projects.build
|
Projects.build
|
||||||
Posts.build showDrafts
|
Posts.build showDrafts
|
||||||
Readings.build
|
Readings.build
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue