mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 21:20:28 +00:00
87 lines
2.2 KiB
TypeScript
87 lines
2.2 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import './index.scss';
|
|
import { Editor, Title } from '@ali/lowcode-editor-core';
|
|
import { TopIcon } from '@ali/lowcode-editor-skeleton';
|
|
import { Designer } from '@ali/lowcode-designer';
|
|
import { PluginProps } from '@ali/lowcode-types';
|
|
|
|
export interface IProps extends PluginProps {
|
|
editor: Editor;
|
|
logo?: string;
|
|
}
|
|
|
|
export interface IState {
|
|
undoEnable: boolean;
|
|
redoEnable: boolean;
|
|
}
|
|
|
|
export default class UndoRedo extends PureComponent<IProps, IState> {
|
|
public static display = 'LowcodeUndoRedo';
|
|
|
|
private history: any;
|
|
|
|
constructor(props: any) {
|
|
super(props);
|
|
this.state = {
|
|
undoEnable: false,
|
|
redoEnable: false,
|
|
};
|
|
}
|
|
|
|
async componentDidMount() {
|
|
const { editor } = this.props;
|
|
editor.on('designer.history.change', this.handleHistoryChange);
|
|
|
|
const designer = await editor.onceGot(Designer);
|
|
this.history = designer.currentHistory;
|
|
this.updateState(this.history?.getState() || 0);
|
|
}
|
|
|
|
componentWillUnmount(): void {
|
|
const { editor } = this.props;
|
|
editor.off('designer.history.change', this.handleHistoryChange);
|
|
}
|
|
|
|
handleHistoryChange = (history: any): void => {
|
|
this.history = history;
|
|
this.updateState(this.history?.getState() || 0);
|
|
};
|
|
|
|
init = (): void => {
|
|
const { editor } = this.props;
|
|
|
|
this.history = editor.get(Designer)?.currentHistory;
|
|
this.updateState(this.history?.getState() || 0);
|
|
|
|
editor.on('designer.history.change', (history: any): void => {
|
|
this.history = history;
|
|
this.updateState(this.history?.getState() || 0);
|
|
});
|
|
};
|
|
|
|
updateState = (state: number): void => {
|
|
this.setState({
|
|
undoEnable: !!(state & 1),
|
|
redoEnable: !!(state & 2),
|
|
});
|
|
};
|
|
|
|
handleUndoClick = (): void => {
|
|
this.history?.back();
|
|
};
|
|
|
|
handleRedoClick = (): void => {
|
|
this.history?.forward();
|
|
};
|
|
|
|
render(): React.ReactNode {
|
|
const { undoEnable, redoEnable } = this.state;
|
|
return (
|
|
<div className="lowcode-plugin-undo-redo">
|
|
<TopIcon icon="houtui" title="后退" disabled={!undoEnable} onClick={this.handleUndoClick} />
|
|
<TopIcon icon="qianjin" title="前进" disabled={!redoEnable} onClick={this.handleRedoClick} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|