mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-08 04:36:13 +08:00
fix: convert sleep to raf
This commit is contained in:
@@ -4,7 +4,7 @@ import {
|
|||||||
PluginHooks,
|
PluginHooks,
|
||||||
Virgo,
|
Virgo,
|
||||||
} from '@toeverything/components/editor-core';
|
} from '@toeverything/components/editor-core';
|
||||||
import { Point, sleep } from '@toeverything/utils';
|
import { Point } from '@toeverything/utils';
|
||||||
import { GroupDirection } from '@toeverything/framework/virgo';
|
import { GroupDirection } from '@toeverything/framework/virgo';
|
||||||
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
||||||
import { DragItem } from './DragItem';
|
import { DragItem } from './DragItem';
|
||||||
@@ -154,9 +154,10 @@ export const GroupMenu = function ({ editor, hooks }: GroupMenuProps) {
|
|||||||
setShowMenu(false);
|
setShowMenu(false);
|
||||||
|
|
||||||
if (groupBlock) {
|
if (groupBlock) {
|
||||||
const unobserve = groupBlock.onUpdate(async () => {
|
const unobserve = groupBlock.onUpdate(() => {
|
||||||
await sleep();
|
requestAnimationFrame(() => {
|
||||||
setGroupBlock(null);
|
setGroupBlock(null);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
return unobserve;
|
return unobserve;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user