chore: delay overlap dragtarget event

This commit is contained in:
appflowy 2022-08-23 17:44:53 +08:00
parent d941db29a1
commit 7be510fa22
4 changed files with 15 additions and 9 deletions

View File

@ -28,7 +28,7 @@ class Log {
static void trace(String? message) {
if (enableLog) {
debugPrint('❗️[Trace] - ${DateTime.now().second}=> $message');
// debugPrint('❗️[Trace] - ${DateTime.now().second}=> $message');
}
}
}

View File

@ -197,7 +197,7 @@ class AFBoardDataController extends ChangeNotifier
assert(index != -1);
if (index != -1) {
if (index != newIndex) {
Log.debug(
Log.trace(
'[$BoardPhantomController] update $columnId:$index to $columnId:$newIndex');
final item = columnDataController.removeAt(index, notify: false);
columnDataController.insert(newIndex, item, notify: false);

View File

@ -55,6 +55,7 @@ class OverlappingDragTargetInterceptor extends DragTargetInterceptor {
final String reorderFlexId;
final List<String> acceptedReorderFlexId;
final OverlapDragTargetDelegate delegate;
Timer? _delayOperation;
OverlappingDragTargetInterceptor({
required this.delegate,
@ -77,12 +78,17 @@ class OverlappingDragTargetInterceptor extends DragTargetInterceptor {
if (dragTargetId == dragTargetData.reorderFlexId) {
delegate.cancel();
} else {
final index = delegate.canMoveTo(dragTargetId);
Log.trace(
'[$OverlappingDragTargetInterceptor] move to $dragTargetId at $index');
if (index != -1) {
delegate.moveTo(dragTargetId, dragTargetData, index);
}
/// The priority of the column interactions is high than the cross column.
/// Workaround: delay 100 milliseconds to lower the cross column event priority.
_delayOperation?.cancel();
_delayOperation = Timer(const Duration(milliseconds: 100), () {
final index = delegate.canMoveTo(dragTargetId);
if (index != -1) {
Log.trace(
'[$OverlappingDragTargetInterceptor] move to $dragTargetId at $index');
delegate.moveTo(dragTargetId, dragTargetData, index);
}
});
}
return true;

View File

@ -437,7 +437,7 @@ class ReorderFlexState extends State<ReorderFlex>
/// The [willAccept] will be true if the dargTarget is the widget that gets
/// dragged and it is dragged on top of the other dragTargets.
///
Log.debug(
Log.trace(
'[$ReorderDragTarget] ${widget.dataSource.identifier} on will accept, dragIndex:$dragIndex, dragTargetIndex:$dragTargetIndex, count: ${widget.dataSource.items.length}');
bool willAccept =