web/elements: fix token copy button not working on chrome...
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
c7e6eb8896
commit
99a371a02c
|
@ -60,19 +60,43 @@ export class TokenCopyButton extends ActionButton {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.setLoading();
|
this.setLoading();
|
||||||
navigator.clipboard.write([
|
// Because safari is stupid, it only allows navigator.clipboard.write directly
|
||||||
new ClipboardItem({
|
// in the @click handler.
|
||||||
"text/plain": (this.callAction() as Promise<string>)
|
// And also chrome is stupid, because it doesn't accept Promises as values for
|
||||||
.then((key: string) => {
|
// ClipboardItem, so now there's two implementations
|
||||||
|
if (
|
||||||
|
navigator.userAgent.includes("Safari") &&
|
||||||
|
!navigator.userAgent.includes("Chrome")
|
||||||
|
) {
|
||||||
|
navigator.clipboard.write([
|
||||||
|
new ClipboardItem({
|
||||||
|
"text/plain": (this.callAction() as Promise<string>)
|
||||||
|
.then((key: string) => {
|
||||||
|
this.setDone(SUCCESS_CLASS);
|
||||||
|
return new Blob([key], {
|
||||||
|
type: "text/plain",
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch((err: Error) => {
|
||||||
|
this.setDone(ERROR_CLASS);
|
||||||
|
throw err;
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
(this.callAction() as Promise<string>)
|
||||||
|
.then((key: string) => {
|
||||||
|
navigator.clipboard.writeText(key).then(() => {
|
||||||
this.setDone(SUCCESS_CLASS);
|
this.setDone(SUCCESS_CLASS);
|
||||||
return key;
|
});
|
||||||
})
|
})
|
||||||
.catch((err: Error) => {
|
.catch((err: Response | undefined) => {
|
||||||
|
return err?.json().then((errResp) => {
|
||||||
this.setDone(ERROR_CLASS);
|
this.setDone(ERROR_CLASS);
|
||||||
throw err;
|
throw new Error(errResp["detail"]);
|
||||||
}),
|
});
|
||||||
}),
|
});
|
||||||
]);
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
${this.isRunning
|
${this.isRunning
|
||||||
|
|
|
@ -42,6 +42,7 @@ export class OutpostDeploymentModal extends ModalButton {
|
||||||
</label>
|
</label>
|
||||||
<div>
|
<div>
|
||||||
<ak-token-copy-button
|
<ak-token-copy-button
|
||||||
|
class="pf-m-primary"
|
||||||
identifier="${ifDefined(this.outpost?.tokenIdentifier)}"
|
identifier="${ifDefined(this.outpost?.tokenIdentifier)}"
|
||||||
>
|
>
|
||||||
${t`Click to copy token`}
|
${t`Click to copy token`}
|
||||||
|
|
Reference in New Issue