mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 03:14:50 +03:00
[PR #1236] Add filter for cards without members ("No member" filter) #1245
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/plankanban/planka/pull/1236
Author: @symonbaikov
Created: 7/5/2025
Status: 🔄 Open
Base:
master← Head:feat/no-member-filter📝 Commits (5)
ffb9693feat(api): allow setting custom fields when creating a card via API (closes #1155)e1efe66Add German (de-DE) translation and enable it in i18n config334f7b2feat: add 'No member' filter for board cardsae0c23echore: remove unrelated config and locale files from feature branch0fd2bd3Restore i18n.js to remove deletion from PR📊 Changes
9 files changed (+84 additions, -0 deletions)
View changed files
📝
client/src/components/boards/BoardActions/Filters.jsx(+15 -0)📝
client/src/constants/ActionTypes.js(+3 -0)📝
client/src/constants/EntryActionTypes.js(+5 -0)📝
client/src/entry-actions/boards.js(+10 -0)📝
client/src/locales/en-US/core.js(+1 -0)📝
client/src/models/Board.js(+19 -0)📝
client/src/models/List.js(+5 -0)📝
client/src/sagas/core/services/boards.js(+18 -0)📝
client/src/sagas/core/watchers/boards.js(+8 -0)📄 Description
This pull request introduces a new filter that allows users to display only cards without any assigned members on the board.
Key changes:
Implemented the "No member" filter for cards on the board.
Added a "No member" button to the filter panel (Filters.jsx) with full localization support.
The button acts as a toggle: the first click enables the filter, the second disables it.
The button always appears visually active (dark background, white text) for better UX.
Card filtering logic in
Board.jsandList.jsnow considers the presence or absence of assigned members.Added new actions, reducers, sagas, and services to support the filter state.
Updated localization files to include translations for "No member".
Why this is useful:
The "No member" filter helps users quickly find unassigned tasks, making it easier to distribute work and keep track of cards that still need to be assigned.
Closes #1232
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.