feat(garage): add assignee filter to events search panel#859
Merged
feat(garage): add assignee filter to events search panel#859
Conversation
…signee filter in EventsList
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an assignee filter to the project Events list search panel, wiring the selected assignee through the existing paginated “daily events” fetch flow (Vue component → Vuex action → API/GraphQL), and updating shared UI components to support the new control.
Changes:
- Add assignee dropdown to
EventsListsearch bar and pass selected assignee into the overview fetch. - Extend daily events GraphQL query + API function + Vuex action to accept an optional
assigneefilter. - Improve shared UI:
SearchFieldnow supports asuffixslot;UiSelectnow closes on outside click; add i18n for “All assignees”.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/components/project/EventsList.vue | Adds assignee filter UI, sends assignee to fetch, and styles the select in the search bar. |
| src/store/modules/events/index.ts | Extends FETCH_PROJECT_OVERVIEW action payload to include optional assignee and forwards it to API. |
| src/api/events/queries.ts | Adds $assignee variable and passes assignee argument to dailyEventsPortion query. |
| src/api/events/index.ts | Extends fetchDailyEventsPortion signature to accept assignee and forwards it to API call variables. |
| src/components/forms/SearchField.vue | Wraps input for better flex behavior and introduces a suffix slot for embedding controls (UiSelect). |
| src/components/utils/UiSelect.vue | Adds v-click-outside close behavior and removes the now-obsolete TODO. |
| src/i18n/messages/en.json | Adds “All assignees” label for the new filter option. |
| src/i18n/messages/ru.json | Adds Russian translation for “All assignees”. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
neSpecc
previously approved these changes
Mar 24, 2026
… for improved filtering
neSpecc
approved these changes
Mar 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Project events list had search + mark filters, but no way to filter by assignee.
Why
Provides a direct and fast way to find tasks/events assigned to a specific teammate, using existing server pagination/filter flow.