mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-05 20:42:23 -07:00
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
102 lines
2.3 KiB
Vue
102 lines
2.3 KiB
Vue
<template>
|
|
<v-tooltip
|
|
ref="copyToolTip"
|
|
v-model="show"
|
|
:color="copied? 'success-lighten-1' : 'red-lighten-1'"
|
|
top
|
|
:open-on-hover="false"
|
|
:open-on-click="true"
|
|
close-delay="500"
|
|
transition="slide-y-transition"
|
|
>
|
|
<template #activator="{ props }">
|
|
<v-btn
|
|
variant="flat"
|
|
:icon="icon"
|
|
:color="color"
|
|
retain-focus-on-click
|
|
:class="btnClass"
|
|
:disabled="copyText !== '' ? false : true"
|
|
v-bind="props"
|
|
@click="textToClipboard()"
|
|
>
|
|
<v-icon>{{ $globals.icons.contentCopy }}</v-icon>
|
|
{{ icon ? "" : $t("general.copy") }}
|
|
</v-btn>
|
|
</template>
|
|
<span>
|
|
<v-icon
|
|
start
|
|
dark
|
|
>
|
|
{{ $globals.icons.clipboardCheck }}
|
|
</v-icon>
|
|
<slot v-if="!isSupported"> {{ $t("general.your-browser-does-not-support-clipboard") }} </slot>
|
|
<slot v-else> {{ copied ? $t("general.copied_message") : $t("general.clipboard-copy-failure") }} </slot>
|
|
</span>
|
|
</v-tooltip>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useClipboard } from "@vueuse/core";
|
|
|
|
export default defineNuxtComponent({
|
|
props: {
|
|
copyText: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
icon: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
btnClass: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
},
|
|
setup(props) {
|
|
const { copy, copied, isSupported } = useClipboard();
|
|
const show = ref(false);
|
|
const copyToolTip = ref<VTooltip | null>(null);
|
|
|
|
function toggleBlur() {
|
|
copyToolTip.value?.deactivate();
|
|
}
|
|
|
|
async function textToClipboard() {
|
|
if (isSupported.value) {
|
|
await copy(props.copyText);
|
|
if (copied.value) {
|
|
console.log(`Copied\n${props.copyText}`);
|
|
}
|
|
else {
|
|
console.warn("Copy failed: ", copied.value);
|
|
}
|
|
}
|
|
else {
|
|
console.warn("Clipboard is currently not supported by your browser. Ensure you're on a secure (https) site.");
|
|
}
|
|
|
|
show.value = true;
|
|
setTimeout(() => {
|
|
toggleBlur();
|
|
}, 500);
|
|
}
|
|
|
|
return {
|
|
show,
|
|
copyToolTip,
|
|
textToClipboard,
|
|
copied,
|
|
isSupported,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|