more work on getting the editor to cache and update properly
This commit is contained in:
@@ -1,25 +1,33 @@
|
||||
import { Box, Button, Stack, Title } from "@mantine/core";
|
||||
import { Box, Button, Group, Stack, Title } from "@mantine/core";
|
||||
import { useMonaco } from "@monaco-editor/react";
|
||||
import { useRef, useEffect, useState } from "react";
|
||||
import { useRef, useEffect, useState, useCallback } from "react";
|
||||
import { set } from "zod";
|
||||
import { useHandledAsyncCallback } from "~/utils/hooks";
|
||||
|
||||
let isThemeDefined = false;
|
||||
|
||||
export default function VariantConfigEditor(props: {
|
||||
initialConfig: string;
|
||||
savedConfig: string;
|
||||
onSave: (currentConfig: string) => Promise<void>;
|
||||
}) {
|
||||
const monaco = useMonaco();
|
||||
const editorRef = useRef<ReturnType<NonNullable<typeof monaco>["editor"]["create"]> | null>(null);
|
||||
const [editorId] = useState(() => `editor_${Math.random().toString(36).substring(7)}`);
|
||||
const [isChanged, setIsChanged] = useState(false);
|
||||
const savedConfigRef = useRef(props.savedConfig);
|
||||
|
||||
const checkForChanges = useCallback(() => {
|
||||
if (!editorRef.current) return;
|
||||
const currentConfig = editorRef.current.getValue();
|
||||
setIsChanged(currentConfig !== savedConfigRef.current);
|
||||
}, []);
|
||||
|
||||
const [onSave] = useHandledAsyncCallback(async () => {
|
||||
const currentConfig = editorRef.current?.getValue();
|
||||
if (!currentConfig) return;
|
||||
await props.onSave(currentConfig);
|
||||
}, [props.onSave]);
|
||||
checkForChanges();
|
||||
}, [props.onSave, checkForChanges]);
|
||||
|
||||
useEffect(() => {
|
||||
if (monaco) {
|
||||
@@ -36,7 +44,7 @@ export default function VariantConfigEditor(props: {
|
||||
}
|
||||
|
||||
editorRef.current = monaco.editor.create(document.getElementById(editorId) as HTMLElement, {
|
||||
value: props.initialConfig,
|
||||
value: props.savedConfig,
|
||||
language: "json",
|
||||
theme: "customTheme",
|
||||
lineNumbers: "off",
|
||||
@@ -50,28 +58,56 @@ export default function VariantConfigEditor(props: {
|
||||
wordWrapBreakBeforeCharacters: "",
|
||||
});
|
||||
|
||||
editorRef.current.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Enter, onSave);
|
||||
|
||||
editorRef.current.onDidChangeModelContent(() => {
|
||||
const currentConfig = editorRef.current?.getValue();
|
||||
if (currentConfig !== props.initialConfig) {
|
||||
setIsChanged(true);
|
||||
} else {
|
||||
setIsChanged(false);
|
||||
}
|
||||
editorRef.current.onDidFocusEditorText(() => {
|
||||
// Workaround because otherwise the command only works on whatever
|
||||
// editor was loaded on the page last.
|
||||
// https://github.com/microsoft/monaco-editor/issues/2947#issuecomment-1422265201
|
||||
editorRef.current?.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.Enter, onSave);
|
||||
});
|
||||
|
||||
return () => editorRef.current?.dispose();
|
||||
editorRef.current.onDidChangeModelContent(checkForChanges);
|
||||
|
||||
return () => {
|
||||
editorRef.current?.dispose();
|
||||
};
|
||||
}
|
||||
}, [monaco, editorId, props.initialConfig, onSave]);
|
||||
|
||||
// We intentionally skip the onSave and props.savedConfig dependencies here because
|
||||
// we don't want to re-render the editor from scratch
|
||||
/* eslint-disable-next-line react-hooks/exhaustive-deps */
|
||||
}, [monaco, editorId]);
|
||||
|
||||
useEffect(() => {
|
||||
const savedConfigChanged = savedConfigRef.current !== props.savedConfig;
|
||||
|
||||
savedConfigRef.current = props.savedConfig;
|
||||
|
||||
if (savedConfigChanged && editorRef.current?.getValue() !== props.savedConfig) {
|
||||
editorRef.current?.setValue(props.savedConfig);
|
||||
}
|
||||
|
||||
checkForChanges();
|
||||
}, [props.savedConfig, checkForChanges]);
|
||||
|
||||
return (
|
||||
<Box w="100%" pos="relative">
|
||||
<div id={editorId} style={{ height: "300px", width: "100%" }}></div>
|
||||
{isChanged && (
|
||||
<Button size="xs" sx={{ position: "absolute", bottom: 0, right: 0 }} onClick={onSave}>
|
||||
Save
|
||||
</Button>
|
||||
<Group sx={{ position: "absolute", bottom: 0, right: 0 }} spacing={4}>
|
||||
<Button
|
||||
size="xs"
|
||||
onClick={() => {
|
||||
editorRef.current?.setValue(props.savedConfig);
|
||||
checkForChanges();
|
||||
}}
|
||||
color="gray"
|
||||
>
|
||||
Reset
|
||||
</Button>
|
||||
<Button size="xs" onClick={onSave}>
|
||||
Save
|
||||
</Button>
|
||||
</Group>
|
||||
)}
|
||||
</Box>
|
||||
);
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import { Button, Stack, Title } from "@mantine/core";
|
||||
import { useMonaco } from "@monaco-editor/react";
|
||||
import { useCallback, useEffect, useRef, useState } from "react";
|
||||
import { Stack, Title } from "@mantine/core";
|
||||
import { useCallback } from "react";
|
||||
import type { PromptVariant } from "./types";
|
||||
import { api } from "~/utils/api";
|
||||
import { useHandledAsyncCallback } from "~/utils/hooks";
|
||||
import { notifications } from "@mantine/notifications";
|
||||
import { type JSONSerializable } from "~/server/types";
|
||||
import VariantConfigEditor from "./VariantConfigEditor";
|
||||
@@ -44,16 +42,13 @@ export default function VariantHeader({ variant }: { variant: PromptVariant }) {
|
||||
|
||||
// TODO: invalidate the variants query
|
||||
},
|
||||
[variant.id, replaceWithConfig]
|
||||
[variant.id, replaceWithConfig, utils.promptVariants.list]
|
||||
);
|
||||
|
||||
return (
|
||||
<Stack w="100%">
|
||||
<Title order={4}>{variant.label}</Title>
|
||||
<VariantConfigEditor
|
||||
initialConfig={JSON.stringify(variant.config, null, 2)}
|
||||
onSave={onSave}
|
||||
/>
|
||||
<VariantConfigEditor savedConfig={JSON.stringify(variant.config, null, 2)} onSave={onSave} />
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -31,10 +31,6 @@ export default function OutputsTable({ experimentId }: { experimentId: string |
|
||||
);
|
||||
|
||||
const columns = useMemo<MRT_ColumnDef<TableRow>[]>(() => {
|
||||
console.log(
|
||||
"rebuilding cols",
|
||||
variants.data?.map((variant) => variant.label)
|
||||
);
|
||||
return [
|
||||
{
|
||||
id: "scenario",
|
||||
@@ -47,7 +43,7 @@ export default function OutputsTable({ experimentId }: { experimentId: string |
|
||||
},
|
||||
...(variants.data?.map(
|
||||
(variant): MRT_ColumnDef<TableRow> => ({
|
||||
id: variant.id,
|
||||
id: variant.uiId,
|
||||
header: variant.label,
|
||||
Header: <VariantHeader variant={variant} />,
|
||||
size: 400,
|
||||
@@ -87,9 +83,6 @@ export default function OutputsTable({ experimentId }: { experimentId: string |
|
||||
enableHiding={false}
|
||||
enableColumnActions={false}
|
||||
enableColumnResizing
|
||||
state={{
|
||||
columnOrder: ["scenario", ...variants.data.map((variant) => variant.id)],
|
||||
}}
|
||||
mantineTableProps={{
|
||||
sx: {
|
||||
th: {
|
||||
|
||||
Reference in New Issue
Block a user