import * as React from "react"; import * as Constants from "~/common/constants"; import * as SVG from "~/common/svg"; import * as Events from "~/common/custom-events"; import * as Styles from "~/common/styles"; import { ApplicationUserControls, ApplicationUserControlsPopup, } from "~/components/core/ApplicationUserControls"; import { css } from "@emotion/react"; import { DarkSymbol } from "~/common/logo"; import { Link } from "~/components/core/Link"; import { ButtonPrimary, ButtonTertiary } from "~/components/system/components/Buttons"; import { Match, Switch } from "~/components/utility/Switch"; import { Show } from "~/components/utility/Show"; import { useField, useMediaQuery } from "~/common/hooks"; import { Input } from "~/components/system"; import { AnimatePresence, motion } from "framer-motion"; const STYLES_SEARCH_COMPONENT = (theme) => css` background-color: transparent; border-radius: 8px; box-shadow: none; height: 100%; input { height: 100%; padding: 0px; } &::placeholder { color: ${theme.semantic.textGray}; } `; const STYLES_DISMISS_BUTTON = (theme) => css` display: block; ${Styles.BUTTON_RESET}; color: ${theme.semantic.textGray}; `; const STYLES_APPLICATION_HEADER_BACKGROUND = (theme) => css` position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; background-color: ${theme.system.white}; box-shadow: 0 0 0 1px ${theme.semantic.bgGrayLight}; @supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) { -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px); background-color: rgba(255, 255, 255, 0.7); } `; const STYLES_APPLICATION_HEADER = css` ${Styles.HORIZONTAL_CONTAINER_CENTERED}; height: ${Constants.sizes.header}px; padding: 0px 24px; @media (max-width: ${Constants.sizes.mobile}px) { padding: 0px 16px; width: 100%; } `; const STYLES_LEFT = css` flex-shrink: 0; display: flex; align-items: center; justify-content: flex-start; `; const STYLES_MIDDLE = css` flex-grow: 1; height: 100%; padding: 0 12px; `; const STYLES_RIGHT = css` flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; `; const STYLES_BACKGROUND = css` position: absolute; width: 100vw; height: 100vh; background-color: ${Constants.semantic.bgBlurDark}; pointer-events: auto; @keyframes fade-in { from { opacity: 50%; } to { opacity: 100%; } } animation: fade-in 200ms ease-out; `; const STYLES_UPLOAD_BUTTON = css` ${Styles.CONTAINER_CENTERED}; ${Styles.BUTTON_RESET}; background-color: ${Constants.semantic.bgGrayLight}; border-radius: 8px; width: 24px; height: 24px; cursor: pointer; pointer-events: auto; `; export default function ApplicationHeader({ viewer, onAction }) { const [state, setState] = React.useState({ showDropdown: false, popup: null, isRefreshing: false, }); const _handleTogglePopup = (value) => { if (!value || state.popup === value) { setState((prev) => ({ ...prev, popup: null })); } else { setState((prev) => ({ ...prev, popup: value, showDropdown: false })); } }; const handleCreateSearch = (searchQuery) => { setState((prev) => ({ ...prev, showDropdown: false })); Events.dispatchCustomEvent({ name: "show-search", detail: { initialValue: searchQuery, }, }); }; const { getFieldProps, value: searchQuery, setFieldValue, } = useField({ initialValue: "", onSubmit: handleCreateSearch, }); const handleUpload = React.useCallback(() => { onAction({ type: "SIDEBAR", value: "SIDEBAR_ADD_FILE_TO_BUCKET" }); }, [onAction]); const handleDismissSearch = () => setFieldValue(""); const { mobile } = useMediaQuery(); const isSignedOut = !viewer; const isSearching = searchQuery.length !== 0; return (
} >
{/**TODO: update Search component */}
{/** NOTE(amine): a fix for a backdrop-filter bug where the filter doesn't take any effects. * It happens when we have two elements using backdrop-filter with a parent-child relationship */}
); } const Actions = ({ isSignedOut, isSearching, onAction, onUpload, onDismissSearch }) => { const authActions = React.useMemo( () => ( <> Sign in Sign up ), [onAction] ); const uploadAction = React.useMemo( () => ( ), [onUpload] ); return ( {uploadAction} } > {authActions} ); };