fix(plugin): remove onscroll

This commit is contained in:
austaras
2022-07-27 14:17:53 +08:00
parent b9f46028a8
commit 455feedce5
3 changed files with 0 additions and 13 deletions

View File

@@ -11,8 +11,6 @@ import {
type ReturnUnobserve,
} from '@toeverything/datasource/db-service';
import { addNewGroup } from './recast-block';
import { useIsOnDrag } from './hooks';
import { HookType } from './editor';
interface RenderRootProps {
editor: BlockEditor;
@@ -157,10 +155,6 @@ export const RenderRoot: FC<PropsWithChildren<RenderRootProps>> = ({
editor.getHooks().onRootNodeDrop(event);
};
const onScroll = (event: React.UIEvent) => {
editor.getHooks().onRootNodeScroll(event);
};
return (
<RootContext.Provider value={{ editor, editorElement }}>
<Container
@@ -183,7 +177,6 @@ export const RenderRoot: FC<PropsWithChildren<RenderRootProps>> = ({
onDragOverCapture={onDragOverCapture}
onDragEnd={onDragEnd}
onDrop={onDrop}
isOnDrag={isOnDrag}
>
<Content style={{ maxWidth: pageWidth + 'px' }}>
{children}

View File

@@ -187,8 +187,4 @@ export class Hooks implements HooksRunner, PluginHooks {
public beforeCut(e: ClipboardEvent): void {
this._runHook(HookType.BEFORE_CUT, e);
}
public onRootNodeScroll(e: React.UIEvent): void {
this.run_hook(HookType.ON_ROOTNODE_SCROLL, e);
}
}

View File

@@ -174,7 +174,6 @@ export enum HookType {
AFTER_ON_NODE_DRAG_OVER = 'afterOnNodeDragOver',
BEFORE_COPY = 'beforeCopy',
BEFORE_CUT = 'beforeCut',
ON_ROOTNODE_SCROLL = 'onRootNodeScroll',
}
export interface HookBaseArgs {
@@ -226,7 +225,6 @@ export interface HooksRunner {
) => void;
beforeCopy: (e: ClipboardEvent) => void;
beforeCut: (e: ClipboardEvent) => void;
onRootNodeScroll: (e: React.UIEvent) => void;
}
export type AnyFunction = (...args: any[]) => any;