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.
 
 

120 lines
3.8 KiB

part of 'neon_files.dart';
class FilesAppSpecificOptions extends NextcloudAppSpecificOptions {
FilesAppSpecificOptions(super.storage) {
super.categories = [
generalCategory,
];
super.options = [
filesSortPropertyOption,
filesSortBoxOrderOption,
showPreviewsOption,
uploadQueueParallelism,
downloadQueueParallelism,
uploadSizeWarning,
downloadSizeWarning,
];
}
final generalCategory = OptionsCategory(
name: (final context) => AppLocalizations.of(context).optionsCategoryGeneral,
);
late final filesSortPropertyOption = SelectOption<FilesSortProperty>(
storage: super.storage,
category: generalCategory,
key: 'files-sort-property',
label: (final context) => AppLocalizations.of(context).newsOptionsArticlesSortProperty,
defaultValue: BehaviorSubject.seeded(FilesSortProperty.name),
values: BehaviorSubject.seeded({
FilesSortProperty.name: (final context) => AppLocalizations.of(context).filesOptionsFilesSortPropertyName,
FilesSortProperty.modifiedDate: (final context) =>
AppLocalizations.of(context).filesOptionsFilesSortPropertyModifiedDate,
FilesSortProperty.size: (final context) => AppLocalizations.of(context).filesOptionsFilesSortPropertySize,
}),
);
late final filesSortBoxOrderOption = SelectOption<SortBoxOrder>(
storage: super.storage,
category: generalCategory,
key: 'files-sort-box-order',
label: (final context) => AppLocalizations.of(context).filesOptionsFilesSortOrder,
defaultValue: BehaviorSubject.seeded(SortBoxOrder.ascending),
values: BehaviorSubject.seeded(sortBoxOrderOptionValues),
);
late final showPreviewsOption = ToggleOption(
storage: super.storage,
category: generalCategory,
key: 'show-previews',
label: (final context) => AppLocalizations.of(context).filesOptionsShowPreviews,
defaultValue: BehaviorSubject.seeded(true),
);
late final uploadQueueParallelism = SelectOption<int>(
storage: storage,
category: generalCategory,
key: 'upload-queue-parallelism',
label: (final context) => AppLocalizations.of(context).filesOptionsUploadQueueParallelism,
defaultValue: BehaviorSubject.seeded(4),
values: BehaviorSubject.seeded({
for (var i = 1; i <= 16; i = i * 2) ...{
i: (final _) => i.toString(),
},
}),
);
late final downloadQueueParallelism = SelectOption<int>(
storage: storage,
category: generalCategory,
key: 'download-queue-parallelism',
label: (final context) => AppLocalizations.of(context).filesOptionsDownloadQueueParallelism,
defaultValue: BehaviorSubject.seeded(4),
values: BehaviorSubject.seeded({
for (var i = 1; i <= 16; i = i * 2) ...{
i: (final _) => i.toString(),
},
}),
);
late final _sizeWarningValues = <int?, String Function(BuildContext)>{
null: (final context) => AppLocalizations.of(context).disabled,
for (final i in [
1,
10,
100,
1024,
2 * 2024,
6 * 1024,
10 * 1024,
]) ...{
_mb(i): (final _) => filesize(_mb(i)),
},
};
int _mb(final int i) => i * 1024 * 1024;
late final uploadSizeWarning = SelectOption<int?>(
storage: storage,
category: generalCategory,
key: 'upload-size-warning',
label: (final context) => AppLocalizations.of(context).filesOptionsUploadSizeWarning,
defaultValue: BehaviorSubject.seeded(_mb(10)),
values: BehaviorSubject.seeded(_sizeWarningValues),
);
late final downloadSizeWarning = SelectOption<int?>(
storage: storage,
category: generalCategory,
key: 'download-size-warning',
label: (final context) => AppLocalizations.of(context).filesOptionsDownloadSizeWarning,
defaultValue: BehaviorSubject.seeded(_mb(10)),
values: BehaviorSubject.seeded(_sizeWarningValues),
);
}
enum FilesSortProperty {
name,
modifiedDate,
size,
}