mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
95 lines
3.0 KiB
TypeScript
95 lines
3.0 KiB
TypeScript
import { useStore } from '@nanostores/react';
|
|
import { memo, useCallback, useEffect, useRef, useState } from 'react';
|
|
import { IconButton } from '~/components/ui/IconButton';
|
|
import { workbenchStore } from '~/lib/stores/workbench';
|
|
|
|
export const Preview = memo(() => {
|
|
const iframeRef = useRef<HTMLIFrameElement>(null);
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
const [activePreviewIndex] = useState(0);
|
|
const previews = useStore(workbenchStore.previews);
|
|
const activePreview = previews[activePreviewIndex];
|
|
|
|
const [url, setUrl] = useState('');
|
|
const [iframeUrl, setIframeUrl] = useState<string | undefined>();
|
|
|
|
useEffect(() => {
|
|
if (!activePreview) {
|
|
setUrl('');
|
|
setIframeUrl(undefined);
|
|
|
|
return;
|
|
}
|
|
|
|
if (!iframeUrl) {
|
|
const { baseUrl } = activePreview;
|
|
|
|
setUrl(baseUrl);
|
|
setIframeUrl(baseUrl);
|
|
}
|
|
}, [activePreview, iframeUrl]);
|
|
|
|
const validateUrl = useCallback(
|
|
(value: string) => {
|
|
if (!activePreview) {
|
|
return false;
|
|
}
|
|
|
|
const { baseUrl } = activePreview;
|
|
|
|
if (value === baseUrl) {
|
|
return true;
|
|
} else if (value.startsWith(baseUrl)) {
|
|
return ['/', '?', '#'].includes(value.charAt(baseUrl.length));
|
|
}
|
|
|
|
return false;
|
|
},
|
|
[activePreview],
|
|
);
|
|
|
|
const reloadPreview = () => {
|
|
if (iframeRef.current) {
|
|
iframeRef.current.src = iframeRef.current.src;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="w-full h-full flex flex-col">
|
|
<div className="bg-bolt-elements-background-depth-2 p-2 flex items-center gap-1.5">
|
|
<IconButton icon="i-ph:arrow-clockwise" onClick={reloadPreview} />
|
|
<div
|
|
className="flex items-center gap-1 flex-grow bg-bolt-elements-preview-addressBar-background border border-bolt-elements-borderColor text-bolt-elements-preview-addressBar-text rounded-full px-3 py-1 text-sm hover:bg-bolt-elements-preview-addressBar-backgroundHover hover:focus-within:bg-bolt-elements-preview-addressBar-backgroundActive focus-within:bg-bolt-elements-preview-addressBar-backgroundActive
|
|
focus-within-border-bolt-elements-borderColorActive focus-within:text-bolt-elements-preview-addressBar-textActive"
|
|
>
|
|
<input
|
|
ref={inputRef}
|
|
className="w-full bg-transparent outline-none"
|
|
type="text"
|
|
value={url}
|
|
onChange={(event) => {
|
|
setUrl(event.target.value);
|
|
}}
|
|
onKeyDown={(event) => {
|
|
if (event.key === 'Enter' && validateUrl(url)) {
|
|
setIframeUrl(url);
|
|
|
|
if (inputRef.current) {
|
|
inputRef.current.blur();
|
|
}
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="flex-1 bg-white border-t">
|
|
{activePreview ? (
|
|
<iframe ref={iframeRef} className="border-none w-full h-full" src={iframeUrl} />
|
|
) : (
|
|
<div className="flex w-full h-full justify-center items-center">No preview available</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|