Limit number of parameters shown

This commit is contained in:
Filip Gralinski 2021-07-23 20:01:50 +02:00
parent 45cdff5e3d
commit 424dc329f5
1 changed files with 8 additions and 1 deletions

View File

@ -138,6 +138,12 @@ descriptionCell mauthId = Table.widget "description" (
(getInfoLink s mauthId)
tagEnts)
formatListWithLimit :: Int -> (a -> Text) -> [a] -> Text
formatListWithLimit limit fun l = (Data.Text.unwords $ map fun $ Import.take limit l) <>
(if length l <= limit
then ""
else " [...]")
descriptionToBeShown :: Submission -> Variant -> [Parameter] -> Text
descriptionToBeShown s v params = (submissionDescription s) ++ (Data.Text.pack vdescription) ++ " " ++ paramsShown
@ -147,7 +153,8 @@ descriptionToBeShown s v params = (submissionDescription s) ++ (Data.Text.pack v
""
else
" " ++ r
paramsShown = Data.Text.unwords $ map formatParameter params
maximumNumberOfParamsShown = 8
paramsShown = formatListWithLimit maximumNumberOfParamsShown formatParameter params
extractScore :: TestReference -> TableEntry -> Maybe Evaluation
extractScore k tableEntry = lookup k $ tableEntryMapping tableEntry