Skip to content
Snippets Groups Projects
Unverified Commit a730edff authored by Sloan Sparger's avatar Sloan Sparger Committed by GitHub
Browse files

Navbar Improvements: Embedding (#38053)

parent 0071b8b5
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,18 @@ describeEE("scenarios > embedding > full app", () => {
sideNav().should("not.exist");
});
it("should disable home link when top nav is enabeld but side nav is disabled", () => {
visitDashboardUrl({
url: `/dashboard/${ORDERS_DASHBOARD_ID}`,
qs: { top_nav: true, side_nav: false },
});
cy.findByTestId("main-logo-link").should(
"have.attr",
"disabled",
"disabled",
);
});
it("should show question creation controls by a param", () => {
visitFullAppEmbeddingUrl({ url: "/", qs: { new_button: true } });
appBar().within(() => {
......
......@@ -51,7 +51,10 @@ const AppBarLarge = ({
isNavBarOpen={isNavBarOpen}
onToggleClick={onToggleNavbar}
/>
<AppBarLogo isLogoVisible={isLogoVisible} />
<AppBarLogo
isLogoVisible={isLogoVisible}
isNavBarEnabled={isNavBarEnabled}
/>
<AppBarInfoContainer
isVisible={!isNavBarVisible || isQuestionLineageVisible}
>
......
......@@ -10,6 +10,7 @@ export const LogoLink = styled(Link)<{ isSmallAppBar: boolean }>`
border-radius: 0.375rem;
width: 2.25rem;
height: 3.25rem;
opacity: 1;
${props =>
!props.isSmallAppBar &&
css`
......
......@@ -4,12 +4,14 @@ import { LogoLink } from "./AppBarLogo.styled";
export interface AppBarLogoProps {
isSmallAppBar?: boolean;
isLogoVisible?: boolean;
isNavBarEnabled?: boolean;
onLogoClick?: () => void;
}
export function AppBarLogo({
isLogoVisible,
isSmallAppBar,
isNavBarEnabled,
onLogoClick,
}: AppBarLogoProps): JSX.Element | null {
if (!isLogoVisible) {
......@@ -21,6 +23,7 @@ export function AppBarLogo({
to="/"
isSmallAppBar={Boolean(isSmallAppBar)}
onClick={onLogoClick}
disabled={!isNavBarEnabled}
data-metabase-event="Navbar;Logo"
data-testid="main-logo-link"
>
......
......@@ -89,6 +89,7 @@ const AppBarSmall = ({
<AppBarLogo
isSmallAppBar
isLogoVisible={isLogoVisible}
isNavBarEnabled={isNavBarEnabled}
onLogoClick={onCloseNavbar}
/>
</AppBarLogoContainer>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment