diff options
author | Fabian Kirchner <fabian.kirchner@hereon.de> | 2023-11-29 14:14:33 +0100 |
---|---|---|
committer | Fabian Kirchner <fabian.kirchner@hereon.de> | 2023-11-29 14:14:33 +0100 |
commit | 91e188fbb70c20b939c221a95123934358d1c6c5 (patch) | |
tree | 294e8d99b307e03a06a60f0b1520008d077a25f0 /app/Issue | |
parent | e29e8381f302bacbfde5042f166cfedf7ada8e94 (diff) |
feat: collect issues referencing issue
Diffstat (limited to 'app/Issue')
-rw-r--r-- | app/Issue/Meta.hs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/Issue/Meta.hs b/app/Issue/Meta.hs new file mode 100644 index 0000000..d9851ec --- /dev/null +++ b/app/Issue/Meta.hs @@ -0,0 +1,27 @@ +module Issue.Meta + ( Meta (..), + getMeta, + ) +where + +import Data.Text qualified as T +import Issue (Issue (..)) +import Issue.Tag (Tag, tagValue) + +data Meta = Meta + { referencedBy :: [(Issue, Tag)] + } + deriving (Show) + +getMeta :: [Issue] -> Issue -> Meta +getMeta issues issue = + Meta + { referencedBy = + concatMap + ( \issueOther -> + let tagsRelevant = + filter (\tag -> tagValue tag == fmap T.pack issue.id) issueOther.tags + in map (\tag -> (issue, tag)) tagsRelevant + ) + issues + } |