[PR #1236] Add filter for cards without members ("No member" filter) #1245

Open
opened 2026-02-04 21:59:19 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/plankanban/planka/pull/1236
Author: @symonbaikov
Created: 7/5/2025
Status: 🔄 Open

Base: masterHead: feat/no-member-filter


📝 Commits (5)

  • ffb9693 feat(api): allow setting custom fields when creating a card via API (closes #1155)
  • e1efe66 Add German (de-DE) translation and enable it in i18n config
  • 334f7b2 feat: add 'No member' filter for board cards
  • ae0c23e chore: remove unrelated config and locale files from feature branch
  • 0fd2bd3 Restore 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.js and List.js now 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".

CleanShot 2025-07-05 at 23 30 06

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.

## 📋 Pull Request Information **Original PR:** https://github.com/plankanban/planka/pull/1236 **Author:** [@symonbaikov](https://github.com/symonbaikov) **Created:** 7/5/2025 **Status:** 🔄 Open **Base:** `master` ← **Head:** `feat/no-member-filter` --- ### 📝 Commits (5) - [`ffb9693`](https://github.com/plankanban/planka/commit/ffb96931843b141811cfabf65203537d18500de8) feat(api): allow setting custom fields when creating a card via API (closes #1155) - [`e1efe66`](https://github.com/plankanban/planka/commit/e1efe663a0799f870415999aee9b3ae650842104) Add German (de-DE) translation and enable it in i18n config - [`334f7b2`](https://github.com/plankanban/planka/commit/334f7b2028ac31bd0b42dd886f1d274c465840b8) feat: add 'No member' filter for board cards - [`ae0c23e`](https://github.com/plankanban/planka/commit/ae0c23eadaa3d57c8edfc5f66ee83ed5a5f8cbb8) chore: remove unrelated config and locale files from feature branch - [`0fd2bd3`](https://github.com/plankanban/planka/commit/0fd2bd3bc57e67a4908890c671b490e38b8906bf) Restore i18n.js to remove deletion from PR ### 📊 Changes **9 files changed** (+84 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `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) </details> ### 📄 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.js` and `List.js` now 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". ![CleanShot 2025-07-05 at 23 30 06](https://github.com/user-attachments/assets/1c4538ab-50f4-4211-8403-586f2950e429) **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 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-04 21:59:19 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/planka#1245