#1448, add notification toast for copy success & failure

This commit is contained in:
Ahmed Ejaz 2023-11-19 16:10:22 +05:00 committed by Andreas Nedbal
parent 877d108c2c
commit bfe1851969
2 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,6 @@
import { Controller } from "@hotwired/stimulus";
import I18n from 'retrospring/i18n';
import { showErrorNotification, showNotification } from "retrospring/utilities/notifications";
export default class extends Controller {
@ -9,6 +11,12 @@ export default class extends Controller {
declare readonly copyValue: string;
async copy(){
await navigator.clipboard.writeText(this.copyValue);
try {
await navigator.clipboard.writeText(this.copyValue);
showNotification(I18n.translate("frontend.clipboard_copy.success"));
} catch (error) {
console.log(error);
showErrorNotification(I18n.translate("frontend.clipboard_copy.error"));
}
}
}

View File

@ -62,3 +62,6 @@ en:
title: "Are you sure you want to report this %{type}?"
text: "A moderator will review your report and decide what happens.\nYou can optionally specify a reason."
input: "Specify a reason…"
clipboard_copy:
success: "Content copied to clipboard."
error: "Failed to copy content to clipboard."