mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-08 01:39:22 +08:00
81b439c4e1
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new pointer graphics module with tools and quick tool integration for edgeless surfaces. - Added a quick tool button for pointer interactions in edgeless mode. - Exposed new extension points for pointer graphics and effects. - **Improvements** - Integrated pointer graphics as a dependency into related packages. - Enhanced toolbar context to support additional surface alignment modes. - Added conditional clipboard configuration registrations for edgeless contexts across multiple block types. - **Removals** - Removed legacy tool and effect definitions and related quick tool exports from edgeless components. - Streamlined extension arrays and removed unused exports for a cleaner codebase. - Deleted obsolete utility functions and component registrations. - **Chores** - Updated workspace and TypeScript project references to include the new pointer graphics module. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import {
|
|
type ViewExtensionContext,
|
|
ViewExtensionProvider,
|
|
} from '@blocksuite/affine-ext-loader';
|
|
import { AttachmentBlockSchema } from '@blocksuite/affine-model';
|
|
import { SlashMenuConfigExtension } from '@blocksuite/affine-widget-slash-menu';
|
|
import { BlockViewExtension, FlavourExtension } from '@blocksuite/std';
|
|
import { literal } from 'lit/static-html.js';
|
|
|
|
import { AttachmentDropOption } from './attachment-service.js';
|
|
import { attachmentSlashMenuConfig } from './configs/slash-menu.js';
|
|
import { createBuiltinToolbarConfigExtension } from './configs/toolbar';
|
|
import { EdgelessClipboardAttachmentConfig } from './edgeless-clipboard-config';
|
|
import { effects } from './effects.js';
|
|
import {
|
|
AttachmentEmbedConfigExtension,
|
|
AttachmentEmbedService,
|
|
} from './embed';
|
|
|
|
const flavour = AttachmentBlockSchema.model.flavour;
|
|
|
|
export class AttachmentViewExtension extends ViewExtensionProvider {
|
|
override name = 'affine-attachment-block';
|
|
|
|
override effect() {
|
|
super.effect();
|
|
effects();
|
|
}
|
|
|
|
override setup(context: ViewExtensionContext) {
|
|
super.setup(context);
|
|
context.register([
|
|
FlavourExtension(flavour),
|
|
BlockViewExtension(flavour, model => {
|
|
return model.parent?.flavour === 'affine:surface'
|
|
? literal`affine-edgeless-attachment`
|
|
: literal`affine-attachment`;
|
|
}),
|
|
AttachmentDropOption,
|
|
AttachmentEmbedConfigExtension(),
|
|
AttachmentEmbedService,
|
|
SlashMenuConfigExtension(flavour, attachmentSlashMenuConfig),
|
|
...createBuiltinToolbarConfigExtension(flavour),
|
|
]);
|
|
if (this.isEdgeless(context.scope)) {
|
|
context.register(EdgelessClipboardAttachmentConfig);
|
|
}
|
|
}
|
|
}
|