import { useTranslation } from "react-i18next";
import styled from "styled-components";
import Box from "../../../Styled/Box";
import Text from "../../../Styled/Text";
import { CollapseBtn, ExitBtn } from "./StoryButtons";

const TitleContainer = styled(Box).attrs({
  fullWidth: true,
  flex: 1,
  verticalCenter: true
})``;

const ClampedTitle = styled(Text).attrs({ as: "h3" })`
  /* clamp fallback */
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;

  overflow: hidden;
  padding: 0;
  margin: 0;

  @supports (-webkit-line-clamp: 2) {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: unset;
  }
`;

const TitleBar = ({
  title,
  isCollapsed,
  collapseHandler,
  closeHandler
}: {
  title?: string;
  isCollapsed: boolean;
  collapseHandler: () => void;
  closeHandler: () => void;
}) => {
  const { t } = useTranslation();
  return (
    <Box
      fullWidth
      gap={4}
      paddedRatio={0}
      paddedVertically={2}
      css={`
        padding-top: 0;
      `}
    >
      <TitleContainer>
        <ClampedTitle>{title ? title : t("story.untitled")}</ClampedTitle>
      </TitleContainer>
      <CollapseBtn isCollapsed={isCollapsed} onClick={collapseHandler} />
      <ExitBtn onClick={closeHandler} />
    </Box>
  );
};

export default TitleBar;
