mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-19 14:17:10 +02:00
Split codebase (#455)
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
import type { FormInput, PromptTextRequest } from "@yaakapp-internal/plugins";
|
||||
import type { ReactNode } from "react";
|
||||
import type { DialogProps } from "../components/core/Dialog";
|
||||
import { showPromptForm } from "./prompt-form";
|
||||
|
||||
type PromptProps = Omit<PromptTextRequest, "id" | "title" | "description"> & {
|
||||
description?: ReactNode;
|
||||
onCancel: () => void;
|
||||
onResult: (value: string | null) => void;
|
||||
};
|
||||
|
||||
type PromptArgs = Pick<DialogProps, "title" | "description"> &
|
||||
Omit<PromptProps, "onClose" | "onCancel" | "onResult"> & { id: string };
|
||||
|
||||
export async function showPrompt({
|
||||
id,
|
||||
title,
|
||||
description,
|
||||
cancelText,
|
||||
confirmText,
|
||||
required,
|
||||
...props
|
||||
}: PromptArgs) {
|
||||
const inputs: FormInput[] = [
|
||||
{
|
||||
...props,
|
||||
optional: !required,
|
||||
type: "text",
|
||||
name: "value",
|
||||
},
|
||||
];
|
||||
|
||||
const result = await showPromptForm({
|
||||
id,
|
||||
title,
|
||||
description,
|
||||
inputs,
|
||||
cancelText,
|
||||
confirmText,
|
||||
});
|
||||
|
||||
if (result == null) return null; // Cancelled
|
||||
if (typeof result.value === "string") return result.value;
|
||||
return props.defaultValue ?? "";
|
||||
}
|
||||
Reference in New Issue
Block a user