mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-27 17:22:36 +03:00
fix(core): link copying and pasting (#8157)
Related to: https://github.com/toeverything/blocksuite/pull/8233
This commit is contained in:
parent
d31565eb98
commit
6b266e3a1b
@ -72,14 +72,20 @@ function createCopyLinkToBlockMenuItem(
|
||||
const str = generateUrl(options);
|
||||
if (!str) return;
|
||||
|
||||
track.doc.editor.toolbar.copyBlockToLink({ type: model.flavour });
|
||||
const type = model.flavour;
|
||||
const title = editor.doc.title$.value;
|
||||
const page = editor.editorContainer$.value;
|
||||
|
||||
navigator.clipboard
|
||||
.writeText(str)
|
||||
page?.host?.std.clipboard
|
||||
.writeToClipboard(items => {
|
||||
items['text/plain'] = str;
|
||||
// wrap a link
|
||||
items['text/html'] = `<a title="${title}" href="${str}">${title}</a>`;
|
||||
return items;
|
||||
})
|
||||
.then(() => {
|
||||
notify.success({
|
||||
title: I18n['Copied link to clipboard'](),
|
||||
});
|
||||
track.doc.editor.toolbar.copyBlockToLink({ type });
|
||||
notify.success({ title: I18n['Copied link to clipboard']() });
|
||||
})
|
||||
.catch(console.error);
|
||||
},
|
||||
|
@ -114,14 +114,18 @@ function createCopyLinkToBlockMenuItem(
|
||||
return;
|
||||
}
|
||||
|
||||
track.doc.editor.toolbar.copyBlockToLink({ type });
|
||||
const title = editor.doc.title$.value;
|
||||
|
||||
navigator.clipboard
|
||||
.writeText(str)
|
||||
ctx.std.clipboard
|
||||
.writeToClipboard(items => {
|
||||
items['text/plain'] = str;
|
||||
// wrap a link
|
||||
items['text/html'] = `<a title="${title}" href="${str}">${title}</a>`;
|
||||
return items;
|
||||
})
|
||||
.then(() => {
|
||||
notify.success({
|
||||
title: I18n['Copied link to clipboard'](),
|
||||
});
|
||||
track.doc.editor.toolbar.copyBlockToLink({ type });
|
||||
notify.success({ title: I18n['Copied link to clipboard']() });
|
||||
})
|
||||
.catch(console.error);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user