mirror of
https://github.com/plankanban/planka.git
synced 2026-02-05 00:39:58 +03:00
[PR #713] [MERGED] Filter cards with shortcuts to users and labels #1077
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/713
Author: @emmguyot
Created: 4/14/2024
Status: ✅ Merged
Merged: 4/23/2024
Merged by: @meltyshev
Base:
master← Head:SearchCards📝 Commits (2)
d44b5a6Filter cards with shortcuts to users, labels and creator6251b0afix: Fix search input appearance📊 Changes
19 files changed (+267 additions, -1 deletions)
View changed files
📝
client/src/actions/cards.js(+9 -0)📝
client/src/components/BoardActions/BoardActions.jsx(+6 -0)📝
client/src/components/BoardActions/Filters.jsx(+65 -1)📝
client/src/components/BoardActions/Filters.module.scss(+28 -0)📝
client/src/constants/ActionTypes.js(+1 -0)📝
client/src/constants/EntryActionTypes.js(+1 -0)📝
client/src/containers/BoardActionsContainer.js(+3 -0)📝
client/src/entry-actions/cards.js(+8 -0)📝
client/src/lib/custom-ui/components/Input/Input.jsx(+2 -0)📝
client/src/locales/en/core.js(+1 -0)📝
client/src/locales/fr/core.js(+4 -0)📝
client/src/models/Board.js(+47 -0)📝
client/src/models/Card.js(+5 -0)📝
client/src/models/Label.js(+12 -0)📝
client/src/models/List.js(+32 -0)📝
client/src/models/User.js(+14 -0)📝
client/src/sagas/core/services/cards.js(+7 -0)📝
client/src/sagas/core/watchers/cards.js(+3 -0)📝
client/src/selectors/boards.js(+19 -0)📄 Description
Hi,
I've implemented the card search functionality #53.
This feature allows users to search for :
It enhances the overall usability of the project and keep it simple with only a few click.
Changes made:
Testing:
Preview :

Thanks for reviewing! 🙌
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.