fix(BOOK-325): Added refetch options to user.name query and refactored header
Approved-by: Linus Flood Approved-by: Matilda Landström
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
"use client"
|
||||
|
||||
import { cx } from "class-variance-authority"
|
||||
import { Button as ButtonRAC } from "react-aria-components"
|
||||
import FocusLock from "react-focus-lock"
|
||||
|
||||
import ButtonLink from "@scandic-hotels/design-system/ButtonLink"
|
||||
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
|
||||
import Link from "@scandic-hotels/design-system/OldDSLink"
|
||||
import { Typography } from "@scandic-hotels/design-system/Typography"
|
||||
|
||||
import useDropdownStore from "@/stores/main-menu"
|
||||
|
||||
import Card from "@/components/TempDesignSystem/Card"
|
||||
|
||||
import { MenuLink } from "../../MenuLink"
|
||||
|
||||
import styles from "./megaMenu.module.css"
|
||||
|
||||
import { DropdownTypeEnum } from "@/types/components/dropdown/dropdown"
|
||||
@@ -35,14 +39,13 @@ export default function MegaMenu({
|
||||
|
||||
return (
|
||||
<FocusLock disabled={!isOpen} returnFocus={true}>
|
||||
<nav className={`${styles.megaMenu} ${isOpen ? styles.active : ""}`}>
|
||||
<nav className={cx(styles.megaMenu, { [styles.active]: isOpen })}>
|
||||
{isMobile ? (
|
||||
<div className={styles.backWrapper}>
|
||||
<Typography variant="Title/Subtitle/lg" className={styles.text}>
|
||||
<button
|
||||
type="button"
|
||||
<Typography variant="Title/Subtitle/lg">
|
||||
<ButtonRAC
|
||||
className={styles.backButton}
|
||||
onClick={() => toggleMegaMenu(false)}
|
||||
onPress={() => toggleMegaMenu(false)}
|
||||
>
|
||||
<MaterialIcon
|
||||
icon="arrow_back_ios"
|
||||
@@ -50,22 +53,27 @@ export default function MegaMenu({
|
||||
color="CurrentColor"
|
||||
/>
|
||||
<span>{title}</span>
|
||||
</button>
|
||||
</ButtonRAC>
|
||||
</Typography>
|
||||
</div>
|
||||
) : null}
|
||||
<div className={styles.megaMenuContent}>
|
||||
<div className={styles.seeAllLink}>
|
||||
<div className={styles.seeAllLinkWrapper}>
|
||||
{seeAllLink?.url ? (
|
||||
<Link
|
||||
<ButtonLink
|
||||
href={seeAllLink.url}
|
||||
variant="icon"
|
||||
weight="bold"
|
||||
variant="Text"
|
||||
typography="Body/Paragraph/mdBold"
|
||||
onClick={handleNavigate}
|
||||
wrapping={false}
|
||||
>
|
||||
{seeAllLink.title}
|
||||
<MaterialIcon icon="arrow_forward" color="CurrentColor" />
|
||||
</Link>
|
||||
<MaterialIcon
|
||||
icon="arrow_forward"
|
||||
color="CurrentColor"
|
||||
size={24}
|
||||
/>
|
||||
</ButtonLink>
|
||||
) : null}
|
||||
</div>
|
||||
<ul className={styles.submenus}>
|
||||
@@ -77,20 +85,10 @@ export default function MegaMenu({
|
||||
<ul className={styles.submenu}>
|
||||
{item.links.map(({ title, url }) =>
|
||||
url ? (
|
||||
<li key={title} className={styles.submenuItem}>
|
||||
<Link
|
||||
href={url}
|
||||
variant="menu"
|
||||
className={styles.link}
|
||||
onClick={handleNavigate}
|
||||
>
|
||||
<li key={title}>
|
||||
<MenuLink href={url} onClick={handleNavigate}>
|
||||
{title}
|
||||
<MaterialIcon
|
||||
icon="arrow_forward"
|
||||
color="Icon/Interactive/Default"
|
||||
className={styles.arrow}
|
||||
/>
|
||||
</Link>
|
||||
</MenuLink>
|
||||
</li>
|
||||
) : null
|
||||
)}
|
||||
|
||||
+49
-62
@@ -1,64 +1,47 @@
|
||||
.megaMenu:not(.active) {
|
||||
display: none;
|
||||
.megaMenu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
|
||||
&:not(.active) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.megaMenuContent {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.seeAllLink {
|
||||
.seeAllLinkWrapper {
|
||||
display: flex;
|
||||
padding: var(--Space-x2) var(--Space-x3);
|
||||
align-items: center;
|
||||
gap: var(--Space-x1);
|
||||
background-color: var(--Base-Surface-Secondary-light-Normal);
|
||||
background-color: var(--Surface-Primary-OnSurface-Default);
|
||||
}
|
||||
|
||||
.submenus {
|
||||
list-style: none;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.submenuTitle {
|
||||
padding-left: var(--Space-x1);
|
||||
color: var(--Text-Tertiary);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.submenu {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.submenuItem {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.submenusItem {
|
||||
display: grid;
|
||||
gap: var(--Space-x1);
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.linkIcon {
|
||||
display: none;
|
||||
.submenuTitle {
|
||||
padding-left: var(--Space-x1);
|
||||
color: var(--Text-Tertiary);
|
||||
}
|
||||
|
||||
.link:not(:hover) .arrow {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.arrow {
|
||||
flex-shrink: 0;
|
||||
.submenu {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.backWrapper {
|
||||
padding: var(--Space-x2);
|
||||
}
|
||||
|
||||
.text {
|
||||
color: var(--Text-Interactive-Default);
|
||||
}
|
||||
|
||||
.backButton {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
@@ -68,39 +51,40 @@
|
||||
align-items: center;
|
||||
gap: var(--Space-x1);
|
||||
width: 100%;
|
||||
color: var(--Text-Interactive-Default);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.megaMenu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
.megaMenuContent {
|
||||
flex-grow: 1;
|
||||
grid-template-rows: max-content 1fr;
|
||||
gap: var(--Space-x2);
|
||||
align-items: start;
|
||||
}
|
||||
.megaMenuContent:has(.cardWrapper) {
|
||||
grid-template-rows: max-content 1fr max-content;
|
||||
|
||||
&:has(.cardWrapper) {
|
||||
grid-template-rows: max-content 1fr max-content;
|
||||
}
|
||||
}
|
||||
|
||||
.submenus {
|
||||
padding: var(--Space-x2);
|
||||
}
|
||||
|
||||
.submenusItem:first-child {
|
||||
padding-bottom: var(--Space-x2);
|
||||
border-bottom: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
||||
}
|
||||
.submenusItem:last-child {
|
||||
padding-top: var(--Space-x3);
|
||||
.submenusItem {
|
||||
&:first-child {
|
||||
padding-bottom: var(--Space-x2);
|
||||
border-bottom: 1px solid var(--Border-Divider-Subtle);
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-top: var(--Space-x3);
|
||||
}
|
||||
}
|
||||
|
||||
.cardWrapper {
|
||||
background-color: var(--Base-Surface-Secondary-light-Normal);
|
||||
background-color: var(--Background-Primary);
|
||||
padding: var(--Space-x4) var(--Space-x2);
|
||||
height: 320px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -112,17 +96,17 @@
|
||||
"submenus";
|
||||
width: 600px;
|
||||
max-width: calc(100vw - var(--Space-x4));
|
||||
|
||||
&:has(.cardWrapper) {
|
||||
width: 900px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-areas:
|
||||
"seeAllLink seeAllLink card"
|
||||
"submenus submenus card";
|
||||
}
|
||||
}
|
||||
|
||||
.megaMenuContent:has(.cardWrapper) {
|
||||
width: 900px;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-areas:
|
||||
"seeAllLink seeAllLink card"
|
||||
"submenus submenus card";
|
||||
}
|
||||
|
||||
.seeAllLink {
|
||||
.seeAllLinkWrapper {
|
||||
grid-area: seeAllLink;
|
||||
}
|
||||
|
||||
@@ -132,12 +116,15 @@
|
||||
padding: var(--Space-x2) var(--Space-x3);
|
||||
}
|
||||
|
||||
.submenusItem:first-child {
|
||||
padding-right: var(--Space-x5);
|
||||
border-right: 1px solid var(--Primary-Light-On-Surface-Divider-subtle);
|
||||
}
|
||||
.submenusItem:last-child {
|
||||
padding-left: var(--Space-x5);
|
||||
.submenusItem {
|
||||
&:first-child {
|
||||
padding-right: var(--Space-x5);
|
||||
border-right: 1px solid var(--Border-Divider-Subtle);
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-left: var(--Space-x5);
|
||||
}
|
||||
}
|
||||
|
||||
.cardWrapper {
|
||||
|
||||
Reference in New Issue
Block a user