feat: create generic kanban board component (issue #545)#546
Merged
Conversation
Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: #545
- Create reusable KanbanBoard JavaScript component with configurable options - Support both 'report' and 'object' data source types - Add extensible field mapping for card parameters (title, description, contact, status, date, phone, email, amount, activity) - Add status mapping configuration (name, id, color) - Implement drag-and-drop functionality for status changes via _m_set API - Include copy-to-clipboard for phone and email fields - Sort cards by Activity field (descending) within columns - Calculate and display total sum per status column - Support dynamic status colors from API response - Make kanban height fill its parent container Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This reverts commit 41abb31.
Collaborator
Author
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
Collaborator
Author
🔄 Auto-restart 1/3Detected uncommitted changes from previous run. Starting new session to review and commit them. Uncommitted files: Auto-restart will stop after changes are committed or after 2 more iterations. Please wait until working session will end and give your feedback. |
Add example API response files demonstrating different data formats: - kanban-data.json: report format response example - statuses.json: status list with IDs and colors - metadata.json: table metadata for object data source type - object-data.json: object format response example These files help document the expected API formats and can be used for testing the kanban component. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Collaborator
Author
🔄 Auto-restart 1/3 LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
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
KanbanBoardJavaScript component inkanban/kanban.htmlImplementation Details
Extensible Configuration Format
Features
report(report/{name}?JSON) andobject(object/{id}?JSON_OBJ with metadata/{id})_m_set/{cardId}?JSONwitht{statusFieldId}={newStatusId}andt{activityFieldId}={timestamp}Test Plan
Fixes #545
🤖 Generated with Claude Code