|
|
@ -71,128 +71,133 @@ class _FilesBrowserViewState extends State<FilesBrowserView> { |
|
|
|
child: const Icon(Icons.add), |
|
|
|
child: const Icon(Icons.add), |
|
|
|
) |
|
|
|
) |
|
|
|
: null, |
|
|
|
: null, |
|
|
|
body: NeonListView<Widget>( |
|
|
|
body: SortBoxBuilder<FilesSortProperty, WebDavFile>( |
|
|
|
scrollKey: 'files-${pathSnapshot.data!.join('/')}', |
|
|
|
sortBox: filesSortBox, |
|
|
|
withFloatingActionButton: true, |
|
|
|
sortPropertyOption: widget.bloc.options.filesSortPropertyOption, |
|
|
|
items: [ |
|
|
|
sortBoxOrderOption: widget.bloc.options.filesSortBoxOrderOption, |
|
|
|
for (final uploadTask in files.data == null |
|
|
|
input: files.data, |
|
|
|
? <UploadTask>[] |
|
|
|
builder: (final context, final sorted) => NeonListView<Widget>( |
|
|
|
: uploadTasksSnapshot.data!.where( |
|
|
|
scrollKey: 'files-${pathSnapshot.data!.join('/')}', |
|
|
|
(final task) => files.data! |
|
|
|
withFloatingActionButton: true, |
|
|
|
.where((final file) => _pathMatchesFile(task.path, file.name)) |
|
|
|
items: [ |
|
|
|
.isEmpty, |
|
|
|
for (final uploadTask in sorted == null |
|
|
|
)) ...[ |
|
|
|
? <UploadTask>[] |
|
|
|
StreamBuilder<int>( |
|
|
|
: uploadTasksSnapshot.data!.where( |
|
|
|
stream: uploadTask.progress, |
|
|
|
(final task) => |
|
|
|
builder: (final context, final uploadTaskProgressSnapshot) => |
|
|
|
sorted.where((final file) => _pathMatchesFile(task.path, file.name)).isEmpty, |
|
|
|
!uploadTaskProgressSnapshot.hasData |
|
|
|
)) ...[ |
|
|
|
? Container() |
|
|
|
StreamBuilder<int>( |
|
|
|
: _buildFile( |
|
|
|
stream: uploadTask.progress, |
|
|
|
context: context, |
|
|
|
builder: (final context, final uploadTaskProgressSnapshot) => |
|
|
|
details: FileDetails( |
|
|
|
!uploadTaskProgressSnapshot.hasData |
|
|
|
path: uploadTask.path, |
|
|
|
? Container() |
|
|
|
isDirectory: false, |
|
|
|
: _buildFile( |
|
|
|
size: uploadTask.size, |
|
|
|
context: context, |
|
|
|
etag: null, |
|
|
|
details: FileDetails( |
|
|
|
mimeType: null, |
|
|
|
path: uploadTask.path, |
|
|
|
lastModified: uploadTask.lastModified, |
|
|
|
isDirectory: false, |
|
|
|
hasPreview: null, |
|
|
|
size: uploadTask.size, |
|
|
|
isFavorite: null, |
|
|
|
etag: null, |
|
|
|
|
|
|
|
mimeType: null, |
|
|
|
|
|
|
|
lastModified: uploadTask.lastModified, |
|
|
|
|
|
|
|
hasPreview: null, |
|
|
|
|
|
|
|
isFavorite: null, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
uploadProgress: uploadTaskProgressSnapshot.data, |
|
|
|
|
|
|
|
downloadProgress: null, |
|
|
|
), |
|
|
|
), |
|
|
|
uploadProgress: uploadTaskProgressSnapshot.data, |
|
|
|
), |
|
|
|
downloadProgress: null, |
|
|
|
], |
|
|
|
), |
|
|
|
if (sorted != null) ...[ |
|
|
|
), |
|
|
|
for (final file in sorted) ...[ |
|
|
|
], |
|
|
|
if (!widget.onlyShowDirectories || file.isDirectory) ...[ |
|
|
|
if (files.data != null) ...[ |
|
|
|
Builder( |
|
|
|
for (final file in files.data!) ...[ |
|
|
|
builder: (final context) { |
|
|
|
if (!widget.onlyShowDirectories || file.isDirectory) ...[ |
|
|
|
final matchingUploadTasks = uploadTasksSnapshot.data! |
|
|
|
Builder( |
|
|
|
.where((final task) => _pathMatchesFile(task.path, file.name)); |
|
|
|
builder: (final context) { |
|
|
|
final matchingDownloadTasks = downloadTasksSnapshot.data! |
|
|
|
final matchingUploadTasks = uploadTasksSnapshot.data! |
|
|
|
.where((final task) => _pathMatchesFile(task.path, file.name)); |
|
|
|
.where((final task) => _pathMatchesFile(task.path, file.name)); |
|
|
|
|
|
|
|
final matchingDownloadTasks = downloadTasksSnapshot.data! |
|
|
|
|
|
|
|
.where((final task) => _pathMatchesFile(task.path, file.name)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return StreamBuilder<int?>( |
|
|
|
return StreamBuilder<int?>( |
|
|
|
stream: matchingUploadTasks.isNotEmpty |
|
|
|
stream: matchingUploadTasks.isNotEmpty |
|
|
|
? matchingUploadTasks.first.progress |
|
|
|
? matchingUploadTasks.first.progress |
|
|
|
: Stream.value(null), |
|
|
|
|
|
|
|
builder: (final context, final uploadTaskProgressSnapshot) => |
|
|
|
|
|
|
|
StreamBuilder<int?>( |
|
|
|
|
|
|
|
stream: matchingDownloadTasks.isNotEmpty |
|
|
|
|
|
|
|
? matchingDownloadTasks.first.progress |
|
|
|
|
|
|
|
: Stream.value(null), |
|
|
|
: Stream.value(null), |
|
|
|
builder: (final context, final downloadTaskProgressSnapshot) => _buildFile( |
|
|
|
builder: (final context, final uploadTaskProgressSnapshot) => |
|
|
|
context: context, |
|
|
|
StreamBuilder<int?>( |
|
|
|
details: FileDetails( |
|
|
|
stream: matchingDownloadTasks.isNotEmpty |
|
|
|
path: [...widget.bloc.path.value, file.name], |
|
|
|
? matchingDownloadTasks.first.progress |
|
|
|
isDirectory: matchingUploadTasks.isEmpty && file.isDirectory, |
|
|
|
: Stream.value(null), |
|
|
|
size: matchingUploadTasks.isNotEmpty |
|
|
|
builder: (final context, final downloadTaskProgressSnapshot) => _buildFile( |
|
|
|
? matchingUploadTasks.first.size |
|
|
|
context: context, |
|
|
|
: file.size!, |
|
|
|
details: FileDetails( |
|
|
|
etag: matchingUploadTasks.isNotEmpty ? null : file.etag, |
|
|
|
path: [...widget.bloc.path.value, file.name], |
|
|
|
mimeType: matchingUploadTasks.isNotEmpty ? null : file.mimeType, |
|
|
|
isDirectory: matchingUploadTasks.isEmpty && file.isDirectory, |
|
|
|
lastModified: matchingUploadTasks.isNotEmpty |
|
|
|
size: matchingUploadTasks.isNotEmpty |
|
|
|
? matchingUploadTasks.first.lastModified |
|
|
|
? matchingUploadTasks.first.size |
|
|
|
: file.lastModified!, |
|
|
|
: file.size!, |
|
|
|
hasPreview: matchingUploadTasks.isNotEmpty ? null : file.hasPreview, |
|
|
|
etag: matchingUploadTasks.isNotEmpty ? null : file.etag, |
|
|
|
isFavorite: matchingUploadTasks.isNotEmpty ? null : file.favorite, |
|
|
|
mimeType: matchingUploadTasks.isNotEmpty ? null : file.mimeType, |
|
|
|
|
|
|
|
lastModified: matchingUploadTasks.isNotEmpty |
|
|
|
|
|
|
|
? matchingUploadTasks.first.lastModified |
|
|
|
|
|
|
|
: file.lastModified!, |
|
|
|
|
|
|
|
hasPreview: matchingUploadTasks.isNotEmpty ? null : file.hasPreview, |
|
|
|
|
|
|
|
isFavorite: matchingUploadTasks.isNotEmpty ? null : file.favorite, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
uploadProgress: uploadTaskProgressSnapshot.data, |
|
|
|
|
|
|
|
downloadProgress: downloadTaskProgressSnapshot.data, |
|
|
|
), |
|
|
|
), |
|
|
|
uploadProgress: uploadTaskProgressSnapshot.data, |
|
|
|
|
|
|
|
downloadProgress: downloadTaskProgressSnapshot.data, |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
); |
|
|
|
); |
|
|
|
}, |
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
], |
|
|
|
isLoading: files.loading, |
|
|
|
isLoading: files.loading, |
|
|
|
error: files.error, |
|
|
|
error: files.error, |
|
|
|
onRefresh: widget.bloc.refresh, |
|
|
|
onRefresh: widget.bloc.refresh, |
|
|
|
builder: (final context, final widget) => widget, |
|
|
|
builder: (final context, final widget) => widget, |
|
|
|
topScrollingChildren: [ |
|
|
|
topScrollingChildren: [ |
|
|
|
Align( |
|
|
|
Align( |
|
|
|
alignment: Alignment.topLeft, |
|
|
|
alignment: Alignment.topLeft, |
|
|
|
child: Container( |
|
|
|
child: Container( |
|
|
|
margin: const EdgeInsets.symmetric( |
|
|
|
margin: const EdgeInsets.symmetric( |
|
|
|
horizontal: 10, |
|
|
|
horizontal: 10, |
|
|
|
), |
|
|
|
), |
|
|
|
child: Wrap( |
|
|
|
child: Wrap( |
|
|
|
crossAxisAlignment: WrapCrossAlignment.center, |
|
|
|
crossAxisAlignment: WrapCrossAlignment.center, |
|
|
|
children: <Widget>[ |
|
|
|
children: <Widget>[ |
|
|
|
SizedBox( |
|
|
|
SizedBox( |
|
|
|
height: 40, |
|
|
|
height: 40, |
|
|
|
child: InkWell( |
|
|
|
child: InkWell( |
|
|
|
onTap: () { |
|
|
|
onTap: () { |
|
|
|
widget.bloc.setPath([]); |
|
|
|
widget.bloc.setPath([]); |
|
|
|
}, |
|
|
|
}, |
|
|
|
child: const Icon(Icons.house), |
|
|
|
child: const Icon(Icons.house), |
|
|
|
), |
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
for (var i = 0; i < pathSnapshot.data!.length; i++) ...[ |
|
|
|
|
|
|
|
InkWell( |
|
|
|
|
|
|
|
onTap: () { |
|
|
|
|
|
|
|
widget.bloc.setPath(pathSnapshot.data!.sublist(0, i + 1)); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
child: Text(pathSnapshot.data![i]), |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
], |
|
|
|
for (var i = 0; i < pathSnapshot.data!.length; i++) ...[ |
|
|
|
] |
|
|
|
InkWell( |
|
|
|
.intersperse( |
|
|
|
onTap: () { |
|
|
|
const Icon( |
|
|
|
widget.bloc.setPath(pathSnapshot.data!.sublist(0, i + 1)); |
|
|
|
Icons.keyboard_arrow_right, |
|
|
|
}, |
|
|
|
size: 40, |
|
|
|
child: Text(pathSnapshot.data![i]), |
|
|
|
), |
|
|
|
), |
|
|
|
) |
|
|
|
], |
|
|
|
.toList(), |
|
|
|
] |
|
|
|
|
|
|
|
.intersperse( |
|
|
|
|
|
|
|
const Icon( |
|
|
|
|
|
|
|
Icons.keyboard_arrow_right, |
|
|
|
|
|
|
|
size: 40, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
.toList(), |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
], |
|
|
|
], |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|