-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
chore: add packagePullStatus to consolidated API #38179
Conversation
WalkthroughThis pull request introduces a new mechanism for tracking package upgrade status across the Appsmith application. The changes primarily focus on adding a Changes
Possibly related issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Tip CodeRabbit's docstrings feature is now available as part of our Early Access Program! Simply use the command 📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (8)
✅ Files skipped from review due to trivial changes (2)
🔇 Additional comments (9)app/client/src/entities/Engine/AppEditorEngine.ts (2)
Destructuring
Passing app/client/src/ce/constants/ModuleConstants.ts (1)
The app/client/src/components/BottomBar/index.tsx (2)
The import statement for
Rendering app/client/src/pages/Editor/index.tsx (1)
Passing an object with app/client/src/sagas/InitSagas.ts (1)
The addition of Also applies to: 137-137 app/client/src/actions/pageActions.tsx (2)
The refactoring of Also applies to: 662-662, 665-676
The function signature has changed from positional parameters to object destructuring. Let's verify all callers have been updated to use the new signature. ✅ Verification successfulAll callers of setupPageAction are using the new object parameter signature The verification shows that both callers in the codebase are already using the new object parameter syntax:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Search for all calls to setupPageAction to verify they use the new signature
rg -A 2 "setupPageAction\("
Length of output: 608 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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
Documentation and Community
|
setupPageAction({ | ||
id: toLoadPageId, | ||
isFirstLoad: true, | ||
pageWithMigratedDsl, | ||
packagePullStatus, |
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.
Can you share the EE pr with me @ashit-rath .
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.
/build-deploy-preview skip-tests=true |
Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12367985438. |
/build-deploy-preview skip-tests=true |
Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12368011119. |
Deploy-Preview-URL: https://ce-38179.dp.appsmith.com |
1 similar comment
Deploy-Preview-URL: https://ce-38179.dp.appsmith.com |
Description
This is a refactor PR to support auto pull of packages on page load.
packagePullStatus
)Not this is only relevant to the edit mode of the application
PR for https://github.com/appsmithorg/appsmith-ee/pull/5745
Automation
/ok-to-test tags="@tag.All"
🔍 Cypress test results
Tip
🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/12349195312
Commit: 9112f8a
Cypress dashboard.
Tags:
@tag.All
Spec:
Mon, 16 Dec 2024 12:30:28 UTC
Communication
Should the DevRel and Marketing teams inform users about this change?
Summary by CodeRabbit
PackageUpgradeStatus
component for future use.PACKAGE_PULL_STATUS
with status constants.setupPageAction
to accept additional parameters for improved data handling.setupPage
method to ensure compatibility with updated action handling.