A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.8 KiB

part of '../neon_files.dart';
2 years ago
abstract class FilesBrowserBlocEvents {
void setPath(final List<String> path);
void createFolder(final List<String> path);
}
abstract class FilesBrowserBlocStates {
BehaviorSubject<Result<List<WebDavFile>>> get files;
BehaviorSubject<List<String>> get path;
}
class FilesBrowserBloc extends InteractiveBloc implements FilesBrowserBlocEvents, FilesBrowserBlocStates {
2 years ago
FilesBrowserBloc(
this._requestManager,
2 years ago
this.options,
this.client,
) {
unawaited(refresh());
2 years ago
}
final RequestManager _requestManager;
2 years ago
final FilesAppSpecificOptions options;
final NextcloudClient client;
@override
void dispose() {
unawaited(files.close());
unawaited(path.close());
2 years ago
super.dispose();
}
@override
BehaviorSubject<Result<List<WebDavFile>>> files = BehaviorSubject<Result<List<WebDavFile>>>();
@override
BehaviorSubject<List<String>> path = BehaviorSubject<List<String>>.seeded([]);
@override
Future refresh() async {
await _requestManager.wrapWebDav<List<WebDavFile>>(
client.id,
'files-${path.value.join('/')}',
files,
() async => client.webdav.propfind(
path.value.join('/'),
prop: WebDavPropWithoutValues.fromBools(
davgetcontenttype: true,
davgetetag: true,
davgetlastmodified: true,
nchaspreview: true,
ocsize: true,
ocfavorite: true,
),
depth: '1',
),
(final response) => response.toWebDavFiles(client.webdav).sublist(1),
emitEmptyCache: true,
);
}
2 years ago
@override
void setPath(final List<String> p) {
path.add(p);
unawaited(refresh());
}
2 years ago
@override
void createFolder(final List<String> path) {
wrapAction(() async => client.webdav.mkcol(path.join('/')));
}
2 years ago
}