In order to unify package names, we decided to use `@appsmith` prefix as a marker to indicate that packages belong to our codebase and that these packages are developed internally. So that we can use this prefix, we need to rename the alias of the same name. But since `@appsmith` is currently being used as an alias for `ee` folder, we have to rename the alias as the first step. Related discussion https://theappsmith.slack.com/archives/CPG2ZTXEY/p1722516279126329 EE PR — https://github.com/appsmithorg/appsmith-ee/pull/4801 ## Automation /ok-to-test tags="@tag.All" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/10267368821> > Commit: 2b00af2d257e4d4304db0a80072afef7513de6be > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=10267368821&attempt=2" target="_blank">Cypress dashboard</a>. > Tags: `@tag.All` > Spec: > <hr>Tue, 06 Aug 2024 14:24:22 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No
130 lines
4.1 KiB
TypeScript
130 lines
4.1 KiB
TypeScript
import React from "react";
|
|
import { Link, useLocation } from "react-router-dom";
|
|
import { connect, useSelector } from "react-redux";
|
|
import { getCurrentUser } from "selectors/usersSelectors";
|
|
import styled from "styled-components";
|
|
import StyledHeader from "components/designSystems/appsmith/StyledHeader";
|
|
import type { AppState } from "ee/reducers";
|
|
import type { User } from "constants/userConstants";
|
|
import { ANONYMOUS_USERNAME } from "constants/userConstants";
|
|
import { AUTH_LOGIN_URL, APPLICATIONS_URL } from "constants/routes";
|
|
import Button from "components/editorComponents/Button";
|
|
import ProfileDropdown from "./ProfileDropdown";
|
|
import { flushErrorsAndRedirect, flushErrors } from "actions/errorActions";
|
|
import { getSafeCrash } from "selectors/errorSelectors";
|
|
import { Indices } from "constants/Layers";
|
|
import { getTenantConfig } from "ee/selectors/tenantSelectors";
|
|
import { getSelectedAppTheme } from "selectors/appThemingSelectors";
|
|
import { NAVIGATION_SETTINGS } from "constants/AppConstants";
|
|
import { get } from "lodash";
|
|
import { getAssetUrl } from "ee/utils/airgapHelpers";
|
|
import { getCurrentApplication } from "ee/selectors/applicationSelectors";
|
|
|
|
const StyledPageHeader = styled(StyledHeader)`
|
|
box-shadow: none;
|
|
justify-content: normal;
|
|
background: white;
|
|
height: 48px;
|
|
color: white;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: ${Indices.Layer9};
|
|
border-bottom: 1px solid var(--ads-v2-color-border);
|
|
`;
|
|
|
|
const HeaderSection = styled.div`
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
`;
|
|
|
|
const StyledDropDownContainer = styled.div``;
|
|
|
|
interface ErrorPageHeaderProps {
|
|
user?: User;
|
|
// TODO: Fix this the next time the file is edited
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
flushErrors?: any;
|
|
// TODO: Fix this the next time the file is edited
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
flushErrorsAndRedirect?: any;
|
|
safeCrash: boolean;
|
|
}
|
|
|
|
export function ErrorPageHeader(props: ErrorPageHeaderProps) {
|
|
const { flushErrors, flushErrorsAndRedirect, safeCrash, user } = props;
|
|
const location = useLocation();
|
|
const tenantConfig = useSelector(getTenantConfig);
|
|
const queryParams = new URLSearchParams(location.search);
|
|
let loginUrl = AUTH_LOGIN_URL;
|
|
const redirectUrl = queryParams.get("redirectUrl");
|
|
if (redirectUrl != null) {
|
|
loginUrl += `?redirectUrl=${encodeURIComponent(redirectUrl)}`;
|
|
}
|
|
const selectedTheme = useSelector(getSelectedAppTheme);
|
|
const currentApplicationDetails = useSelector(getCurrentApplication);
|
|
const navColorStyle =
|
|
currentApplicationDetails?.applicationDetail?.navigationSetting
|
|
?.colorStyle || NAVIGATION_SETTINGS.COLOR_STYLE.LIGHT;
|
|
const primaryColor = get(
|
|
selectedTheme,
|
|
"properties.colors.primaryColor",
|
|
"inherit",
|
|
);
|
|
|
|
return (
|
|
<StyledPageHeader>
|
|
<HeaderSection>
|
|
{tenantConfig.brandLogoUrl && (
|
|
<Link
|
|
className="t--appsmith-logo"
|
|
onClick={() => {
|
|
if (safeCrash) flushErrors();
|
|
}}
|
|
to={APPLICATIONS_URL}
|
|
>
|
|
<img
|
|
alt="Logo"
|
|
className="h-6"
|
|
src={getAssetUrl(tenantConfig.brandLogoUrl)}
|
|
/>
|
|
</Link>
|
|
)}
|
|
</HeaderSection>
|
|
{user && (
|
|
<StyledDropDownContainer>
|
|
{user.username === ANONYMOUS_USERNAME ? (
|
|
<Button
|
|
filled
|
|
intent={"primary"}
|
|
onClick={() => {
|
|
flushErrorsAndRedirect(loginUrl);
|
|
}}
|
|
size="small"
|
|
text="Sign In"
|
|
/>
|
|
) : (
|
|
<ProfileDropdown
|
|
name={user.name}
|
|
navColorStyle={navColorStyle}
|
|
photoId={user?.photoId}
|
|
primaryColor={primaryColor}
|
|
userName={user.username}
|
|
/>
|
|
)}
|
|
</StyledDropDownContainer>
|
|
)}
|
|
</StyledPageHeader>
|
|
);
|
|
}
|
|
|
|
const mapStateToProps = (state: AppState) => ({
|
|
user: getCurrentUser(state),
|
|
safeCrash: getSafeCrash(state),
|
|
});
|
|
|
|
export default connect(mapStateToProps, {
|
|
flushErrors,
|
|
flushErrorsAndRedirect,
|
|
})(ErrorPageHeader);
|