UI migration - #127
Merged
Merged
Conversation
Faithfully reproduces the app/web integrations flow in apps/portal with the
new HeroUI/dark-lime look. Nothing about the API contract or the flow changes;
only the UI framework and styling.
Functional changes:
- 3-panel integrations page: left connector rail (Databases/KV/AI/BaaS/
Observability) driving ?group=, center configured-integrations accordion,
right filter panel (search + by-type + collapse).
- Connect flow: group -> variant cascade backed by the server helpers
(getIntegrationsGroups/Variants/getDefaultVariantValue/getSchema/
humanReadableConnectorNames), dispatching to the correct connector form.
- Connector forms: CredentialsUrlForm (Postgres/MySQL/Mongo/Redis/Memcached
with Credentials|URL toggle + optional SSL/database), AiForm (OpenAI/
Anthropic/Gemini/Mistral + OpenAI-Compatible baseUrl), ObservabilityForm
(Loki/OTel Logs with Base64|Credentials toggle).
- AppConfigSelector: every config field accepts a literal value or a
cfg:<key> reference, with a searchable app-config key picker.
- Create / edit (locked group+variant) / delete / test-connection wired to the
same endpoints as web (POST, PUT, DELETE, list/{group}, test-connection),
with getSchema validation before save.
- Deep-linkable via ?group= and ?open=.
Fixes a server-into-browser bundle bleed: the app-config DTO pulled
appConfigDataTypeEnum (a value) from db/schema, dragging @fluxify/lib -> node:vm
into the client and crashing the route. appConfig service DTO imports are now
type-only so the chain is elided. Removed verbatimModuleSyntax from the portal
tsconfig so server integration schemas can be imported for reuse.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- Rework the project shell/sidebar to the mockup layout: gradient logo mark + FLUXIFY wordmark, project name, plain styled nav with lime active state, "Back to projects". - Design tokens: layered dark surfaces, lime accent, 12px radius, JetBrains Mono, softer focus halo, themed scrollbars and card refinements. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
feat(portal): integrations feature (HeroUI migration)
…and modularize components
…efine accordion header actions
feat(portal): implement end-to-end App Config CRUD, search, sorting, and HeroUI v3 checkbox fixes
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.
📌 Why
🎯 What Changed
🧪 How to Test / Verification
bun run test)📋 Checklist
feat(server): ...,fix(web): ...)