mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-01 19:08:56 -05:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { useUpdateRequest } from '../hooks/useUpdateRequest';
|
|
import type { HttpRequest } from '../lib/models';
|
|
import { Input } from './core/Input';
|
|
import { VStack } from './core/Stacks';
|
|
|
|
interface Props {
|
|
requestId: string;
|
|
authentication: HttpRequest['authentication'];
|
|
}
|
|
|
|
export function BasicAuth({ requestId, authentication }: Props) {
|
|
const updateRequest = useUpdateRequest(requestId);
|
|
|
|
return (
|
|
<VStack className="my-2" space={2}>
|
|
<Input
|
|
useTemplating
|
|
label="Username"
|
|
name="username"
|
|
size="sm"
|
|
defaultValue={`${authentication.username}`}
|
|
onChange={(username: string) => {
|
|
updateRequest.mutate((r) => ({
|
|
...r,
|
|
authentication: { password: r.authentication.password, username },
|
|
}));
|
|
}}
|
|
/>
|
|
<Input
|
|
useTemplating
|
|
label="Password"
|
|
name="password"
|
|
size="sm"
|
|
type="password"
|
|
defaultValue={`${authentication.password}`}
|
|
onChange={(password: string) => {
|
|
updateRequest.mutate((r) => ({
|
|
...r,
|
|
authentication: { username: r.authentication.username, password },
|
|
}));
|
|
}}
|
|
/>
|
|
</VStack>
|
|
);
|
|
}
|