2026-04-20 15:10:54 +02:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogDescription,
|
|
|
|
|
DialogFooter,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
} from "@/components/ui/dialog";
|
|
|
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import {
|
|
|
|
|
Select,
|
|
|
|
|
SelectContent,
|
|
|
|
|
SelectItem,
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
SelectValue,
|
|
|
|
|
} from "@/components/ui/select";
|
|
|
|
|
|
|
|
|
|
// Escalate to CEO Dialog
|
|
|
|
|
interface EscalateToCeoDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (reason: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function EscalateToCeoDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
}: EscalateToCeoDialogProps) {
|
|
|
|
|
const [reason, setReason] = useState("");
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (reason.trim()) {
|
|
|
|
|
onConfirm(reason.trim());
|
|
|
|
|
setReason("");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
|
|
|
|
if (!newOpen) setReason("");
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
return (
|
2026-06-14 08:06:26 +02:00
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
2026-04-20 15:10:54 +02:00
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Escalate to CEO</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
Explain why this task needs CEO review and approval.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="reason">Reason for escalation</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="reason"
|
|
|
|
|
value={reason}
|
|
|
|
|
onChange={(e) => setReason(e.target.value)}
|
|
|
|
|
placeholder="This task requires CEO approval because..."
|
|
|
|
|
rows={4}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={handleConfirm} disabled={!reason.trim() || isPending}>
|
|
|
|
|
{isPending ? "Escalating..." : "Escalate"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CEO Reject Dialog
|
|
|
|
|
interface CeoRejectDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (notes: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CeoRejectDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
}: CeoRejectDialogProps) {
|
|
|
|
|
const [notes, setNotes] = useState("");
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (notes.trim()) {
|
|
|
|
|
onConfirm(notes.trim());
|
|
|
|
|
setNotes("");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
|
|
|
|
if (!newOpen) setNotes("");
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
return (
|
2026-06-14 08:06:26 +02:00
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
2026-04-20 15:10:54 +02:00
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Request Changes</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
Explain what changes are needed before this task can be approved.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="notes">Required changes</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="notes"
|
|
|
|
|
value={notes}
|
|
|
|
|
onChange={(e) => setNotes(e.target.value)}
|
|
|
|
|
placeholder="Please address the following..."
|
|
|
|
|
rows={4}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
variant="destructive"
|
|
|
|
|
onClick={handleConfirm}
|
|
|
|
|
disabled={!notes.trim() || isPending}
|
|
|
|
|
>
|
|
|
|
|
{isPending ? "Submitting..." : "Request Changes"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
// Approve & Merge Dialog — simple confirmation for POST /tasks/{id}/approve-and-merge.
|
|
|
|
|
// The backend endpoint accepts NO notes parameter, so no text input is needed here.
|
|
|
|
|
interface ApproveAndMergeDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: () => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function ApproveAndMergeDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
}: ApproveAndMergeDialogProps) {
|
|
|
|
|
return (
|
|
|
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Approve & Merge</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
This will approve the completed work and merge the pull request into the
|
|
|
|
|
target branch. This action cannot be undone.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)} disabled={isPending}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={onConfirm} disabled={isPending}>
|
|
|
|
|
{isPending ? "Merging..." : "Approve & Merge"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-24 06:59:37 +02:00
|
|
|
// CEO Approve Dialog — the sign-off note is the audit record for merging to
|
|
|
|
|
// production, so it is REQUIRED and must be substantive (>= 20 chars), matching
|
|
|
|
|
// the server's CEO_NOTES_REQUIRED gate.
|
|
|
|
|
const _CEO_NOTES_MIN = 20;
|
|
|
|
|
|
|
|
|
|
interface CeoApproveDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (notes: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CeoApproveDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
}: CeoApproveDialogProps) {
|
|
|
|
|
const [notes, setNotes] = useState("");
|
|
|
|
|
const tooShort = notes.trim().length < _CEO_NOTES_MIN;
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (!tooShort) {
|
|
|
|
|
onConfirm(notes.trim());
|
|
|
|
|
setNotes("");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
|
|
|
|
if (!newOpen) setNotes("");
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
2026-05-24 06:59:37 +02:00
|
|
|
return (
|
2026-06-14 08:06:26 +02:00
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
2026-05-24 06:59:37 +02:00
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Approve & Merge</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
Record why this work is approved for production. This note is the
|
|
|
|
|
permanent audit record for the merge and is required.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="ceo-approve-notes">Approval notes</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="ceo-approve-notes"
|
|
|
|
|
value={notes}
|
|
|
|
|
onChange={(e) => setNotes(e.target.value)}
|
|
|
|
|
placeholder="Verified against acceptance criteria; approving for production because..."
|
|
|
|
|
rows={4}
|
|
|
|
|
/>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
{notes.trim().length}/{_CEO_NOTES_MIN} characters minimum
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={handleConfirm} disabled={tooShort || isPending}>
|
|
|
|
|
{isPending ? "Approving..." : "Approve & Merge"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-24 07:10:34 +02:00
|
|
|
// Required Notes Dialog — a generalized version of CeoApproveDialog. Collects a
|
|
|
|
|
// substantive audit note (>= minChars) before confirming a decision action.
|
|
|
|
|
interface RequiredNotesDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (text: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
title: string;
|
|
|
|
|
description: string;
|
|
|
|
|
label: string;
|
|
|
|
|
placeholder: string;
|
|
|
|
|
minChars: number;
|
|
|
|
|
confirmLabel: string;
|
|
|
|
|
destructive?: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function RequiredNotesDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
title,
|
|
|
|
|
description,
|
|
|
|
|
label,
|
|
|
|
|
placeholder,
|
|
|
|
|
minChars,
|
|
|
|
|
confirmLabel,
|
|
|
|
|
destructive,
|
|
|
|
|
}: RequiredNotesDialogProps) {
|
|
|
|
|
const [text, setText] = useState("");
|
|
|
|
|
const tooShort = text.trim().length < minChars;
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (!tooShort) {
|
|
|
|
|
onConfirm(text.trim());
|
|
|
|
|
setText("");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
|
|
|
|
if (!newOpen) setText("");
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
2026-05-24 07:10:34 +02:00
|
|
|
return (
|
2026-06-14 08:06:26 +02:00
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
2026-05-24 07:10:34 +02:00
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>{title}</DialogTitle>
|
|
|
|
|
<DialogDescription>{description}</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="required-notes">{label}</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="required-notes"
|
|
|
|
|
value={text}
|
|
|
|
|
onChange={(e) => setText(e.target.value)}
|
|
|
|
|
placeholder={placeholder}
|
|
|
|
|
rows={4}
|
|
|
|
|
/>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
{text.trim().length}/{minChars} characters minimum
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
variant={destructive ? "destructive" : "default"}
|
|
|
|
|
onClick={handleConfirm}
|
|
|
|
|
disabled={tooShort || isPending}
|
|
|
|
|
>
|
|
|
|
|
{isPending ? "Working..." : confirmLabel}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
// Create Branch Dialog
|
|
|
|
|
interface CreateBranchDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (branchType: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
taskId: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CreateBranchDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
}: CreateBranchDialogProps) {
|
|
|
|
|
const [branchType, setBranchType] = useState("feature");
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
onConfirm(branchType);
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
// Reset branchType to 'feature' when dialog is dismissed without confirming
|
|
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
|
|
|
|
if (!newOpen) setBranchType("feature");
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-20 15:10:54 +02:00
|
|
|
return (
|
2026-06-14 08:06:26 +02:00
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
2026-04-20 15:10:54 +02:00
|
|
|
<DialogContent>
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Create Branch</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
Create a new branch for this task. The branch name will be generated automatically.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="branch-type">Branch Type</Label>
|
|
|
|
|
<Select value={branchType} onValueChange={setBranchType}>
|
|
|
|
|
<SelectTrigger>
|
|
|
|
|
<SelectValue />
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
<SelectContent>
|
|
|
|
|
<SelectItem value="feature">feature</SelectItem>
|
|
|
|
|
<SelectItem value="bug">bug</SelectItem>
|
|
|
|
|
<SelectItem value="chore">chore</SelectItem>
|
|
|
|
|
<SelectItem value="docs">docs</SelectItem>
|
|
|
|
|
<SelectItem value="hotfix">hotfix</SelectItem>
|
|
|
|
|
</SelectContent>
|
|
|
|
|
</Select>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
Branch will be named: {branchType}/[team]/[task-id]
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={handleConfirm} disabled={isPending}>
|
|
|
|
|
{isPending ? "Creating..." : "Create Branch"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create PR Dialog
|
|
|
|
|
interface CreatePRDialogProps {
|
|
|
|
|
open: boolean;
|
|
|
|
|
onOpenChange: (open: boolean) => void;
|
|
|
|
|
onConfirm: (title: string, body: string) => void;
|
|
|
|
|
isPending?: boolean;
|
|
|
|
|
defaultTitle?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function CreatePRDialog({
|
|
|
|
|
open,
|
|
|
|
|
onOpenChange,
|
|
|
|
|
onConfirm,
|
|
|
|
|
isPending,
|
|
|
|
|
defaultTitle = "",
|
|
|
|
|
}: CreatePRDialogProps) {
|
|
|
|
|
const [title, setTitle] = useState(defaultTitle);
|
|
|
|
|
const [body, setBody] = useState("");
|
|
|
|
|
|
|
|
|
|
const handleConfirm = () => {
|
|
|
|
|
if (title.trim()) {
|
|
|
|
|
onConfirm(title.trim(), body.trim());
|
|
|
|
|
setTitle("");
|
|
|
|
|
setBody("");
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-06-14 08:06:26 +02:00
|
|
|
// On open: seed title from defaultTitle. On close without confirming: reset both fields to empty.
|
2026-04-20 15:10:54 +02:00
|
|
|
const handleOpenChange = (newOpen: boolean) => {
|
2026-06-14 08:06:26 +02:00
|
|
|
if (newOpen) {
|
|
|
|
|
if (defaultTitle) setTitle(defaultTitle);
|
|
|
|
|
} else {
|
|
|
|
|
// Reset both fields when dismissed without confirming
|
|
|
|
|
setTitle("");
|
|
|
|
|
setBody("");
|
2026-04-20 15:10:54 +02:00
|
|
|
}
|
|
|
|
|
onOpenChange(newOpen);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Dialog open={open} onOpenChange={handleOpenChange}>
|
|
|
|
|
<DialogContent className="sm:max-w-[525px]">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>Create Pull Request</DialogTitle>
|
|
|
|
|
<DialogDescription>
|
|
|
|
|
Create a pull request for this task's branch.
|
|
|
|
|
</DialogDescription>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="grid gap-4 py-4">
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="pr-title">Title</Label>
|
|
|
|
|
<Input
|
|
|
|
|
id="pr-title"
|
|
|
|
|
value={title}
|
|
|
|
|
onChange={(e) => setTitle(e.target.value)}
|
|
|
|
|
placeholder="PR title..."
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="grid gap-2">
|
|
|
|
|
<Label htmlFor="pr-body">Description</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="pr-body"
|
|
|
|
|
value={body}
|
|
|
|
|
onChange={(e) => setBody(e.target.value)}
|
|
|
|
|
placeholder="Describe the changes..."
|
|
|
|
|
rows={6}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button onClick={handleConfirm} disabled={!title.trim() || isPending}>
|
|
|
|
|
{isPending ? "Creating..." : "Create PR"}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
}
|