Files
AFFiNE-Mirror/blocksuite/affine/blocks/edgeless-text/src/view.ts
T
Saul-Mirone 81b439c4e1 feat(editor): add gfx pointer extension (#12006)
<!-- 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 -->
2025-04-27 04:46:44 +00:00

36 lines
1003 B
TypeScript

import {
type ViewExtensionContext,
ViewExtensionProvider,
} from '@blocksuite/affine-ext-loader';
import { BlockViewExtension } from '@blocksuite/std';
import { literal } from 'lit/static-html.js';
import { EdgelessClipboardEdgelessTextConfig } from './edgeless-clipboard-config';
import { edgelessTextToolbarExtension } from './edgeless-toolbar';
import { effects } from './effects';
export class EdgelessTextViewExtension extends ViewExtensionProvider {
override name = 'affine-edgeless-text-block';
override effect() {
super.effect();
effects();
}
override setup(context: ViewExtensionContext) {
super.setup(context);
const isEdgeless = this.isEdgeless(context.scope);
if (isEdgeless) {
context.register([
BlockViewExtension(
'affine:edgeless-text',
literal`affine-edgeless-text`
),
]);
context.register(edgelessTextToolbarExtension);
context.register(EdgelessClipboardEdgelessTextConfig);
}
}
}