feat(react): compose stable domain actions - #54
Merged
aryasaatvik merged 3 commits intoAug 30, 2026
Conversation
Contributor
TegamiThis repository uses Tegami to manage releases. When your changes affect published packages, add a changelog file under Create a changelog → · Changelog format Release preview
Changelogs in this PR
Run Managed by Tegami. |
Greptile SummaryThe PR composes provisioning, cleanup, and disconnection controls into a stable connected-provider card while forwarding controlled dialog transitions and adopting semantic theme tokens.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| packages/react/src/domain.tsx | Composes connection, provisioning, cleanup, disconnection, records, and verification into the revised domain lifecycle surface. |
| packages/react/src/connection.tsx | Adds integrated disconnection state and dialog behavior while stabilizing pending connection controls. |
| packages/react/src/cleanup.tsx | Converts cleanup into a controlled alert-dialog workflow with retry, completion callbacks, and transition forwarding. |
| packages/react/src/provisioning.tsx | Updates provisioning interaction state and composition for the connected-provider surface. |
| packages/react/src/styles.css | Revises connected-card, action-menu, dialog, and pending-state styling around semantic theme tokens. |
| packages/react/src/theme.ts | Extends the public semantic theme-token contract used by the revised components. |
| packages/react/src/provider.tsx | Replaces default remote provider artwork with locally bundled provider marks. |
| packages/react/tests/domain-lifecycle.test.tsx | Expands coverage for composed provisioning, cleanup, receipt, and disconnection lifecycle behavior. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
Domain[Domain Flow] --> Inspect[Inspect connection]
Inspect -->|Available| Available[Available provider card]
Inspect -->|Connected| Connected[Connected provider card]
Connected --> Provision[Provision DNS records]
Connected --> Actions[Provider actions menu]
Actions --> Cleanup[Review and clean records]
Actions --> Disconnect[Confirm domain disconnection]
Domain --> Records[Records table]
Domain --> Verify[Verification status]
Reviews (5): Last reviewed commit: "chore(release): note React domain action..." | Re-trigger Greptile
aryasaatvik
force-pushed
the
split/react-domain-actions
branch
3 times, most recently
from
August 30, 2026 23:06
d90bf9b to
9f52c2a
Compare
aryasaatvik
force-pushed
the
split/react-domain-actions
branch
from
August 30, 2026 23:08
9f52c2a to
37d21ae
Compare
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
Validation