9f8c61a75a
* fix(backend): 🐛 Fix favorite assignment on backend * fix(frontend): 🐛 fix printer button on recipe page * style(frontend): 🚸 add user feadback on copy of recipe link * fix(frontend): 🐛 Fix enableLandscape incorrect bindings to remove duplicate values * feat(frontend): ✨ add ingredient copy button for markdown list -[ ] format * feat(frontend): ✨ add remove prefix button to bulk entry * fix(frontend): 🐛 disable random button when no recipes are present * fix(frontend): ✨ fix .zip download error * fix(frontend): 🚸 close image dialog on upload/get * fix(frontend): 🐛 fix assignment on creation for categories and tags * feat(frontend): ✨ Open editor on creation / fix edit button on main screen * fix(frontend): 🐛 fix false negative regex match for urls on creationg page * feat(frontend): 🚸 provide better user feadback when recipe exists * feat(frontend): ✨ lock bulk importer on submit * remove zip from navigation * fix(frontend): ✨ rerender recipes on delete Co-authored-by: Hayden K <hay-kot@pm.me>
83 lines
No EOL
1.6 KiB
Vue
83 lines
No EOL
1.6 KiB
Vue
<template>
|
|
<v-tooltip
|
|
ref="copyToolTip"
|
|
v-model="show"
|
|
color="success lighten-1"
|
|
top
|
|
:open-on-hover="false"
|
|
:open-on-click="true"
|
|
close-delay="500"
|
|
transition="slide-y-transition"
|
|
>
|
|
<template #activator="{ on }">
|
|
<v-btn
|
|
:icon="icon"
|
|
:color="color"
|
|
retain-focus-on-click
|
|
:class="btnClass"
|
|
@click="
|
|
on.click;
|
|
textToClipboard();
|
|
"
|
|
@blur="on.blur"
|
|
>
|
|
<v-icon>{{ $globals.icons.contentCopy }}</v-icon>
|
|
{{ icon ? "" : "Copy" }}
|
|
</v-btn>
|
|
</template>
|
|
<span>
|
|
<v-icon left dark>
|
|
{{ $globals.icons.clipboardCheck }}
|
|
</v-icon>
|
|
<slot> {{ $t("general.copied") }}! </slot>
|
|
</span>
|
|
</v-tooltip>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
copyText: {
|
|
type: String,
|
|
default: "Default Copy Text",
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: "primary",
|
|
},
|
|
icon: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
btnClass: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
show: false,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
toggleBlur() {
|
|
this.$refs.copyToolTip.deactivate();
|
|
},
|
|
textToClipboard() {
|
|
this.show = true;
|
|
const copyText = this.copyText;
|
|
navigator.clipboard.writeText(copyText).then(
|
|
() => console.log("Copied", copyText),
|
|
() => console.log("Copied Failed", copyText)
|
|
);
|
|
setTimeout(() => {
|
|
this.toggleBlur();
|
|
}, 500);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style> |