mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2026-03-24 12:56:59 +00:00
[GH-ISSUE #1134] [FR]: Move Boards/Docs #449
Labels
No labels
2024
2025
2026
acct mgmt
AI
automation
bug
calendar
ci
CJK
cloud
code-block
collaboration
copy-paste
database
data migration
data sync
deploy
desktop
develop
develop
documentation
duplicate
editor
editor-plugin
emoji
export
files
flutter-only
follow-up
formula
good first issue for devs
good first issue for experienced devs
grid
hacktoberfest
HACKTOBERFEST-ACCEPTED
help wanted
i18n
icons
images
importer
improvements
infra
install
integrations
IR
kanban board
login
look and joy
mentorship
mobile
mobile
needs design
new feature
new feature
non-coding
notes
notifications
onboarding
organization
P0+
permission
platform-linux
platform-mac
platform-windows
plugins
program
pull-request
Q1 25
Q1 26
Q2 24
Q2 25
Q3 24
Q3 25
Q4 24
Q4 25
react
regression
rust
rust
Rust-only
Rust-only
Rust-starter
Rust-starter
self-hosted
shortcuts
side panel
slash-menu
sync v2
table
tablet
task
tauri
templates
tests
themes
translation
v0.5.6
v0.5.8
v0.5.9
v0.6.0
v0.6.1
v0.6.4
v0.6.7
v0.6.8
v0.7.1
v0.7.4
v0.7.4
v0.7.5
v0.7.6
v0.7.7
v0.7.8
v0.8.0
v0.8.4
v0.8.5
v0.8.9
web
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
AppFlowy-IO/AppFlowy#449
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @andercard0 on GitHub (Sep 22, 2022).
Original GitHub issue: https://github.com/AppFlowy-IO/AppFlowy/issues/1134
Description
I would like to request if feasible to implement the ability to move boards/docs between the pages as shown in the video below at the moment is not possible!
Impact
Well, not a big of deal to be honest but in the mentioned example above gif, I've created a board 'Nihongo' (Japanese) with my stuff there and below another board 'DevQuest' which is not related to the Japanese language at all 😆 so, due to this mistake of mine, a simple move board would be in handy because this way I would not have to create each of my To Dos All over again!
In this case is kinda of simple, but imagine if i have rather a bunch of these below...
Additional Context
None!
@Xazin commented on GitHub (Apr 2, 2023):
I'm not quite sure how to achieve this without rewriting largely how reorderable is used.
It's a bit of a complex implementation to have one Reorderable still function for two kinds of lists.
Currently, we have the "title" of a section, which is collapsible and has the action with it, this would have to be refactored such that it, and its children, would all be 1 list.
There is a lot of work involved in enabling this basically.
I wonder if anyone else has better ideas on how to achieve this. I have not worked with Reorderable in Flutter that much before.
@zoli commented on GitHub (Apr 6, 2023):
Some weeks ago when I saw this issue I thought maybe instead of reorderable, this feature could get done using appflowy board. But I'm not sure (didn't get into it) how much appflowy board is customizable to use in this case.
@Xazin commented on GitHub (Apr 6, 2023):
This is in the sidebar navigation, which is built using a
ReorderableListView and the children of it contains ReorderableColumn.
To achieve this you'd need to have the children be able to move outside of
the ReorderableColumn.
This could be achieved by either a custom implementation, or rewriting it
to only use one Reorderable type, and then group its children by eg. A
type. Such that you could drag both a "category" and an "app".
@zoli commented on GitHub (Apr 6, 2023):
I know what it is. Still the functionality of the UI part isn't similar to appflowy board? Look at each group as page and each card as file (board/document/etc). In appflowy board UI its possible to move a card between groups so if it be possible to reuse appflowy board UI component in the sidebar it could resolve the UI part of reordering pages and moving file (card) between pages (board group).
@Xazin commented on GitHub (Apr 8, 2023):
The Sidebar is written in Dart/Flutter, while the board if I'm not mistaken, is a React Component, using the
Draggablefrom thereact-beautiful-dndpackage.I mean, it's not that it can't be done, but I'm not sure if it's a good idea to change the sidebar to a react component.
I guess the decision would ultimately be on the team.
@Xazin commented on GitHub (Apr 9, 2023):
Actually, I was looking at the Reorderable package we use, when I have some more time I will look at it, but it seems it should be possible without too much refactoring.
@annieappflowy commented on GitHub (Sep 4, 2023):
Hi @andercard0 , we have supported your requests:
Please give it a try with the latest release and let us know your feedback.
@andercard0 commented on GitHub (Sep 4, 2023):
Hi.
Thank you for all of you guys!
Will use for sure intensively this feature and if anything go wrong I will let you know.
@zoli commented on GitHub (Sep 4, 2023):
I thought this issue was about moving pages between two different sections. The description doesn't say that but the preview is an attempt to move a page from one section to another.