feat: Add story points, due dates, priority levels, and task categories to Kanban cards - #1187
Open
Dhruv-0-Arora wants to merge 7 commits into
Open
feat: Add story points, due dates, priority levels, and task categories to Kanban cards#1187Dhruv-0-Arora wants to merge 7 commits into
Dhruv-0-Arora wants to merge 7 commits into
Conversation
- the story points feature allows users to enter a fibanacci number that represents how much work a particular task or card will be, or how much time it is expected to take. - Visually, adds more space to the bottom of each card and adds an input field in the bottom right side.
- adds a due date selection to the bottom left of each card. Opens a calendar view to select date. - Displays days remaining until due date.
- added a dropdown menu for selecting the priority - if selected medium or high, a yellow or red border will appear around the card, respectively.
- originating from the original plugin - currently, the only way to confirm editing a card is to press "enter" while focused on the card. - If you click off the card, it confirms editing that card and stops editing it.
- created from dropdown commit
- Creates a modifyable category dropdown - Next to "Add a List" button, there is a new button to open a category modal where a user can create and modify different categories. - Cards with assigned categories have the category's dedicated color (configurable) on the left side of the card.
- removing bun.lock and adding to .gitignore - removing story points menu items (redundant)
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.
Summary
This PR introduces several new card-level features to the Obsidian Kanban plugin, bringing it closer to full-featured project management tools like Jira while maintaining the simplicity of markdown-backed storage.
New Features
1. Story Points
0when no value is assigned.sp{value}.2. Due Date Bubble
@{date}markdown syntax under the hood.3. Priority Levels
!!{high},!!{medium}, or!!{low}.document.bodyso it is never clipped by card overflow.4. Task Categories
cat{CategoryName}.5. Click-off to Confirm Edit
Technical Details
genericWrappedExtensionmarkdown parsing pattern, keeping the data fully portable in plain markdown.StoryPoints.tsx,DateBubble.tsx,PrioritySelect.tsx,CategorySelect.tsx,CategoryModal.tsx.createPortalto render intodocument.body, avoiding CSSoverflow,contain, andwill-changeclipping issues.Screenshots
Test Plan