2016-05-18 19:10:07 +09:00
|
|
|
{- This file is part of Vervis.
|
|
|
|
-
|
|
|
|
- Written in 2016 by fr33domlover <fr33domlover@riseup.net>.
|
|
|
|
-
|
|
|
|
- ♡ 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
|
|
|
|
- <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Vervis.Widget.Discussion
|
2016-05-20 01:58:23 +09:00
|
|
|
( messageW
|
|
|
|
, discussionW
|
2016-05-18 19:10:07 +09:00
|
|
|
)
|
|
|
|
where
|
|
|
|
|
|
|
|
import Prelude
|
|
|
|
|
2016-05-20 00:49:39 +09:00
|
|
|
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.Handler (newIdent)
|
|
|
|
import Yesod.Core.Widget (whamlet, toWidget, handlerToWidget)
|
|
|
|
|
|
|
|
import Data.EventTime.Local (intervalToEventTime, showEventTime)
|
|
|
|
import Data.Time.Clock.Local ()
|
2016-05-20 01:58:23 +09:00
|
|
|
import Vervis.Discussion (getDiscussionTree)
|
2016-05-18 19:10:07 +09:00
|
|
|
import Vervis.Foundation
|
2016-05-20 00:49:39 +09:00
|
|
|
import Vervis.MediaType (MediaType (Markdown))
|
|
|
|
import Vervis.Model
|
|
|
|
import Vervis.Render (renderSourceT)
|
2016-05-18 19:10:07 +09:00
|
|
|
import Vervis.Settings (widgetFile)
|
|
|
|
|
2016-05-20 00:49:39 +09:00
|
|
|
messageW :: Sharer -> UTCTime -> UTCTime -> Text -> Widget
|
|
|
|
messageW sharer created now content =
|
|
|
|
$(widgetFile "discussion/widget/message")
|
|
|
|
|
|
|
|
messageTreeW :: Text -> UTCTime -> Tree (Message, Sharer) -> Widget
|
|
|
|
messageTreeW cReplies now t = go t
|
|
|
|
where
|
|
|
|
go (Node (message, sharer) trees) = do
|
|
|
|
messageW sharer (messageCreated message) now (messageContent message)
|
|
|
|
[whamlet|
|
|
|
|
<div .#{cReplies}>
|
|
|
|
$forall tree <- trees
|
|
|
|
^{go tree}
|
|
|
|
|]
|
|
|
|
|
2016-05-18 19:10:07 +09:00
|
|
|
discussionW :: DiscussionId -> Widget
|
|
|
|
discussionW did = do
|
2016-05-20 01:58:23 +09:00
|
|
|
forest <- handlerToWidget $ getDiscussionTree did
|
2016-05-20 00:49:39 +09:00
|
|
|
cReplies <- newIdent
|
|
|
|
now <- liftIO getCurrentTime
|
|
|
|
toWidget $(cassiusFile "templates/discussion/widget/tree.cassius")
|
|
|
|
traverse_ (messageTreeW cReplies now) forest
|