mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-23 09:17:06 +08:00
97 lines
2.9 KiB
TypeScript
97 lines
2.9 KiB
TypeScript
import { insertLinkByQuickSearchCommand } from '@blocksuite/affine-block-bookmark';
|
|
import { insertEmbedCard } from '@blocksuite/affine-block-embed';
|
|
import { DefaultTool } from '@blocksuite/affine-block-surface';
|
|
import { toggleEmbedCardCreateModal } from '@blocksuite/affine-components/embed-card-modal';
|
|
import { LinkIcon } from '@blocksuite/affine-components/icons';
|
|
import { TelemetryProvider } from '@blocksuite/affine-shared/services';
|
|
import { QuickToolMixin } from '@blocksuite/affine-widget-edgeless-toolbar';
|
|
import { GfxControllerIdentifier } from '@blocksuite/std/gfx';
|
|
import { css, html, LitElement } from 'lit';
|
|
|
|
export class EdgelessLinkToolButton extends QuickToolMixin(LitElement) {
|
|
static override styles = css`
|
|
.link-icon,
|
|
.link-icon > svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
`;
|
|
|
|
override type = DefaultTool;
|
|
|
|
private _onClick() {
|
|
const [success, { insertedLinkType }] = this.edgeless.std.command.exec(
|
|
insertLinkByQuickSearchCommand
|
|
);
|
|
|
|
if (!success) {
|
|
// fallback to create a bookmark block with input modal
|
|
toggleEmbedCardCreateModal(
|
|
this.edgeless.host,
|
|
'Links',
|
|
'The added link will be displayed as a card view.',
|
|
{
|
|
mode: 'edgeless',
|
|
onSave: url => {
|
|
insertEmbedCard(this.edgeless.std, {
|
|
flavour: 'affine:bookmark',
|
|
targetStyle: 'vertical',
|
|
props: { url },
|
|
});
|
|
},
|
|
},
|
|
({ mode }) => {
|
|
if (mode === 'edgeless') {
|
|
const gfx = this.edgeless.std.get(GfxControllerIdentifier);
|
|
gfx.tool.setTool(DefaultTool);
|
|
}
|
|
}
|
|
).catch(console.error);
|
|
return;
|
|
}
|
|
|
|
insertedLinkType
|
|
?.then(type => {
|
|
const flavour = type?.flavour;
|
|
if (!flavour) return;
|
|
|
|
this.edgeless.std
|
|
.getOptional(TelemetryProvider)
|
|
?.track('CanvasElementAdded', {
|
|
control: 'toolbar:general',
|
|
page: 'whiteboard editor',
|
|
module: 'toolbar',
|
|
segment: 'toolbar',
|
|
type: flavour.split(':')[1],
|
|
});
|
|
|
|
this.edgeless.std
|
|
.getOptional(TelemetryProvider)
|
|
?.track('LinkedDocCreated', {
|
|
control: 'links',
|
|
page: 'whiteboard editor',
|
|
module: 'edgeless toolbar',
|
|
segment: 'whiteboard',
|
|
type: flavour.split(':')[1],
|
|
other: 'existing doc',
|
|
});
|
|
})
|
|
.catch(console.error);
|
|
}
|
|
|
|
override render() {
|
|
return html`<edgeless-tool-icon-button
|
|
.iconContainerPadding="${6}"
|
|
.tooltip="${html`<affine-tooltip-content-with-shortcut
|
|
data-tip="${'Link'}"
|
|
data-shortcut="${'@'}"
|
|
></affine-tooltip-content-with-shortcut>`}"
|
|
.tooltipOffset=${17}
|
|
class="edgeless-link-tool-button"
|
|
@click=${this._onClick}
|
|
>
|
|
<span class="link-icon">${LinkIcon}</span>
|
|
</edgeless-tool-icon-button>`;
|
|
}
|
|
}
|