import { css } from '@emotion/react';
import { Button, shadows, theme } from '@expo/styleguide';
import { spacing } from '@expo/styleguide-base';
import { SearchSmIcon } from '@expo/styleguide-icons';
import { Dispatch, SetStateAction, useEffect, useState } from 'react';

import { isAppleDevice } from './utils';

import { CALLOUT, KBD } from '~/ui/components/Text';

type Props = {
  setOpen: Dispatch<SetStateAction<boolean>>;
};

export const CommandMenuTrigger = ({ setOpen }: Props) => {
  const [isMac, setIsMac] = useState<boolean | null>(null);

  useEffect(() => {
    setIsMac(typeof navigator !== 'undefined' && isAppleDevice());
  }, []);

  useEffect(() => {
    if (isMac !== null) {
      const keyDownListener = (e: KeyboardEvent) => {
        if (e.key === 'k' && (isMac ? e.metaKey : e.ctrlKey)) {
          e.preventDefault();
          setOpen(open => !open);
        }
      };
      document.addEventListener('keydown', keyDownListener, false);
      return () => document.removeEventListener('keydown', keyDownListener);
    }
  }, [isMac]);

  return (
    <Button theme="secondary" css={buttonStyle} onClick={() => setOpen(true)}>
      <SearchSmIcon />
      <CALLOUT theme="secondary" crawlable={false}>
        Search
      </CALLOUT>
      {isMac !== null && (
        <div className="ml-auto max-lg-gutters:hidden">
          <KBD>{isMac ? '⌘' : 'Ctrl'}</KBD> <KBD>K</KBD>
        </div>
      )}
    </Button>
  );
};

const buttonStyle = css({
  backgroundColor: theme.background.default,
  padding: `0 ${spacing[3]}px 0 ${spacing[2.5]}px`,
  borderColor: theme.border.default,
  boxShadow: shadows.xs,
  marginBottom: spacing[2.5],
  minHeight: spacing[10],
  display: 'flex',

  '&:focus': {
    boxShadow: shadows.xs,
  },

  '> span': {
    width: '100%',
    gap: spacing[2],
    alignItems: 'center',
  },

  kbd: {
    height: 20,
    lineHeight: '19px',
  },
});
