forked from filipg/gonito
param graphs are shown for the challenge main page as well
This commit is contained in:
parent
abef15c905
commit
ff8d8d8e7a
@ -44,10 +44,12 @@ getShowChallengeR :: Text -> Handler Html
|
||||
getShowChallengeR name = do
|
||||
(Entity challengeId challenge) <- runDB $ getBy404 $ UniqueName name
|
||||
Just repo <- runDB $ get $ challengePublicRepo challenge
|
||||
(mainTest, leaderboard, _) <- getLeaderboardEntries challengeId
|
||||
(mainTest, leaderboard, (entries, tests)) <- getLeaderboardEntries challengeId
|
||||
mauth <- maybeAuth
|
||||
let muserId = (\(Entity uid _) -> uid) <$> mauth
|
||||
|
||||
let params = getAllParams entries
|
||||
|
||||
app <- getYesod
|
||||
let scheme = appRepoScheme $ appSettings app
|
||||
|
||||
@ -58,7 +60,9 @@ getShowChallengeR name = do
|
||||
challengeRepo
|
||||
mainTest
|
||||
repo
|
||||
leaderboard)
|
||||
leaderboard
|
||||
params
|
||||
tests)
|
||||
|
||||
getChallengeReadmeR :: Text -> Handler Html
|
||||
getChallengeReadmeR name = do
|
||||
@ -82,8 +86,19 @@ showChallengeWidget :: Maybe UserId
|
||||
-> Test
|
||||
-> Repo
|
||||
-> [LeaderboardEntry]
|
||||
-> [Text]
|
||||
-> [Entity Test]
|
||||
-> WidgetFor App ()
|
||||
showChallengeWidget muserId challenge scheme challengeRepo test repo leaderboard = $(widgetFile "show-challenge")
|
||||
showChallengeWidget muserId
|
||||
challenge
|
||||
scheme
|
||||
challengeRepo
|
||||
test
|
||||
repo
|
||||
leaderboard
|
||||
params
|
||||
tests
|
||||
= $(widgetFile "show-challenge")
|
||||
where leaderboardWithRanks = zip [1..] leaderboard
|
||||
maybeRepoLink = getRepoLink repo
|
||||
|
||||
@ -516,10 +531,7 @@ getChallengeSubmissions condition name = do
|
||||
|
||||
challengeRepo <- runDB $ get404 $ challengePublicRepo challenge
|
||||
|
||||
let params = sort
|
||||
$ nub
|
||||
$ concat
|
||||
$ map (\entry -> map (parameterName . entityVal) (tableEntryParams entry)) evaluationMaps
|
||||
let params = getAllParams evaluationMaps
|
||||
|
||||
challengeLayout True challenge (challengeAllSubmissionsWidget muserId
|
||||
challenge
|
||||
@ -529,6 +541,12 @@ getChallengeSubmissions condition name = do
|
||||
tests
|
||||
params)
|
||||
|
||||
getAllParams :: [TableEntry] -> [Text]
|
||||
getAllParams entries = sort
|
||||
$ nub
|
||||
$ concat
|
||||
$ map (\entry -> map (parameterName . entityVal) (tableEntryParams entry)) entries
|
||||
|
||||
challengeAllSubmissionsWidget :: Maybe UserId
|
||||
-> Challenge
|
||||
-> RepoScheme
|
||||
|
@ -11,3 +11,5 @@ $nothing
|
||||
|
||||
<script src="/static/js/sigma.min.js">
|
||||
<script src="/static/js/sigma.parsers.json.min.js">
|
||||
|
||||
^{paramGraphsWidget challenge tests params}
|
Loading…
Reference in New Issue
Block a user