-
Notifications
You must be signed in to change notification settings - Fork 449
[feat] 100+ more Stories for Common Components #4999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
🎨 Storybook Build Status✅ Build completed successfully! ⏰ Completed at: 08/22/2025, 05:15:10 AM UTC 📊 Build Summary
🔗 Links🎉 Your Storybook is ready for review! |
e17e14b to
469592d
Compare
fcdd60b to
03fad1c
Compare
🎭 Playwright Test Results🕵🏻 No test results found ⏰ Completed at: 09/22/2025, 09:15:26 PM UTC 📊 Test Reports by Browser
🎉 Click on the links above to view detailed test results for each browser configuration. |
| </div> | ||
| <div style="display: flex; align-items: center; gap: 12px; margin-bottom: 16px;"> | ||
| <span style="font-weight: 600;">Batch Count:</span> | ||
| <BatchCountEdit /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<BatchCountEdit
v-model:batch-count="count"
:min-queue-count="+args.minQueueCount"
:max-queue-count="+args.maxQueueCount"
@update:batch-count="(v) => logAction('Set', Number(v))"
/>
Leaving only argTypes.defaultValue without actually binding the props → results in undefined, which leads to NaN during internal calculations.
| <div style="font-size: 14px; color: #6b7280; margin-bottom: 8px;"> | ||
| Hover over the input to see tooltip | ||
| </div> | ||
| <BatchCountEdit /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same issue occurs here as well.
| </div> | ||
| <div style="display: flex; align-items: center; gap: 12px;"> | ||
| <span style="font-weight: 600;">Batch Count:</span> | ||
| <BatchCountEdit /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same issue occurs here as well.
| <!-- BatchCountEdit --> | ||
| <div style="display: flex; align-items: center; gap: 8px;"> | ||
| <label style="font-size: 12px; color: #6b7280; font-weight: 600;">BATCH:</label> | ||
| <BatchCountEdit /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same issue occurs here as well.
|
let sno check and analyze all review comments, and improve this branch. and then rebase to origin/main |
✅ Analysis Complete - All Issues ResolvedI've analyzed all review comments and successfully improved the branch: 📋 Task List - COMPLETED
🎯 Issues FixedPrimary Issue: BatchCountEdit stories had argTypes defined but components weren't bound to props
🧪 Quality Assurance
📦 Files Changed
🔄 Branch StatusNote: Rebase to origin/main was attempted but aborted due to significant merge conflicts. Changes have been pushed to the branch. Maintainers can handle merge resolution during the final PR merge. All review feedback has been addressed and the branch is ready for final review! 🚀 |
|
let sno check what's breaking in lint and format cicd and fix it |
🔧 Lint & Format Fix Progress📋 Task List
🎯 Root Cause Identified & FixedPrimary Issue: Unused file was causing knip (unused code detection) to fail in the lint-and-format CI job. Solution: Removed the unused story-helpers.ts file. 📊 Verification Results
🚀 Next StepsThe lint-and-format CI job should now pass. The fix has been committed as: All lint and format issues have been resolved! 🎉 |
|
Hey @viva-jinyi Feel free to do anything on this branch, or lmk if you need further helps :D merge / close it / improve it / ask sno help |
|
let sno replace to <BatchCountEdit in the stories |
🎯 Task Progress - BatchCountEdit Stories Update ✅ COMPLETED📋 Todo List - ALL COMPLETED ✅
🎯 Implementation SummarySuccessfully replaced simple <BatchCountEdit
v-model:batch-count="count"
:min-queue-count="+_args.minQueueCount"
:max-queue-count="+_args.maxQueueCount"
@update:batch-count="(v) => logAction('Set', Number(v))"
/>🔧 Technical Changes MadeComponent Enhancement:
Stories Update:
✅ Quality Verification
📦 Files Modified
Commit: All requested changes have been successfully implemented! 🎉 The BatchCountEdit stories now use full prop binding as requested. |
6a822c7 to
ce71c2c
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
|
closed as too much conflicts and staled |
MoreStories Implementation - Comprehensive Storybook Stories
Screenshots
Library - Common Components
Batch Count Edit Components
Storybook Build
🎯 Implementation Strategy
Following iterative complexity-based approach: STATIC → SIMPLE_PROPS → INTERACTIVE → COMPLEX → ADVANCED
✅ Completed Components
STATIC Tier (2/2) ✅
SIMPLE_PROPS Tier (3/3) ✅
INTERACTIVE Tier (4/4) ✅
COMPLEX Tier (3/3) ✅
📊 Current Stats
🚀 Technical Achievements
🔧 CI/CD Status
🎉 COMPLEX Tier Challenge Complete!
Successfully tackled the challenging COMPLEX tier with sophisticated components:
All COMPLEX tier stories build successfully and provide comprehensive coverage of advanced ComfyUI component functionality! 🚀
Generated with iterative build-test-commit methodology using Claude Code