/ok-to-test tags="@tag.Sanity" <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/14994848262> > Commit: 64bdb8cd0606bbc4c1b11d69b2d0e7cd7b5dd78a > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=14994848262&attempt=1" target="_blank">Cypress dashboard</a>. > Tags: `@tag.Sanity` > Spec: > <hr>Tue, 13 May 2025 11:39:41 UTC <!-- end of auto-generated comment: Cypress test results --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new feature flag for AI agent instances, allowing for more granular control over AI agent-related functionality. - **Refactor** - Updated various components and selectors to use the new AI agent instance feature flag and related selectors, replacing previous flags and logic. - Separated agent and non-agent template handling for clearer template management. - Improved feature flag override capabilities, enabling dynamic overrides via external sources. - Added new selectors to better represent AI agent app and creation states. - Refined UI components and modals to reflect updated AI agent state flags. - Enhanced user authentication and signup flows with updated feature flag conditions. - **Bug Fixes** - Ensured consistent UI behavior and conditional rendering based on the updated feature flag logic. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
101 lines
3.3 KiB
TypeScript
101 lines
3.3 KiB
TypeScript
import { ReduxActionTypes } from "ee/constants/ReduxActionConstants";
|
|
import { requiresAuth } from "pages/UserAuth/requiresAuthHOC";
|
|
import React from "react";
|
|
import { useCallback } from "react";
|
|
import { useEffect } from "react";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import { getCurrentUser } from "selectors/usersSelectors";
|
|
import UserWelcomeScreen from "pages/setup/UserWelcomeScreen";
|
|
import { Center } from "pages/setup/common";
|
|
import { Spinner } from "@appsmith/ads";
|
|
import {
|
|
isValidLicense,
|
|
isWithinAnOrganization,
|
|
} from "ee/selectors/organizationSelectors";
|
|
import { redirectUserAfterSignup } from "ee/utils/signupHelpers";
|
|
import { setUserSignedUpFlag } from "utils/storage";
|
|
import AnalyticsUtil from "ee/utils/AnalyticsUtil";
|
|
import { getIsAiAgentInstanceEnabled } from "ee/selectors/aiAgentSelectors";
|
|
|
|
export function SignupSuccess() {
|
|
const dispatch = useDispatch();
|
|
const urlObject = new URL(window.location.href);
|
|
const redirectUrl = urlObject?.searchParams.get("redirectUrl") ?? "";
|
|
const shouldEnableFirstTimeUserOnboarding = urlObject?.searchParams.get(
|
|
"enableFirstTimeUserExperience",
|
|
);
|
|
const isAiAgentInstanceEnabled = useSelector(getIsAiAgentInstanceEnabled);
|
|
const validLicense = useSelector(isValidLicense);
|
|
const user = useSelector(getCurrentUser);
|
|
const isOnLoginPage = !useSelector(isWithinAnOrganization);
|
|
|
|
useEffect(() => {
|
|
user?.email && setUserSignedUpFlag(user?.email);
|
|
}, []);
|
|
|
|
const isNonInvitedUser = shouldEnableFirstTimeUserOnboarding === "true";
|
|
|
|
const redirectUsingQueryParam = useCallback(
|
|
() =>
|
|
redirectUserAfterSignup({
|
|
redirectUrl,
|
|
shouldEnableFirstTimeUserOnboarding,
|
|
validLicense,
|
|
dispatch,
|
|
isAiAgentInstanceEnabled,
|
|
isOnLoginPage,
|
|
}),
|
|
[
|
|
dispatch,
|
|
isNonInvitedUser,
|
|
isOnLoginPage,
|
|
redirectUrl,
|
|
shouldEnableFirstTimeUserOnboarding,
|
|
validLicense,
|
|
],
|
|
);
|
|
|
|
const onGetStarted = useCallback((proficiency?: string, useCase?: string) => {
|
|
dispatch({
|
|
type: ReduxActionTypes.UPDATE_USER_DETAILS_INIT,
|
|
payload: {
|
|
proficiency,
|
|
useCase,
|
|
},
|
|
});
|
|
AnalyticsUtil.logEvent("GET_STARTED_CLICKED", {
|
|
proficiency,
|
|
goal: useCase,
|
|
});
|
|
redirectUsingQueryParam();
|
|
}, []);
|
|
|
|
/*
|
|
* Proceed with redirection,
|
|
* For a super user, since we already collected role and useCase during signup
|
|
* For a normal user, who has filled in their role and useCase and try to visit signup-success url by entering manually.
|
|
* For an invited user, we don't want to collect the data. we just want to redirect to the workspace they have been invited to.
|
|
* We identify an invited user based on `enableFirstTimeUserExperience` flag in url.
|
|
*/
|
|
//TODO(Balaji): Factor in case, where user had closed the tab, while filling the form.And logs back in again.
|
|
if (
|
|
user?.isSuperUser ||
|
|
((user?.role || user?.proficiency) && user?.useCase) ||
|
|
shouldEnableFirstTimeUserOnboarding !== "true" ||
|
|
isAiAgentInstanceEnabled
|
|
) {
|
|
redirectUsingQueryParam();
|
|
|
|
// Showing a loader until the redirect
|
|
return (
|
|
<Center>
|
|
<Spinner size="lg" />
|
|
</Center>
|
|
);
|
|
}
|
|
|
|
return <UserWelcomeScreen isSuperUser={false} onGetStarted={onGetStarted} />;
|
|
}
|
|
|
|
export default requiresAuth(SignupSuccess);
|