mirror of
https://github.com/kunkunsh/kunkun-ext-json.git
synced 2025-04-03 18:16:42 +00:00
Add copy to clipboard functionality and improve UI layout
This commit is contained in:
parent
a832eacb84
commit
c9c4d29d36
@ -5,7 +5,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/kunkunsh/kunkun-ext-json"
|
||||
},
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"license": "MIT",
|
||||
"kunkun": {
|
||||
"name": "JSON Formatter/Inspector",
|
||||
|
@ -5,7 +5,7 @@
|
||||
import { Inspect } from 'svelte-inspect-value';
|
||||
|
||||
let rawJson = $state('');
|
||||
let jsonData = $state({});
|
||||
let jsonData = $state(undefined);
|
||||
|
||||
function loadJsonFromClipboard() {
|
||||
clipboard.readText().then((text) => {
|
||||
@ -40,7 +40,21 @@
|
||||
<div class="h-12" data-kunkun-drag-region></div>
|
||||
<main class="container">
|
||||
<Inspect value={jsonData} />
|
||||
<div class="fixed bottom-5 left-0 flex w-full justify-center">
|
||||
<Button onclick={loadJsonFromClipboard} class="w-[95vw]">Load JSON from Clipboard</Button>
|
||||
<div class="fixed bottom-2 left-0 grid w-full grid-cols-2 justify-center gap-2 px-2">
|
||||
<Button
|
||||
onclick={() => {
|
||||
clipboard
|
||||
.writeText(JSON.stringify(jsonData, null, 2))
|
||||
.then(() => {
|
||||
toast.success('Copied to Clipboard');
|
||||
})
|
||||
.catch(() => {
|
||||
toast.error('Failed to copy to clipboard');
|
||||
});
|
||||
}}
|
||||
disabled={!jsonData}
|
||||
class="">Copy to Clipboard</Button
|
||||
>
|
||||
<Button onclick={loadJsonFromClipboard} class="">Load JSON from Clipboard</Button>
|
||||
</div>
|
||||
</main>
|
||||
|
Loading…
x
Reference in New Issue
Block a user