You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When displaying a list of files, are you envisioning a feature like "Save recursively" that allows all files under a specific path to be downloaded together?
I agree that this feature is important for this application.
Here are some concerns that have been hindering the implementation:
Since the file size could become large, we need to ensure proper progress display and the ability to cancel the operation appropriately.
There could be many requests in a short period, so it is necessary to manage requests properly.
To prevent unintended operations, it might be better to show a confirmation dialog.
Currently, the application does not have a confirmation dialog implementation.
It might be necessary to display the number of target files and the total size beforehand.
When displaying a list of files, are you envisioning a feature like "Save recursively" that allows all files under a specific path to be downloaded together?
Yes!
I see your concerns! Ratatui probably has some confirmation dialog.
In reality, the implementation of dialog itself is not particularly difficult.
The true challenge in TUI applications lies in determining the appropriate implementation approach, as the way widgets are displayed and interacted with can vary greatly depending on the nature of the application and the developer's perspective.
I use s3 for backups, where I structure the backups using prefixes. It would be cool to be able to download a given backup.
The text was updated successfully, but these errors were encountered: