mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-28 22:17:48 +02:00
* fix(desktop): contain renderer crashes Co-authored-by: multica-agent <github@multica.ai> * fix(desktop): filter renderer exit prompts Co-authored-by: multica-agent <github@multica.ai> * refactor(desktop): drop redundant page-level ErrorBoundary on issue detail The whole-page <ErrorBoundary> wrapper duplicated the new route-level errorElement (DesktopRouteErrorPage). Let render errors bubble to the root route boundary so all detail routes are contained the same way. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(desktop): add Close tab escape to route error page Reload tab recreates the same crashing path and Go to issues is a dead end when the issues route itself crashed. Add a Close tab action that destroys the crashing router entirely and falls back to a sibling tab (or a reseeded default), the only always-safe escape regardless of which route crashed. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: multica-agent <github@multica.ai> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
169 lines
6.0 KiB
TypeScript
169 lines
6.0 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useRef, useState } from "react";
|
|
import { toast } from "sonner";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@multica/ui/components/ui/dialog";
|
|
import { Button } from "@multica/ui/components/ui/button";
|
|
import { FileUploadButton } from "@multica/ui/components/common/file-upload-button";
|
|
import {
|
|
ContentEditor,
|
|
type ContentEditorRef,
|
|
useFileDropZone,
|
|
FileDropOverlay,
|
|
} from "../editor";
|
|
import { useCreateFeedback, useFeedbackDraftStore } from "@multica/core/feedback";
|
|
import { useCurrentWorkspace } from "@multica/core/paths";
|
|
import { useFileUpload } from "@multica/core/hooks/use-file-upload";
|
|
import { api } from "@multica/core/api";
|
|
import { captureFeedbackOpened } from "@multica/core/analytics";
|
|
import { useT } from "../i18n";
|
|
import { formatShortcut, modKey, enterKey } from "@multica/core/platform";
|
|
|
|
const MAX_MESSAGE_LEN = 10000;
|
|
|
|
function composeFeedbackInitialMessage(draftMessage: string, incomingInitialMessage: string) {
|
|
const draft = draftMessage.trim();
|
|
const incoming = incomingInitialMessage.trim();
|
|
if (!incoming) return draftMessage;
|
|
if (!draft) return incomingInitialMessage;
|
|
if (draft.includes(incoming)) return draftMessage;
|
|
return `${draftMessage}
|
|
|
|
---
|
|
|
|
${incomingInitialMessage}`;
|
|
}
|
|
|
|
export function FeedbackModal({
|
|
onClose,
|
|
data,
|
|
initialMessage,
|
|
}: {
|
|
onClose: () => void;
|
|
data?: Record<string, unknown> | null;
|
|
initialMessage?: string;
|
|
}) {
|
|
const { t } = useT("modals");
|
|
const workspace = useCurrentWorkspace();
|
|
const draft = useFeedbackDraftStore((s) => s.draft);
|
|
const setDraft = useFeedbackDraftStore((s) => s.setDraft);
|
|
const clearDraft = useFeedbackDraftStore((s) => s.clearDraft);
|
|
|
|
const editorRef = useRef<ContentEditorRef>(null);
|
|
const incomingInitialMessage =
|
|
initialMessage ?? (typeof data?.initialMessage === "string" ? data.initialMessage : "");
|
|
const seededMessage = composeFeedbackInitialMessage(draft.message, incomingInitialMessage);
|
|
const [message, setMessage] = useState(seededMessage);
|
|
const { isDragOver, dropZoneProps } = useFileDropZone({
|
|
onDrop: (files) => files.forEach((f) => editorRef.current?.uploadFile(f)),
|
|
});
|
|
const { uploadWithToast } = useFileUpload(api);
|
|
const mutation = useCreateFeedback();
|
|
|
|
// Fire the "modal opened" analytics event once per mount. Pairs with
|
|
// the backend's `feedback_submitted` to give a funnel completion rate.
|
|
// Workspace id is captured from the closure at mount time — the modal
|
|
// is short-lived, so there's no meaningful workspace switch to track.
|
|
useEffect(() => {
|
|
captureFeedbackOpened("help_menu", workspace?.id);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const canSubmit =
|
|
message.trim().length > 0 &&
|
|
message.length <= MAX_MESSAGE_LEN &&
|
|
!mutation.isPending;
|
|
|
|
const handleSubmit = async () => {
|
|
if (!canSubmit) return;
|
|
if (editorRef.current?.hasActiveUploads()) {
|
|
toast.info(t(($) => $.feedback.toast_uploading));
|
|
return;
|
|
}
|
|
// Read from the editor ref at submit time — `message` state lags 150ms
|
|
// behind keystrokes due to `debounceMs`, so ⌘+Enter fired immediately
|
|
// after typing would otherwise submit stale content.
|
|
const latest = editorRef.current?.getMarkdown()?.trim() ?? "";
|
|
if (!latest) return;
|
|
if (latest.length > MAX_MESSAGE_LEN) {
|
|
toast.error(t(($) => $.feedback.toast_too_long));
|
|
return;
|
|
}
|
|
try {
|
|
await mutation.mutateAsync({
|
|
message: latest,
|
|
url: typeof window !== "undefined" ? window.location.href : undefined,
|
|
workspace_id: workspace?.id,
|
|
});
|
|
clearDraft();
|
|
toast.success(t(($) => $.feedback.toast_sent));
|
|
onClose();
|
|
} catch (err) {
|
|
const msg =
|
|
err instanceof Error && err.message
|
|
? err.message
|
|
: t(($) => $.feedback.toast_failed);
|
|
toast.error(msg);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Dialog open onOpenChange={(v) => !v && onClose()}>
|
|
<DialogContent className="sm:max-w-2xl !h-[28rem] p-0 gap-0 flex flex-col overflow-hidden">
|
|
<DialogHeader className="px-5 pt-4 pb-2 shrink-0">
|
|
<DialogTitle>{t(($) => $.feedback.title)}</DialogTitle>
|
|
<p className="mt-1 text-xs text-muted-foreground">
|
|
{t(($) => $.feedback.github_hint_prefix)}
|
|
<a
|
|
href="https://github.com/multica-ai/multica/issues"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-brand underline decoration-brand/40 underline-offset-2 hover:decoration-brand"
|
|
>
|
|
{t(($) => $.feedback.github_hint_link)}
|
|
</a>
|
|
</p>
|
|
</DialogHeader>
|
|
|
|
<div className="flex-1 min-h-0 px-5 pb-3">
|
|
<div
|
|
{...dropZoneProps}
|
|
className="relative h-full overflow-y-auto rounded-lg border-1 border-border transition-colors focus-within:border-brand"
|
|
>
|
|
<ContentEditor
|
|
ref={editorRef}
|
|
defaultValue={seededMessage}
|
|
placeholder={t(($) => $.feedback.placeholder)}
|
|
onUpdate={(md) => { setMessage(md); setDraft({ message: md }); }}
|
|
onUploadFile={uploadWithToast}
|
|
onSubmit={handleSubmit}
|
|
debounceMs={150}
|
|
showBubbleMenu={false}
|
|
className="px-3 py-2"
|
|
/>
|
|
{isDragOver && <FileDropOverlay />}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-between px-4 py-3 border-t shrink-0">
|
|
<FileUploadButton
|
|
size="sm"
|
|
onSelect={(file) => editorRef.current?.uploadFile(file)}
|
|
/>
|
|
<Button size="sm" onClick={handleSubmit} disabled={!canSubmit}>
|
|
{mutation.isPending ? t(($) => $.feedback.sending) : t(($) => $.feedback.send)}
|
|
<kbd className="ml-1 inline-flex h-4 items-center gap-0.5 rounded border border-border/50 bg-background/30 px-1 font-mono text-[10px] leading-none">
|
|
{formatShortcut(modKey, enterKey)}
|
|
</kbd>
|
|
</Button>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|