From 922481cfd39543128396dca05c7a83588bcd332e Mon Sep 17 00:00:00 2001 From: pacien Date: Thu, 1 Dec 2022 20:00:12 +0100 Subject: compiler: fix build for ghc 9.2 --- compiler/src/Resource.hs | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'compiler/src/Resource.hs') diff --git a/compiler/src/Resource.hs b/compiler/src/Resource.hs index 1868512..e8ca58c 100644 --- a/compiler/src/Resource.hs +++ b/compiler/src/Resource.hs @@ -1,7 +1,7 @@ -- ldgallery - A static generator which turns a collection of tagged -- pictures into a searchable web gallery. -- --- Copyright (C) 2019-2021 Pacien TRAN-GIRARD +-- Copyright (C) 2019-2022 Pacien TRAN-GIRARD -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as @@ -56,7 +56,7 @@ encodingOptions :: JSON.Options encodingOptions = JSON.defaultOptions { JSON.fieldLabelModifier = map toLower , JSON.constructorTagModifier = map toLower - , JSON.sumEncoding = JSON.defaultTaggedObject + , JSON.sumEncoding = JSON.TaggedObject { JSON.tagFieldName = "type" , JSON.contentsFieldName = "contents" } @@ -180,7 +180,7 @@ buildGalleryTree processItem processThumbnail tagsFromDirsConfig = & map (prefix tagsFromDirsConfig ++) aggregateTags :: [GalleryItem] -> [Tag] - aggregateTags = concatMap (\item -> tags (item::GalleryItem)) + aggregateTags = concatMap Resource.tags maybeThumbnail :: Path -> Maybe Path -> IO (Maybe Thumbnail) maybeThumbnail _ Nothing = return Nothing @@ -188,7 +188,7 @@ buildGalleryTree processItem processThumbnail tagsFromDirsConfig = mostRecentModTime :: [GalleryItem] -> Maybe ZonedTime mostRecentModTime = - maximumByMay comparingTime . map (datetime::(GalleryItem -> ZonedTime)) + maximumByMay comparingTime . map Resource.datetime comparingTime :: ZonedTime -> ZonedTime -> Ordering comparingTime l r = compare (zonedTimeToUTC l) (zonedTimeToUTC r) @@ -220,14 +220,11 @@ galleryOutputDiff resources ref = resPath :: GalleryItemProps -> Maybe Path resPath Directory{} = Nothing - resPath resourceProps = - Just - $ resourcePath - $ (resource :: (GalleryItemProps -> Resource)) resourceProps + resPath resourceProps = Just $ resourcePath $ resourceProps.resource thumbnailPaths :: [GalleryItem] -> [Path] thumbnailPaths = - map (resourcePath . (resource :: (Thumbnail -> Resource))) + map (\thumbnail -> resourcePath thumbnail.resource) . mapMaybe thumbnail (\\) :: [Path] -> [Path] -> [Path] -- cgit v1.2.3