Highlight queues when concurrency limit reached and new table col#2008
Highlight queues when concurrency limit reached and new table col#2008matt-aitken merged 9 commits intomainfrom
Conversation
…ompact Also includes some responsive improvements to make sure things wrap when it gets tight
|
|
Caution Review failedThe pull request is closed. WalkthroughThe changes introduce enhancements to the BigNumber metric component, adding support for conditional compact formatting with tooltips for large values. The component's layout and styling are updated, and a new prop allows specifying a threshold for compact display. In the queues page, a new "Running" metric is added, and the display logic for concurrency limits is refined with conditional styling, badges, and explanatory tooltips. Table headers and columns are updated for clarity, and button icon colors are adjusted for consistency. Minor import reordering is performed in the AnimatedNumber component. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant QueuesPage
participant BigNumber
participant Tooltip
User->>QueuesPage: Visit Queues Page
QueuesPage->>BigNumber: Render metric (value, compactThreshold)
BigNumber->>BigNumber: Check if value > compactThreshold
alt Should compact
BigNumber->>Tooltip: Wrap compact value with tooltip (full value)
Tooltip-->>User: Show full value on hover
else No compact
BigNumber->>User: Show normal value (animated if enabled)
end
QueuesPage->>User: Display table with updated headers, badges, and tooltips
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
…rency-limit-reached # Conflicts: # apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues/route.tsx
Updates to the queues page:
Summary by CodeRabbit
New Features
Style
Bug Fixes
Documentation