feat(ui): shrink Integrations tiles and show host app icons - #77
Conversation
Replace oversized square tiles with a denser 72px icon grid using each host’s macOS app icon, keeping traffic-light status and hover diagnostics.
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 30 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (10)
📒 Files selected for processing (6)
Comment |
There was a problem hiding this comment.
Pull request overview
This PR updates the Settings → Integrations UI to use a denser tile layout and display real host app icons, while preserving the existing traffic-light status/diagnostics and actionable-detail behavior.
Changes:
- Switch Integrations tiles to a denser 3–5 column grid and reduce tile height.
- Add per-integration icon rendering in both the tile and the selected detail panel.
- Add an
integrationIcon()helper backed by imported PNG assets, and update tests/docs to reflect the UI change.
Reviewed changes
Copilot reviewed 6 out of 16 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/design/README.md | Updates design notes to match the denser icon-based Integrations grid. |
| apps/microbridge-ui/src/surfaces/surfaces.test.tsx | Updates integration surface assertions for the new grid and icon rendering. |
| apps/microbridge-ui/src/surfaces/Settings.tsx | Uses the new dense grid classes and wires iconSrc into tiles + detail view. |
| apps/microbridge-ui/src/lib/integrationIcons.ts | Introduces icon mapping + lookup helper for adapter IDs. |
| apps/microbridge-ui/src/components/IntegrationCard.tsx | Renders icon (or initial fallback) and updates tile sizing/typography. |
| apps/microbridge-ui/src/assets/integrations/README.md | Documents the purpose/ownership of the included integration icon assets. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| /** App icons keyed by daemon adapter id. */ | ||
| export const INTEGRATION_ICONS: Record<string, string> = { | ||
| chatgpt, | ||
| claude, | ||
| claude_desktop: claude, | ||
| cnvs, | ||
| codex, | ||
| conductor, | ||
| cursor, | ||
| factory, | ||
| opencode, | ||
| synara, | ||
| t3code, | ||
| }; |
| expect(html).toContain("Repair bundled integration"); | ||
| expect(html).toContain("hover for detail"); | ||
| expect(html).toContain('width="28"'); |
Summary
Test plan
npm test -- --run(16 passed)npm run build(icons hashed into dist)Made with Cursor