mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-24 13:58:50 +08:00
680f3b3006
#### PR Dependency Tree
* **PR #13464**
* **PR #13465**
* **PR #13471** 👈
* **PR #13472**
* **PR #13473**
This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
* **New Features**
* DOM rendering added for groups, mind maps and connectors so group
titles/outlines and mindmap connectors are visible on canvas.
* Shapes now support right-to-left text with proper vertical alignment.
* **Improvements**
* Connector labels scale with viewport zoom for crisper display.
* Group-related selections (including nested groups) now update visuals
consistently.
* **Performance**
* Reduced DOM churn and fewer redraws during rendering and selection
changes.
* **Refactor**
* Renderer import/export surfaces consolidated with no user-facing
behavior changes.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import {
|
|
type ViewExtensionContext,
|
|
ViewExtensionProvider,
|
|
} from '@blocksuite/affine-ext-loader';
|
|
|
|
import { ConnectionOverlay } from './connector-manager';
|
|
import { ConnectorTool } from './connector-tool';
|
|
import { effects } from './effects';
|
|
import { ConnectorFilter } from './element-transform';
|
|
import {
|
|
ConnectorDomRendererExtension,
|
|
ConnectorElementRendererExtension,
|
|
} from './renderer';
|
|
import { connectorToolbarExtension } from './toolbar/config';
|
|
import { connectorQuickTool } from './toolbar/quick-tool';
|
|
import { ConnectorElementView, ConnectorInteraction } from './view/view';
|
|
|
|
export class ConnectorViewExtension extends ViewExtensionProvider {
|
|
override name = 'affine-connector-gfx';
|
|
|
|
override effect(): void {
|
|
super.effect();
|
|
effects();
|
|
}
|
|
|
|
override setup(context: ViewExtensionContext) {
|
|
super.setup(context);
|
|
context.register(ConnectorElementView);
|
|
context.register(ConnectorElementRendererExtension);
|
|
context.register(ConnectorDomRendererExtension);
|
|
if (this.isEdgeless(context.scope)) {
|
|
context.register(ConnectorTool);
|
|
context.register(ConnectorFilter);
|
|
context.register(connectorQuickTool);
|
|
context.register(connectorToolbarExtension);
|
|
context.register(ConnectionOverlay);
|
|
context.register(ConnectorInteraction);
|
|
}
|
|
}
|
|
}
|