stable

Clone or download

Read-only

feat: be able to filter on a reviewer in UI

part of story #35822 Pull request new home page - Filter on Reviewer How to test: - Click on [+ Add filter] and select "Reviewer" in the menu - Select a reviewer, and close the dropdown --> Only pull-requests where the selected user is reviewer are displayed Change-Id: I28fe9742fb59d56fbb8bc810e8874daae644df42

Modified Files

Name
M plugins/pullrequest/scripts/pullrequest-homepage/po/fr_FR.po +6 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/api/get-pull-requests-query-builder.test.ts +13 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/api/get-pull-requests-query-builder.ts +6 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/api/tuleap-rest-querier.test.ts +20 −0 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/api/tuleap-rest-querier.ts +10 −2 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/PullRequestListFilters.vue +3 −1 Go to diff View file
M plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/PullRequestsListFilter.ts +5 −2 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/Reviewer/ReviewerFilter.test.ts +40 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/Reviewer/ReviewerFilter.ts +45 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/Reviewer/ReviewerSelectorEntry.ts +53 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/Reviewer/ReviewersLoader.test.ts +67 −0 Go to diff View file
A plugins/pullrequest/scripts/pullrequest-homepage/src/components/Filters/Reviewer/ReviewersLoader.ts +41 −0 Go to diff View file