mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add a fallback when the browser does not support copying the share link to clipboard (not a secure origin)
See: https://stackoverflow.com/a/51823007
This commit is contained in:
parent
762a1ba998
commit
b6fcfa9fc8
4 changed files with 40 additions and 33 deletions
|
@ -47,21 +47,23 @@ export const ShareDialog = () => {
|
|||
{
|
||||
onSuccess: (res) => {
|
||||
const url = shareUrl(res?.data?.id)
|
||||
navigator.clipboard
|
||||
.writeText(url)
|
||||
.then(() => {
|
||||
notify('message.shareSuccess', 'info', { url }, false, 0)
|
||||
})
|
||||
.catch((err) => {
|
||||
notify(
|
||||
translate('message.shareFailure', { url }) + ': ' + err.message,
|
||||
{
|
||||
type: 'warning',
|
||||
multiLine: true,
|
||||
duration: 0,
|
||||
}
|
||||
)
|
||||
})
|
||||
if (navigator.clipboard && window.isSecureContext) {
|
||||
navigator.clipboard
|
||||
.writeText(url)
|
||||
.then(() => {
|
||||
notify('message.shareSuccess', 'info', { url }, false, 0)
|
||||
})
|
||||
.catch((err) => {
|
||||
notify(
|
||||
translate('message.shareFailure', { url }) + ': ' + err.message,
|
||||
{
|
||||
type: 'warning',
|
||||
multiLine: true,
|
||||
duration: 0,
|
||||
}
|
||||
)
|
||||
})
|
||||
} else prompt(translate('message.shareCopyToClipboard'), url)
|
||||
},
|
||||
onFailure: (error) =>
|
||||
notify(translate('ra.page.error') + ': ' + error.message, {
|
||||
|
|
|
@ -369,6 +369,7 @@
|
|||
"shareOriginalFormat": "Share in original format",
|
||||
"shareDialogTitle": "Share %{resource} '%{name}'",
|
||||
"shareBatchDialogTitle": "Share 1 %{resource} |||| Share %{smart_count} %{resource}",
|
||||
"shareCopyToClipboard": "Copy to clipboard: Ctrl+C, Enter",
|
||||
"shareSuccess": "URL copied to clipboard: %{url}",
|
||||
"shareFailure": "Error copying URL %{url} to clipboard",
|
||||
"downloadDialogTitle": "Download %{resource} '%{name}' (%{size})",
|
||||
|
|
|
@ -29,25 +29,28 @@ const ShareList = (props) => {
|
|||
|
||||
const handleShare = (r) => (e) => {
|
||||
const url = shareUrl(r?.id)
|
||||
navigator.clipboard
|
||||
.writeText(url)
|
||||
.then(() => {
|
||||
notify(translate('message.shareSuccess', { url }), {
|
||||
type: 'info',
|
||||
multiLine: true,
|
||||
duration: 0,
|
||||
})
|
||||
})
|
||||
.catch((err) => {
|
||||
notify(
|
||||
translate('message.shareFailure', { url }) + ': ' + err.message,
|
||||
{
|
||||
type: 'warning',
|
||||
if (navigator.clipboard && window.isSecureContext) {
|
||||
navigator.clipboard
|
||||
.writeText(url)
|
||||
.then(() => {
|
||||
notify(translate('message.shareSuccess', { url }), {
|
||||
type: 'info',
|
||||
multiLine: true,
|
||||
duration: 0,
|
||||
}
|
||||
)
|
||||
})
|
||||
})
|
||||
})
|
||||
.catch((err) => {
|
||||
notify(
|
||||
translate('message.shareFailure', { url }) + ': ' + err.message,
|
||||
{
|
||||
type: 'warning',
|
||||
multiLine: true,
|
||||
duration: 0,
|
||||
}
|
||||
)
|
||||
})
|
||||
} else prompt(translate('message.shareCopyToClipboard'), url)
|
||||
|
||||
e.preventDefault()
|
||||
e.stopPropagation()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue