[GH-ISSUE #1628] [Bug] Resizing window when table-view is opened re-opens grid infinitely in the backend #622

Closed
opened 2026-03-23 20:38:50 +00:00 by mirror · 2 comments
Owner

Originally created by @richardshiue on GitHub (Jan 1, 2023).
Original GitHub issue: https://github.com/AppFlowy-IO/AppFlowy/issues/1628

Originally assigned to: @appflowy on GitHub.

Bug Description

Title basically says all. The terminal is flooded with this message:

{"msg":"[⛳ OPEN_GRID - START]","line":95,"file":"flowy-grid/src/manager.rs"}
{"msg":"[⛳ OPEN_GRID - END]","line":95,"file":"flowy-grid/src/manager.rs","elapsed_milliseconds":0}
  • Does not happen for kanban
  • Does not happen on v0.0.6.2 and earlier

How to Reproduce

  1. Open a database in table-view
  2. Resize the window
  3. Observe that there is a flood of messages resembling the lines below.

Expected Behavior

The terminal shouldn't be flooded with these messages. And if it's causing performance problems, that shouldn't happen either.

Operating System

Fedora Linux 36

AppFlowy Version(s)

0.0.7 and later

Screenshots

No response

Additional Context

No response

Originally created by @richardshiue on GitHub (Jan 1, 2023). Original GitHub issue: https://github.com/AppFlowy-IO/AppFlowy/issues/1628 Originally assigned to: @appflowy on GitHub. ### Bug Description Title basically says all. The terminal is flooded with this message: ``` {"msg":"[⛳ OPEN_GRID - START]","line":95,"file":"flowy-grid/src/manager.rs"} {"msg":"[⛳ OPEN_GRID - END]","line":95,"file":"flowy-grid/src/manager.rs","elapsed_milliseconds":0} ``` - Does not happen for kanban - Does not happen on v0.0.6.2 and earlier ### How to Reproduce 1. Open a database in table-view 2. Resize the window 3. Observe that there is a flood of messages resembling the lines below. ### Expected Behavior The terminal shouldn't be flooded with these messages. And if it's causing performance problems, that shouldn't happen either. ### Operating System Fedora Linux 36 ### AppFlowy Version(s) 0.0.7 and later ### Screenshots _No response_ ### Additional Context _No response_
mirror 2026-03-23 20:38:50 +00:00
  • closed this issue
  • added the
    grid
    bug
    labels
Author
Owner

@appflowy commented on GitHub (Jan 5, 2023):

Thanks for reporting this. I check the code again and I think it's ok because resizing the windows won't cause the grid close. So the instance will be reused when open_grid get called.

Future<Either<Unit, FlowyError>> closeGrid() {
   final request = ViewIdPB(value: gridId);
   return FolderEventCloseView(request).send();
 }
<!-- gh-comment-id:1371849468 --> @appflowy commented on GitHub (Jan 5, 2023): Thanks for reporting this. I check the code again and I think it's ok because resizing the windows won't cause the grid close. So the instance will be reused when `open_grid` get called. ```dart Future<Either<Unit, FlowyError>> closeGrid() { final request = ViewIdPB(value: gridId); return FolderEventCloseView(request).send(); } ```
Author
Owner

@richardshiue commented on GitHub (Jan 7, 2023):

Ok thanks, was good to make sure. Closing as non-issue.

<!-- gh-comment-id:1374516957 --> @richardshiue commented on GitHub (Jan 7, 2023): Ok thanks, was good to make sure. Closing as non-issue.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#622
No description provided.