import React, { useContext } from 'react';
import styled from 'styled-components';

import type { CodeWalkthroughFile } from '@redocly/config';

import { useCodePanel } from '@redocly/theme/core/hooks';
import { CodeWalkthroughControlsStateContext } from '@redocly/theme/core/contexts';
import { CodePanelHeader } from '@redocly/theme/markdoc/components/CodeWalkthrough/CodePanelHeader';
import { CodePanelPreview } from '@redocly/theme/markdoc/components/CodeWalkthrough/CodePanelPreview';
import { CodeContainer } from '@redocly/theme/markdoc/components/CodeWalkthrough/CodeContainer';
import { CodePanelToolbar } from '@redocly/theme/markdoc/components/CodeWalkthrough/CodePanelToolbar';

export type CodePanelProps = {
  files: CodeWalkthroughFile[];
  downloadAssociatedFiles: CodeWalkthroughFile[];
  preview: React.ReactNode[];
};

export function CodePanel({
  files,
  downloadAssociatedFiles,
  preview,
}: CodePanelProps): JSX.Element | null {
  const { activeFile, handleTabSwitch, highlightedCode } = useCodePanel(files);
  const { handleDownloadCode } = useContext(CodeWalkthroughControlsStateContext);

  return (
    <CodePanelWrapper data-component-name="Markdoc/CodeWalkthrough/CodePanel">
      {preview ? (
        <CodePanelPreview>
          {preview.map((element, idx) => (
            <React.Fragment key={idx}>{element}</React.Fragment>
          ))}
        </CodePanelPreview>
      ) : null}
      <CodePanelHeader
        files={files}
        activeTabName={activeFile?.path || ''}
        handleTabSwitch={handleTabSwitch}
        onDownloadCode={() => handleDownloadCode([...files, ...downloadAssociatedFiles])}
      />
      <CodeContainer
        key={activeFile?.path || ''}
        highlightedCode={highlightedCode}
        toolbar={<CodePanelToolbar file={activeFile} />}
      />
    </CodePanelWrapper>
  );
}

const CodePanelWrapper = styled.div`
  display: flex;
  flex-direction: column;
  align-self: flex-start;

  min-height: 144px;
  min-width: 0;
  height: 100%;
  word-wrap: break-word;

  background-color: var(--code-panel-bg-color);
  border: 1px solid var(--code-panel-border-color);
  border-radius: var(--code-panel-border-radius);
  --code-block-max-height: calc(100vh - var(--navbar-height) - 2 * var(--spacing-xl));
  height: calc(100vh - var(--navbar-height) - 2 * var(--spacing-xl));
  position: sticky;
  top: calc(var(--navbar-height) + var(--spacing-xl));
`;
