Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | 12x | import GiveIconButton from "@shared/IconButton/GiveIconButton";
import { EyeIcon, PencilSimpleIcon } from "@phosphor-icons/react";
import { StackRow } from "./StackRow";
import { useMobileLayoutHandler } from "../provider/ViewSwitcherContext";
import { SaveAndCloseBtn } from "./SaveAndCloseBtn";
import { useFormNavigation } from "../hooks/useFormNavigation";
export const MobileLeftPanelMainHeader = ({
color,
backgroundColor,
}: {
color?: string;
backgroundColor?: string;
}) => {
const { activeView, toggleView } = useMobileLayoutHandler();
const { handleConfirmBeforeClose } = useFormNavigation();
return (
<StackRow
sx={{
display: "flex",
justifyContent: "space-between",
aligItems: "center",
width: "100%",
backgroundColor,
borderBottom: "1px solid rgba(229, 229, 227, 1)",
padding: "20px 16px",
}}
>
<SaveAndCloseBtn color={color} onClick={handleConfirmBeforeClose} />
{activeView === "builder" ? (
<GiveIconButton
Icon={(() => <EyeIcon width={18} height={18} />) as any}
size="small"
variant="ghost"
iconText="Preview"
disableRipple
onClick={() => toggleView()}
sx={{
display: "flex",
gap: 1,
padding: "0px",
":hover": {
background: "transparent !important",
textDecoration: "underline",
},
}}
/>
) : (
<GiveIconButton
Icon={
(() => <PencilSimpleIcon width={14.06} height={14.06} />) as any
}
color={color}
size="small"
variant="ghost"
iconText={"Edit"}
onClick={() => toggleView()}
disableRipple
sx={{
display: "flex",
gap: 1,
padding: "0px",
":hover": {
background: "transparent !important",
textDecoration: "underline",
},
}}
/>
)}
</StackRow>
);
};
|