mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-09 05:05:52 +08:00
61121ab727
Closes: BS-3206 Closes: BS-3210 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced new brush and note view extensions, enhancing integration and extensibility for brush and note tools. - Added store extension for brush tools, allowing for improved adapter integration. - **Improvements** - Expanded module exports for brush and note graphics, making store and view functionalities more accessible. - Added new dependencies to support extension loading and improved project structure. - **Refactor** - Updated extension arrays and toolbars to use the new view and store extensions for brush and note tools. - Removed legacy brush and note tools, effects, and toolbar extensions in favor of the new extension-based approach. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
import {
|
|
type ViewExtensionContext,
|
|
ViewExtensionProvider,
|
|
} from '@blocksuite/affine-ext-loader';
|
|
|
|
import { BrushTool } from './brush-tool';
|
|
import { effects } from './effects';
|
|
import { BrushElementRendererExtension } from './element-renderer';
|
|
import { EraserTool } from './eraser-tool';
|
|
import { HighlighterTool } from './highlighter-tool';
|
|
import {
|
|
brushToolbarExtension,
|
|
highlighterToolbarExtension,
|
|
} from './toolbar/configs';
|
|
import { penSeniorTool } from './toolbar/senior-tool';
|
|
|
|
export class BrushViewExtension extends ViewExtensionProvider {
|
|
override name = 'affine-brush-gfx';
|
|
|
|
override effect(): void {
|
|
super.effect();
|
|
effects();
|
|
}
|
|
|
|
override setup(context: ViewExtensionContext) {
|
|
super.setup(context);
|
|
|
|
context.register(BrushTool);
|
|
context.register(EraserTool);
|
|
context.register(HighlighterTool);
|
|
|
|
context.register(BrushElementRendererExtension);
|
|
|
|
context.register(brushToolbarExtension);
|
|
context.register(highlighterToolbarExtension);
|
|
|
|
context.register(penSeniorTool);
|
|
}
|
|
}
|