1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-20 04:23:16 +00:00

feat: add result editor formatting

This commit is contained in:
2025-07-04 19:12:51 +02:00
parent ea7abc62b0
commit 3630d682fa
2 changed files with 23 additions and 2 deletions
+17 -2
View File
@@ -1,4 +1,4 @@
import { useState, useEffect, useCallback } from "react";
import { useState, useEffect, useCallback, useRef } from "react";
import Editor from "@monaco-editor/react";
import { initializeApp } from "firebase/app";
import {
@@ -126,6 +126,7 @@ export default function App() {
const [duration, setDuration] = useState(null);
const [user, setUser] = useState(null);
const [auth, setAuth] = useState(null);
const resultEditorRef = useRef(null);
const backendBase = (env.VITE_BACKEND_URL || "").replace(/\/$/, "");
console.log("Using this URL as backendURL:", backendBase);
@@ -505,11 +506,25 @@ export default function App() {
<div className="success-box">Success in {duration} ms</div>
)
)}
<button
className="icon-button result-format-button"
onClick={() =>
resultEditorRef.current?.getAction("editor.action.formatDocument").run()
}
>
📝
</button>
<Editor
height="100%"
language="xml"
value={result}
options={{ readOnly: true, minimap: { enabled: false }, automaticLayout: true }}
onMount={(editor) => (resultEditorRef.current = editor)}
options={{
readOnly: true,
minimap: { enabled: false },
automaticLayout: true,
wordWrap: "on",
}}
/>
</div>
<div className="banner">
+6
View File
@@ -157,3 +157,9 @@ body,
display: inline-flex;
align-items: center;
}
.result-format-button {
position: absolute;
top: 0;
right: 0;
}