feat: make text selectable in PatchHelper (#188)

* feat: make text selectable in PatchHelper

* real div moment
This commit is contained in:
megumin 2022-11-05 09:02:29 +00:00 committed by GitHub
parent 65620f4976
commit 0cb24cad7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,8 +85,8 @@ function ReplacementComponent({ module, match, replacement, setReplacementError
return (
<>
{Parser.parse(fullMatch)}
{Parser.parse(groups)}
<div style={{ userSelect: "text" }}>{Parser.parse(fullMatch)}</div>
<div style={{ userSelect: "text" }}>{Parser.parse(groups)}</div>
</>
);
}
@ -94,7 +94,7 @@ function ReplacementComponent({ module, match, replacement, setReplacementError
function renderDiff() {
return diff?.map(p => {
const color = p.added ? "lime" : p.removed ? "red" : "grey";
return <span style={{ color }}>{p.value}</span>;
return <div style={{ color, userSelect: "text" }}>{p.value}</div>;
});
}
@ -284,7 +284,7 @@ function PatchHelper() {
{!!(find && match && replacement) && (
<>
<Forms.FormTitle className={Margins.marginTop20}>Code</Forms.FormTitle>
{Parser.parse(makeCodeblock(code, "ts"))}
<div style={{ userSelect: "text" }}>{Parser.parse(makeCodeblock(code, "ts"))}</div>
<Button onClick={() => Clipboard.copy(code)}>Copy to Clipboard</Button>
</>
)}