mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 07:24:07 +01:00
117 lines
3.9 KiB
TypeScript
117 lines
3.9 KiB
TypeScript
import { useState } from 'react';
|
|
import { invoke } from '@tauri-apps/api/tauri';
|
|
import Editor from './components/Editor/Editor';
|
|
import { HStack, VStack } from './components/Stacks';
|
|
import { Dropdown } from './components/Dropdown';
|
|
import { WindowDragRegion } from './components/WindowDragRegion';
|
|
import { IconButton } from './components/IconButton';
|
|
import { Sidebar } from './components/Sidebar';
|
|
import { UrlBar } from './components/UrlBar';
|
|
import { Grid } from './components/Grid';
|
|
|
|
interface Response {
|
|
url: string;
|
|
method: string;
|
|
body: string;
|
|
status: string;
|
|
elapsed: number;
|
|
elapsed2: number;
|
|
headers: Record<string, string>;
|
|
}
|
|
|
|
function App() {
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [response, setResponse] = useState<Response | null>(null);
|
|
const [url, setUrl] = useState<string>('https://go-server.schier.dev/debug');
|
|
const [method, setMethod] = useState<{ label: string; value: string }>({
|
|
label: 'GET',
|
|
value: 'GET',
|
|
});
|
|
|
|
async function sendRequest() {
|
|
setError(null);
|
|
|
|
try {
|
|
const resp = (await invoke('send_request', { method: method.value, url })) as Response;
|
|
if (resp.body.includes('<head>')) {
|
|
resp.body = resp.body.replace(/<head>/gi, `<head><base href="${resp.url}"/>`);
|
|
}
|
|
setResponse(resp);
|
|
console.log('Response', resp.status, resp.url, { resp });
|
|
} catch (err) {
|
|
setError(`${err}`);
|
|
}
|
|
}
|
|
|
|
const contentType = response?.headers['content-type']?.split(';')[0] ?? 'text/plain';
|
|
|
|
return (
|
|
<>
|
|
<div className="grid grid-cols-[auto_1fr] h-full">
|
|
<Sidebar />
|
|
<Grid cols={2}>
|
|
<VStack className="w-full">
|
|
<HStack as={WindowDragRegion} items="center" className="pl-3 pr-1.5"></HStack>
|
|
<VStack className="pl-3 px-1.5 py-3" space={3}>
|
|
<UrlBar
|
|
method={method}
|
|
url={url}
|
|
onMethodChange={setMethod}
|
|
onUrlChange={setUrl}
|
|
sendRequest={sendRequest}
|
|
/>
|
|
<Editor value={`{\n "foo": "bar"\n}`} contentType="application/json" />
|
|
</VStack>
|
|
</VStack>
|
|
<VStack className="w-full">
|
|
<HStack as={WindowDragRegion} items="center" className="pl-1.5 pr-1">
|
|
<Dropdown
|
|
items={[
|
|
{
|
|
label: 'Clear Response',
|
|
onSelect: () => setResponse(null),
|
|
disabled: !response,
|
|
},
|
|
{
|
|
label: 'Other Thing',
|
|
},
|
|
]}
|
|
>
|
|
<IconButton icon="gear" className="ml-auto" size="sm" />
|
|
</Dropdown>
|
|
</HStack>
|
|
<VStack className="pr-3 pl-1.5 py-3" space={3}>
|
|
{error && <div className="text-white bg-red-500 px-3 py-1 rounded">{error}</div>}
|
|
{response !== null && (
|
|
<>
|
|
<HStack
|
|
items="center"
|
|
className="italic text-gray-500 text-sm w-full pointer-events-none h-10 mb-3 flex-shrink-0"
|
|
>
|
|
{response.status}
|
|
•
|
|
{response.elapsed}ms •
|
|
{response.elapsed2}ms
|
|
</HStack>
|
|
{contentType.includes('html') ? (
|
|
<iframe
|
|
title="Response preview"
|
|
srcDoc={response.body}
|
|
sandbox="allow-scripts allow-same-origin"
|
|
className="h-full w-full rounded-lg"
|
|
/>
|
|
) : response?.body ? (
|
|
<Editor value={response?.body} contentType={contentType} />
|
|
) : null}
|
|
</>
|
|
)}
|
|
</VStack>
|
|
</VStack>
|
|
</Grid>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App;
|