mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-27 18:24:51 +09:00
UI: Display origin and target repos in getClothR HTML
This commit is contained in:
parent
9906231d04
commit
5673340bd1
2 changed files with 70 additions and 5 deletions
|
@ -83,7 +83,7 @@ import qualified Database.Esqueleto as E
|
||||||
|
|
||||||
import Development.PatchMediaType
|
import Development.PatchMediaType
|
||||||
import Network.FedURI
|
import Network.FedURI
|
||||||
import Web.ActivityPub hiding (Ticket (..), Patch (..), Bundle (..), Repo (..))
|
import Web.ActivityPub hiding (Ticket (..), Patch (..), Bundle (..), Repo (..), ActorDetail (..))
|
||||||
import Yesod.ActivityPub
|
import Yesod.ActivityPub
|
||||||
import Yesod.FedURI
|
import Yesod.FedURI
|
||||||
import Yesod.Hashids
|
import Yesod.Hashids
|
||||||
|
@ -263,11 +263,12 @@ getClothR loomHash clothHash = do
|
||||||
where
|
where
|
||||||
getClothHtml = do
|
getClothHtml = do
|
||||||
mpid <- maybeAuthId
|
mpid <- maybeAuthId
|
||||||
(ticket, author, tparams, eparams, cparams) <- handlerToWidget $ runDB $ do
|
(ticket, targetRepo, author, tparams, eparams, cparams, moriginRepo) <- handlerToWidget $ runDB $ do
|
||||||
(_loom, _ticketloom, Entity ticketID ticket, author, _maybe_ResolveAndEitherTrlOrTrr, _bundles) <-
|
(Entity _ loom, Entity _ cloth, Entity ticketID ticket, author, _maybe_ResolveAndEitherTrlOrTrr, proposal) <-
|
||||||
getCloth404 loomHash clothHash
|
getCloth404 loomHash clothHash
|
||||||
(ticket,,,,)
|
(ticket,,,,,,)
|
||||||
<$> bitraverse
|
<$> getLocalRepo (loomRepo loom) (ticketLoomBranch cloth)
|
||||||
|
<*> bitraverse
|
||||||
(\ (Entity _ (TicketAuthorLocal _ personID _)) -> do
|
(\ (Entity _ (TicketAuthorLocal _ personID _)) -> do
|
||||||
p <- getJust personID
|
p <- getJust personID
|
||||||
(Entity personID p,) <$> getJust (personActor p)
|
(Entity personID p,) <$> getJust (personActor p)
|
||||||
|
@ -282,6 +283,16 @@ getClothR loomHash clothHash = do
|
||||||
<*> getTicketTextParams ticketID --wid
|
<*> getTicketTextParams ticketID --wid
|
||||||
<*> getTicketEnumParams ticketID --wid
|
<*> getTicketEnumParams ticketID --wid
|
||||||
<*> getTicketClasses ticketID --wid
|
<*> getTicketClasses ticketID --wid
|
||||||
|
<*> traverse
|
||||||
|
(bitraverse
|
||||||
|
(\ (Entity _(MergeOriginLocal _ originRepoID maybeBranch)) ->
|
||||||
|
getLocalRepo originRepoID maybeBranch
|
||||||
|
)
|
||||||
|
(\ (Entity _ (MergeOriginRemote _ r), mbranch) ->
|
||||||
|
getRemoteRepo r mbranch
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(justThere proposal)
|
||||||
hashMessageKey <- handlerToWidget getEncodeKeyHashid
|
hashMessageKey <- handlerToWidget getEncodeKeyHashid
|
||||||
let desc :: Widget
|
let desc :: Widget
|
||||||
desc = toWidget $ preEscapedToMarkup $ ticketDescription ticket
|
desc = toWidget $ preEscapedToMarkup $ ticketDescription ticket
|
||||||
|
@ -304,6 +315,25 @@ getClothR loomHash clothHash = do
|
||||||
(ClothUnfollowR loomHash clothHash)
|
(ClothUnfollowR loomHash clothHash)
|
||||||
(ticketFollowers ticket)
|
(ticketFollowers ticket)
|
||||||
$(widgetFile "cloth/one")
|
$(widgetFile "cloth/one")
|
||||||
|
where
|
||||||
|
getLocalRepo repoID mbranch = do
|
||||||
|
repo <- getJust repoID
|
||||||
|
actor <- getJust $ repoActor repo
|
||||||
|
repoHash <- encodeKeyHashid repoID
|
||||||
|
return (repoHash, actorName actor, mbranch)
|
||||||
|
getRemoteRepo remoteActorID mbranch = do
|
||||||
|
ra <- getJust remoteActorID
|
||||||
|
ro <- getJust $ remoteActorIdent ra
|
||||||
|
i <- getJust $ remoteObjectInstance ro
|
||||||
|
let h = instanceHost i
|
||||||
|
uRepo = ObjURI h (remoteObjectIdent ro)
|
||||||
|
return
|
||||||
|
( uRepo
|
||||||
|
, remoteActorName ra
|
||||||
|
, mbranch <&>
|
||||||
|
\ (Entity _ (MergeOriginRemoteBranch _ mlu b)) ->
|
||||||
|
(ObjURI h <$> mlu, b)
|
||||||
|
)
|
||||||
|
|
||||||
getClothDiscussionR
|
getClothDiscussionR
|
||||||
:: KeyHashid Loom -> KeyHashid TicketLoom -> Handler TypedContent
|
:: KeyHashid Loom -> KeyHashid TicketLoom -> Handler TypedContent
|
||||||
|
|
|
@ -19,6 +19,41 @@ $# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||||
Created on #{showDate $ ticketCreated ticket} by
|
Created on #{showDate $ ticketCreated ticket} by
|
||||||
^{personLinkFedW author}
|
^{personLinkFedW author}
|
||||||
|
|
||||||
|
$maybe originRepo <- moriginRepo
|
||||||
|
<div>
|
||||||
|
Origin:
|
||||||
|
$case originRepo
|
||||||
|
$of Left (repoHash, name, maybeBranch)
|
||||||
|
<a href=@{RepoR repoHash}>
|
||||||
|
^#{keyHashidText repoHash} #{name}
|
||||||
|
$maybe branch <- maybeBranch
|
||||||
|
:
|
||||||
|
<a href=@{RepoBranchSourceR repoHash branch []}>
|
||||||
|
#{branch}
|
||||||
|
$of Right (uRepo, maybeName, maybeBranch)
|
||||||
|
<a href="${uRepo}">
|
||||||
|
$maybe name <- maybeName
|
||||||
|
#{name}
|
||||||
|
$nothing
|
||||||
|
<i>[unnamed]
|
||||||
|
$maybe (maybeURI, branch) <- maybeBranch
|
||||||
|
:
|
||||||
|
$maybe uri <- maybeURI
|
||||||
|
<a href="${u}">
|
||||||
|
#{branch}
|
||||||
|
$nothing
|
||||||
|
#{branch}
|
||||||
|
|
||||||
|
$with (repoHash, name, maybeBranch) <- targetRepo
|
||||||
|
<div>
|
||||||
|
Target:
|
||||||
|
<a href=@{RepoR repoHash}>
|
||||||
|
^#{keyHashidText repoHash} #{name}
|
||||||
|
$maybe branch <- maybeBranch
|
||||||
|
:
|
||||||
|
<a href=@{RepoBranchSourceR repoHash branch []}>
|
||||||
|
#{branch}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<span>
|
<span>
|
||||||
<a href=@{ClothFollowersR loomHash clothHash}>
|
<a href=@{ClothFollowersR loomHash clothHash}>
|
||||||
|
|
Loading…
Reference in a new issue