## Description - Fixing error message on homepage when there are no workspaces - Fixing leave workspace leading to no workspaces message - Fixing github changes list message on the git modal with modules & module instances - Adding doc link for packages Fixes [#30748](https://github.com/appsmithorg/appsmith/issues/30748) [#31472](https://github.com/appsmithorg/appsmith/issues/31472) [#30214](https://github.com/appsmithorg/appsmith/issues/30214) ## Automation /ok-to-test tags="@tag.All" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!IMPORTANT] > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/8247923955> > Commit: `6cd2ef6f4cfb2f12f251d6a4ad26e48fe88e78f8` > Cypress dashboard url: <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=8247923955&attempt=2" target="_blank">Click here!</a> > All cypress tests have passed 🎉🎉🎉 <!-- end of auto-generated comment: Cypress test results --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added new categories (`PACKAGES`, `MODULES`, `MODULE_INSTANCES`) to track changes in Git Sync more effectively. - Introduced a new constant for accessing the packages overview documentation. - **Enhancements** - Improved icon determination logic for queries based on their configuration. - Enhanced user experience by redirecting to "/applications" after leaving a workspace. - **Refactor** - Optimized the `leaveWS` function for better performance. - Updated selectors and reducers to handle new Git Sync tracking categories. - **Tests** - Expanded test coverage to include tracking of modified packages, modules, and module instances. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
58 lines
2.8 KiB
TypeScript
58 lines
2.8 KiB
TypeScript
export type ENVIRONMENT = "PRODUCTION" | "STAGING" | "LOCAL";
|
|
|
|
export const DOCS_BASE_URL = "https://docs.appsmith.com/";
|
|
export const TELEMETRY_URL = `${DOCS_BASE_URL}telemetry`;
|
|
export const ASSETS_CDN_URL = "https://assets.appsmith.com";
|
|
export const GITHUB_RELEASE_URL =
|
|
"https://github.com/appsmithorg/appsmith/releases/tag";
|
|
export const GET_RELEASE_NOTES_URL = (tagName: string) =>
|
|
`${GITHUB_RELEASE_URL}/${tagName}`;
|
|
export const GOOGLE_MAPS_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/google-maps";
|
|
export const GOOGLE_SIGNUP_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/authentication/google-login";
|
|
export const GITHUB_SIGNUP_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/authentication/github-login";
|
|
export const OIDC_SIGNUP_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/authentication/openid-connect-oidc";
|
|
export const SAML_SIGNUP_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/authentication/security-assertion-markup-language-saml";
|
|
export const EMAIL_SETUP_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/email";
|
|
export const SIGNUP_RESTRICTION_DOC =
|
|
"https://docs.appsmith.com/getting-started/setup/instance-configuration/disable-user-signup#disable-sign-up";
|
|
export const EMBED_PRIVATE_APPS_DOC =
|
|
"https://docs.appsmith.com/advanced-concepts/embed-appsmith-into-existing-application#embedding-private-apps";
|
|
export const PROVISIONING_SETUP_DOC =
|
|
"http://docs.appsmith.com/advanced-concepts/user-provisioning-group-sync";
|
|
export const DISCORD_URL = "https://discord.gg/rBTTVJp";
|
|
export const ENTERPRISE_PRICING_PAGE = "https://www.appsmith.com/enterprise";
|
|
export const DOCS_BRANCH_PROTECTION_URL =
|
|
"https://docs.appsmith.com/advanced-concepts/version-control-with-git/working-with-branches#branch-protection";
|
|
export const DOCS_DEFAULT_BRANCH_URL =
|
|
"https://docs.appsmith.com/advanced-concepts/version-control-with-git/working-with-branches#default-branch";
|
|
export const PACKAGES_OVERVIEW_DOC =
|
|
"https://docs.appsmith.com/packages/overview";
|
|
|
|
export const PRICING_PAGE_URL = (
|
|
URL: string,
|
|
source: string,
|
|
instanceId: string,
|
|
feature?: string,
|
|
section?: string,
|
|
) =>
|
|
`${URL}?source=${source}${instanceId ? `&instance=${instanceId}` : ``}${
|
|
feature ? `&feature=${feature}` : ""
|
|
}${section ? `§ion=${section}` : ""}`;
|
|
|
|
export const CUSTOMER_PORTAL_URL_WITH_PARAMS = (
|
|
URL: string,
|
|
source: string,
|
|
instanceId: string,
|
|
feature?: string,
|
|
section?: string,
|
|
) =>
|
|
`${URL}?source=${source}${instanceId ? `&instance=${instanceId}` : ``}${
|
|
feature ? `&feature=${feature}` : ""
|
|
}${section ? `§ion=${section}` : ""}`;
|