{- This file is part of Vervis. - - Written in 2016 by fr33domlover . - - ♡ Copying is an act of love. Please copy, reuse and share. - - The author(s) have dedicated all copyright and related and neighboring - rights to this software to the public domain worldwide. This software is - distributed without any warranty. - - You should have received a copy of the CC0 Public Domain Dedication along - with this software. If not, see - . -} module Vervis.Widget.Discussion ( messageW , discussionW ) where import Prelude import Control.Monad.IO.Class (liftIO) import Data.Foldable (traverse_) import Data.Maybe (fromMaybe) import Data.Text (Text) import Data.Time.Clock (UTCTime, diffUTCTime, getCurrentTime) import Data.Tree (Tree (..)) import Text.Cassius (cassiusFile) import Yesod.Core (Route) import Yesod.Core.Handler (newIdent) import Yesod.Core.Widget (whamlet, toWidget, handlerToWidget) import Data.EventTime.Local (intervalToEventTime, showEventTime) import Data.Time.Clock.Local () import Vervis.Discussion (getDiscussionTree) import Vervis.Foundation import Vervis.MediaType (MediaType (Markdown)) import Vervis.Model import Vervis.Render (renderSourceT) import Vervis.Settings (widgetFile) messageW :: UTCTime -> Sharer -> Message -> (Int -> Route App) -> Widget messageW now shr msg reply = $(widgetFile "discussion/widget/message") messageTreeW :: (Int -> Route App) -> Text -> UTCTime -> Tree (Message, Sharer) -> Widget messageTreeW reply cReplies now t = go t where go (Node (message, sharer) trees) = do messageW now sharer message reply [whamlet|
$forall tree <- trees ^{go tree} |] discussionW :: DiscussionId -> (Int -> Route App) -> Widget discussionW did reply = do forest <- handlerToWidget $ getDiscussionTree did cReplies <- newIdent now <- liftIO getCurrentTime toWidget $(cassiusFile "templates/discussion/widget/tree.cassius") traverse_ (messageTreeW reply cReplies now) forest