mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
80be7a1ca4
* chatbot conversation nodes can contain a copy button * add changeset * the newly added chatbot copy message button is now called show_copy_button * chatbot's Copy component styling improved * chatbot's Copy component - typing fix --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
70 lines
1.2 KiB
Svelte
70 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import { onDestroy } from "svelte";
|
|
import { Copy, Check } from "@gradio/icons";
|
|
|
|
let copied = false;
|
|
export let value: string;
|
|
let timer: NodeJS.Timeout;
|
|
|
|
function copy_feedback(): void {
|
|
copied = true;
|
|
if (timer) clearTimeout(timer);
|
|
timer = setTimeout(() => {
|
|
copied = false;
|
|
}, 2000);
|
|
}
|
|
|
|
async function handle_copy(): Promise<void> {
|
|
if ("clipboard" in navigator) {
|
|
await navigator.clipboard.writeText(value);
|
|
copy_feedback();
|
|
} else {
|
|
const textArea = document.createElement("textarea");
|
|
textArea.value = value;
|
|
|
|
textArea.style.position = "absolute";
|
|
textArea.style.left = "-999999px";
|
|
|
|
document.body.prepend(textArea);
|
|
textArea.select();
|
|
|
|
try {
|
|
document.execCommand("copy");
|
|
copy_feedback();
|
|
} catch (error) {
|
|
console.error(error);
|
|
} finally {
|
|
textArea.remove();
|
|
}
|
|
}
|
|
}
|
|
|
|
onDestroy(() => {
|
|
if (timer) clearTimeout(timer);
|
|
});
|
|
</script>
|
|
|
|
<button on:click={handle_copy} title="copy">
|
|
{#if !copied}
|
|
<span><Copy /> </span>
|
|
{/if}
|
|
{#if copied}
|
|
<span><Check /></span>
|
|
{/if}
|
|
</button>
|
|
|
|
<style>
|
|
button {
|
|
position: relative;
|
|
top: 0;
|
|
right: 0;
|
|
|
|
width: 22px;
|
|
height: 22px;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
}
|
|
</style>
|