mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-20 04:18:05 +00:00
288 lines
7.4 KiB
TypeScript
288 lines
7.4 KiB
TypeScript
import { Component, Fragment } from 'react';
|
|
import DragResizeEngine from './drag-resize-engine';
|
|
import { observer, computed, globalContext, Editor } from '@ali/lowcode-editor-core';
|
|
import classNames from 'classnames';
|
|
import { SimulatorContext } from '../context';
|
|
import { BuiltinSimulatorHost } from '../host';
|
|
import { OffsetObserver, Designer } from '../../designer';
|
|
|
|
@observer
|
|
export default class BoxResizing extends Component<{ host: BuiltinSimulatorHost }> {
|
|
static contextType = SimulatorContext;
|
|
|
|
get host(): BuiltinSimulatorHost {
|
|
return this.props.host;
|
|
}
|
|
|
|
get dragging(): boolean {
|
|
return this.host.designer.dragon.dragging;
|
|
}
|
|
|
|
@computed get selecting() {
|
|
const doc = this.host.document;
|
|
if (doc.suspensed) {
|
|
return null;
|
|
}
|
|
const { selection } = doc;
|
|
return this.dragging ? selection.getTopNodes() : selection.getNodes();
|
|
}
|
|
|
|
shouldComponentUpdate() {
|
|
return false;
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
// this.hoveringCapture.setBoundary(this.outline);
|
|
// this.willBind();
|
|
}
|
|
|
|
render() {
|
|
const { selecting } = this;
|
|
if (!selecting || selecting.length < 1) {
|
|
// DIRTY FIX, recore has a bug!
|
|
return <Fragment />;
|
|
}
|
|
|
|
// const componentMeta = selecting[0].componentMeta;
|
|
// const metaData = componentMeta.getMetadata();
|
|
|
|
return (
|
|
<Fragment>
|
|
{selecting.map((node) => (
|
|
<BoxResizingForNode key={node.id} node={node} host={this.props.host} />
|
|
))}
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
@observer
|
|
export class BoxResizingForNode extends Component<{ host: BuiltinSimulatorHost; node: Node }> {
|
|
static contextType = SimulatorContext;
|
|
|
|
get host(): BuiltinSimulatorHost {
|
|
return this.props.host;
|
|
}
|
|
|
|
get dragging(): boolean {
|
|
return this.host.designer.dragon.dragging;
|
|
}
|
|
|
|
@computed get instances() {
|
|
return this.host.getComponentInstances(this.props.node);
|
|
}
|
|
|
|
shouldComponentUpdate() {
|
|
return false;
|
|
}
|
|
|
|
render() {
|
|
const { instances } = this;
|
|
const { node } = this.props;
|
|
const { designer } = this.host;
|
|
|
|
if (!instances || instances.length < 1) {
|
|
return null;
|
|
}
|
|
return (
|
|
<Fragment key={node.id}>
|
|
{instances.map((instance: any) => {
|
|
const observed = designer.createOffsetObserver({
|
|
node,
|
|
instance,
|
|
});
|
|
if (!observed) {
|
|
return null;
|
|
}
|
|
return (
|
|
<BoxResizingInstance key={observed.id} dragging={this.dragging} designer={designer} observed={observed} />
|
|
);
|
|
})}
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
@observer
|
|
export class BoxResizingInstance extends Component<{
|
|
observed: OffsetObserver;
|
|
highlight?: boolean;
|
|
dragging?: boolean;
|
|
designer?: Designer;
|
|
}> {
|
|
// private outline: any;
|
|
private willUnbind: () => any;
|
|
|
|
private outlineRight: any;
|
|
|
|
private outlineLeft: any;
|
|
|
|
private dragEngine: DragResizeEngine;
|
|
|
|
constructor(props: any) {
|
|
super(props);
|
|
this.dragEngine = new DragResizeEngine(props.designer);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.willUnbind) {
|
|
this.willUnbind();
|
|
}
|
|
this.props.observed.purge();
|
|
}
|
|
|
|
getExperiMentalFns = (metaData: any) => {
|
|
if (metaData.experimental && metaData.experimental.callbacks) {
|
|
return metaData.experimantal.callbacks;
|
|
}
|
|
};
|
|
|
|
componentDidMount() {
|
|
// this.hoveringCapture.setBoundary(this.outline);
|
|
this.willBind();
|
|
|
|
const resize = (e: MouseEvent, direction: string, node: any, moveX: number, moveY: number) => {
|
|
const metaData = node.componentMeta.getMetadata();
|
|
if (
|
|
metaData &&
|
|
metaData.experimental &&
|
|
metaData.experimental.callbacks &&
|
|
typeof metaData.experimental.callbacks.onResize === 'function'
|
|
) {
|
|
e.trigger = direction;
|
|
e.deltaX = moveX;
|
|
e.deltaY = moveY;
|
|
metaData.experimental.callbacks.onResize(e, node);
|
|
}
|
|
};
|
|
|
|
const resizeStart = (e: MouseEvent, direction: string, node: any) => {
|
|
const metaData = node.componentMeta.getMetadata();
|
|
if (
|
|
metaData &&
|
|
metaData.experimental &&
|
|
metaData.experimental.callbacks &&
|
|
typeof metaData.experimental.callbacks.onResizeStart === 'function'
|
|
) {
|
|
e.trigger = direction;
|
|
metaData.experimental.callbacks.onResizeStart(e, node);
|
|
}
|
|
};
|
|
|
|
const resizeEnd = (e: MouseEvent, direction: string, node: any) => {
|
|
const metaData = node.componentMeta.getMetadata();
|
|
if (
|
|
metaData &&
|
|
metaData.experimental &&
|
|
metaData.experimental.callbacks &&
|
|
typeof metaData.experimental.callbacks.onResizeEnd === 'function'
|
|
) {
|
|
e.trigger = direction;
|
|
metaData.experimental.callbacks.onResizeStart(e, node);
|
|
}
|
|
|
|
const editor = globalContext.get(Editor);
|
|
const npm = node?.componentMeta?.npm;
|
|
const selected =
|
|
[npm?.package, npm?.componentName].filter((item) => !!item).join('-') ||
|
|
node?.componentMeta?.componentName ||
|
|
'';
|
|
editor?.emit('designer.border.resize', {
|
|
selected,
|
|
layout: node?.parent?.getPropValue('layout') || '',
|
|
});
|
|
};
|
|
|
|
this.dragEngine.onResize(resize);
|
|
this.dragEngine.onResizeStart(resizeStart);
|
|
this.dragEngine.onResizeEnd(resizeEnd);
|
|
}
|
|
|
|
willBind() {
|
|
if (this.willUnbind) {
|
|
this.willUnbind();
|
|
}
|
|
|
|
if (!this.outlineRight && !this.outlineLeft) {
|
|
return;
|
|
}
|
|
|
|
const unBind: any[] = [];
|
|
|
|
unBind.push(
|
|
this.dragEngine.from(this.outlineRight, 'e', () => {
|
|
// if (!this.hoveringLine.hasOutline()) {
|
|
// return null;
|
|
// }
|
|
// return this.hoveringLine.getCurrentNode();
|
|
return this.props.observed.node;
|
|
}),
|
|
);
|
|
unBind.push(
|
|
this.dragEngine.from(this.outlineLeft, 'w', () => {
|
|
return this.props.observed.node;
|
|
// if (!this.hoveringLine.hasOutline()) {
|
|
// return null;
|
|
// }
|
|
// return this.hoveringLine.getCurrentNode();
|
|
}),
|
|
);
|
|
|
|
this.willUnbind = () => {
|
|
if (unBind && unBind.length > 0) {
|
|
unBind.forEach((item) => {
|
|
item();
|
|
});
|
|
}
|
|
this.willUnbind = () => {};
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const { observed } = this.props;
|
|
if (!observed.hasOffset) {
|
|
return null;
|
|
}
|
|
|
|
const { node, offsetWidth, offsetHeight, offsetTop, offsetLeft } = observed;
|
|
let triggerVisible: any = [];
|
|
const metaData = node.componentMeta.getMetadata();
|
|
if (metaData && metaData.experimental && metaData.experimental.getResizingHandlers) {
|
|
triggerVisible = metaData.experimental.getResizingHandlers(node);
|
|
}
|
|
|
|
const className = classNames('lc-borders lc-resize-box');
|
|
|
|
return (
|
|
<div>
|
|
{triggerVisible.includes('w') && (
|
|
<div
|
|
ref={(ref) => {
|
|
this.outlineLeft = ref;
|
|
}}
|
|
className={className}
|
|
style={{
|
|
height: offsetHeight,
|
|
transform: `translate(${offsetLeft - 10}px, ${offsetTop}px)`,
|
|
width: 20,
|
|
}}
|
|
/>
|
|
)}
|
|
{triggerVisible.includes('e') && (
|
|
<div
|
|
className={className}
|
|
ref={(ref) => {
|
|
this.outlineRight = ref;
|
|
}}
|
|
style={{
|
|
height: offsetHeight,
|
|
transform: `translate(${offsetLeft + offsetWidth - 10}px, ${offsetTop}px)`,
|
|
width: 20,
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|