Move Thread Model into Common
This commit is contained in:
parent
a7163e2dfd
commit
f71fd65a8a
|
@ -76,7 +76,7 @@ executable chandlr
|
||||||
Common.Component.ThreadView
|
Common.Component.ThreadView
|
||||||
Component.Thread.Files
|
Component.Thread.Files
|
||||||
Component.Thread.Intro
|
Component.Thread.Intro
|
||||||
Component.Thread.Model
|
Common.Component.Thread.Model
|
||||||
Component.Thread.Embed
|
Component.Thread.Embed
|
||||||
Common.Component.BodyRender
|
Common.Component.BodyRender
|
||||||
Common.FrontEnd.Routes
|
Common.FrontEnd.Routes
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5a418494d53a23792a458f85d7aa397928786e3b
|
Subproject commit b027379d274c8f9b42ae161545bed368b9e800c3
|
|
@ -1,17 +0,0 @@
|
||||||
module Component.Thread.Model where
|
|
||||||
|
|
||||||
import GHCJS.DOM.Types (JSString)
|
|
||||||
import Common.Network.SiteType (Site)
|
|
||||||
import Common.Network.PostType (Post)
|
|
||||||
import Parsing.PostPartType (PostPart)
|
|
||||||
import Data.Time.Clock (UTCTime)
|
|
||||||
|
|
||||||
type PostWithBody = (Post, [ PostPart ])
|
|
||||||
|
|
||||||
data Model = Model
|
|
||||||
{ site :: Site
|
|
||||||
, media_root :: JSString
|
|
||||||
, post_bodies :: [ PostWithBody ]
|
|
||||||
, current_time :: UTCTime
|
|
||||||
} deriving Eq
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ import Data.Text (Text)
|
||||||
import Miso (consoleLog)
|
import Miso (consoleLog)
|
||||||
import Miso.String (fromMisoString)
|
import Miso.String (fromMisoString)
|
||||||
import qualified Common.Network.PostType as Post
|
import qualified Common.Network.PostType as Post
|
||||||
import Component.Thread.Model (PostWithBody)
|
import Common.Component.Thread.Model (PostWithBody)
|
||||||
|
|
||||||
import Parsing.PostPartType
|
import Parsing.PostPartType
|
||||||
import Parsing.QuoteLinkParser
|
import Parsing.QuoteLinkParser
|
||||||
|
|
Loading…
Reference in New Issue