-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add copy to clipboard button for command/script output
- Loading branch information
Showing
6 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<div class="row q-gutter-sm items-center"> | ||
<div class="col-auto">{{ label }}</div> | ||
<div class="col-auto"> | ||
<q-btn dense flat size="md" icon="content_copy" @click="copyText"> | ||
<q-tooltip>Copy to Clipboard</q-tooltip> | ||
</q-btn> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { copyOutput } from "@/utils/helpers"; | ||
const props = defineProps({ | ||
label: String, | ||
data: { | ||
type: String, | ||
required: true, | ||
}, | ||
}); | ||
const copyText = () => { | ||
copyOutput(props.data); | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { copyToClipboard } from "quasar"; | ||
import { notifySuccess } from "@/utils/notify"; | ||
|
||
export function copyOutput(val: string) { | ||
copyToClipboard(val).then(() => { | ||
notifySuccess("Copied to clipboard"); | ||
}); | ||
} |