mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-13 06:19:33 -04:00
117 lines
4.3 KiB
React
117 lines
4.3 KiB
React
import PlayCircleIcon from '@heroicons/react/20/solid/PlayCircleIcon';
|
|
import StopCircleIcon from '@heroicons/react/20/solid/StopCircleIcon';
|
|
import cx from '@src/cx.mjs';
|
|
import { useSettings, setIsZen } from '../../settings.mjs';
|
|
import { StrudelIcon } from '@src/repl/components/icons/StrudelIcon';
|
|
import '../Repl.css';
|
|
|
|
const { BASE_URL } = import.meta.env;
|
|
const baseNoTrailing = BASE_URL.endsWith('/') ? BASE_URL.slice(0, -1) : BASE_URL;
|
|
|
|
export function Header({ context, isEmbedded = false }) {
|
|
const { started, pending, isDirty, activeCode, handleTogglePlay, handleEvaluate, handleShare } = context;
|
|
const { isZen, isButtonRowHidden, isCSSAnimationDisabled, fontFamily } = useSettings();
|
|
|
|
return (
|
|
<header
|
|
id="header"
|
|
className={cx(
|
|
'flex-none text-black z-[100] text-sm select-none min-h-10',
|
|
!isZen && !isEmbedded && 'bg-lineHighlight',
|
|
isZen ? 'h-12 w-8 fixed top-0 left-0' : 'sticky top-0 w-full justify-between',
|
|
'flex items-center',
|
|
)}
|
|
style={{ fontFamily }}
|
|
>
|
|
<div className={cx(isEmbedded ? 'flex' : 'sm:flex', 'w-full sm:justify-between')}>
|
|
<div className="px-3 pt-1 flex space-x-2 sm:pt-0 select-none">
|
|
<h1
|
|
onClick={() => {
|
|
if (isEmbedded) window.open(window.location.href.replace('embed', ''));
|
|
}}
|
|
className={cx(
|
|
isEmbedded ? 'text-l cursor-pointer' : 'text-xl',
|
|
'text-foreground font-bold flex space-x-2 items-center',
|
|
)}
|
|
>
|
|
<div
|
|
className={cx(
|
|
'mt-[1px]',
|
|
started && !isCSSAnimationDisabled && 'animate-spin',
|
|
'cursor-pointer text-blue-500',
|
|
isZen && 'fixed top-2 right-4',
|
|
)}
|
|
onClick={() => {
|
|
if (!isEmbedded) {
|
|
setIsZen(!isZen);
|
|
}
|
|
}}
|
|
>
|
|
<span className="block text-foreground rotate-90">
|
|
<StrudelIcon className="w-5 h-5 fill-foreground" />
|
|
</span>
|
|
</div>
|
|
{!isZen && (
|
|
<div className="space-x-2">
|
|
<span className="">strudel</span>
|
|
<span className="text-sm font-medium">REPL</span>
|
|
{!isEmbedded && isButtonRowHidden && (
|
|
<a href={`${baseNoTrailing}/learn`} className="text-sm opacity-25 font-medium">
|
|
DOCS
|
|
</a>
|
|
)}
|
|
</div>
|
|
)}
|
|
</h1>
|
|
</div>
|
|
{!isZen && !isButtonRowHidden && (
|
|
<div className="flex max-w-full overflow-auto text-foreground px-3 h-10">
|
|
<button
|
|
onClick={handleTogglePlay}
|
|
title={started ? 'stop' : 'play'}
|
|
className={cx('hover:opacity-50', !started && !isCSSAnimationDisabled && 'animate-pulse')}
|
|
>
|
|
{!pending ? (
|
|
<span className={cx('flex items-center space-x-2')}>
|
|
{started ? <StopCircleIcon className="w-5 h-5" /> : <PlayCircleIcon className="w-5 h-5" />}
|
|
{!isEmbedded && <span>{started ? 'stop' : 'play'}</span>}
|
|
</span>
|
|
) : (
|
|
<>loading...</>
|
|
)}
|
|
</button>
|
|
<button
|
|
onClick={handleEvaluate}
|
|
title="update"
|
|
className={cx(
|
|
'flex items-center space-x-1 px-2',
|
|
!isDirty || !activeCode ? 'opacity-50' : 'hover:opacity-50',
|
|
)}
|
|
>
|
|
{!isEmbedded && <span>update</span>}
|
|
</button>
|
|
{!isEmbedded && (
|
|
<button
|
|
title="share"
|
|
className={cx('cursor-pointer hover:opacity-50 flex items-center space-x-1 px-2')}
|
|
onClick={handleShare}
|
|
>
|
|
<span>share</span>
|
|
</button>
|
|
)}
|
|
{!isEmbedded && (
|
|
<a
|
|
title="learn"
|
|
href={`${baseNoTrailing}/workshop/getting-started/`}
|
|
className={cx('hover:opacity-50 flex items-center space-x-1', !isEmbedded ? 'p-2' : 'px-2')}
|
|
>
|
|
<span>learn</span>
|
|
</a>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|