feat: new upload (cont) (#20029)

* new upload button

* wip

* pr feedback

* fix: updateAll override album selection value

* feat: status box

* feat: handle upload resume

* re-enable websocket event

* fix: update state condition and upload status

* Better backup detail page

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
Alex 2025-07-21 15:30:51 -05:00 committed by GitHub
parent 1dc62fce5f
commit 4d27f187ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 1558 additions and 413 deletions

View file

@ -1078,6 +1078,22 @@ class DriftTrashRoute extends PageRouteInfo<void> {
);
}
/// generated route for
/// [DriftUploadDetailPage]
class DriftUploadDetailRoute extends PageRouteInfo<void> {
const DriftUploadDetailRoute({List<PageRouteInfo>? children})
: super(DriftUploadDetailRoute.name, initialChildren: children);
static const String name = 'DriftUploadDetailRoute';
static PageInfo page = PageInfo(
name,
builder: (data) {
return const DriftUploadDetailPage();
},
);
}
/// generated route for
/// [DriftUserSelectionPage]
class DriftUserSelectionRoute