part of '../neon_files.dart'; abstract interface class FilesBrowserBlocEvents { void setPath(final List path); void createFolder(final List path); } abstract interface class FilesBrowserBlocStates { BehaviorSubject>> get files; BehaviorSubject> get path; } class FilesBrowserBloc extends InteractiveBloc implements FilesBrowserBlocEvents, FilesBrowserBlocStates { FilesBrowserBloc( this.options, this.account, { final List? initialPath, }) { if (initialPath != null) { path.add(initialPath); } unawaited(refresh()); } final FilesAppSpecificOptions options; final Account account; @override void dispose() { unawaited(files.close()); unawaited(path.close()); super.dispose(); } @override BehaviorSubject>> files = BehaviorSubject>>(); @override BehaviorSubject> path = BehaviorSubject>.seeded([]); @override Future refresh() async { await RequestManager.instance.wrapWebDav>( account.id, 'files-${path.value.join('/')}', files, () async => account.client.webdav.propfind( Uri(pathSegments: path.value), prop: WebDavPropWithoutValues.fromBools( davgetcontenttype: true, davgetetag: true, davgetlastmodified: true, nchaspreview: true, ocsize: true, ocfavorite: true, ), depth: WebDavDepth.one, ), (final response) => response.toWebDavFiles().sublist(1), emitEmptyCache: true, ); } @override void setPath(final List p) { path.add(p); unawaited(refresh()); } @override void createFolder(final List path) { wrapAction(() async => account.client.webdav.mkcol(Uri(pathSegments: path))); } }