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.

147 lines
4.3 KiB

part of 'neon_files.dart';
2 years ago
class FilesAppSpecificOptions extends NextcloudAppOptions {
2 years ago
FilesAppSpecificOptions(super.storage) {
super.categories = [
generalCategory,
];
super.options = [
filesSortPropertyOption,
filesSortBoxOrderOption,
showHiddenFilesOption,
2 years ago
showPreviewsOption,
uploadQueueParallelism,
downloadQueueParallelism,
uploadSizeWarning,
downloadSizeWarning,
2 years ago
];
}
final generalCategory = OptionsCategory(
name: (final context) => AppLocalizations.of(context).general,
2 years ago
);
late final filesSortPropertyOption = SelectOption<FilesSortProperty>(
storage: super.storage,
category: generalCategory,
key: FilesOptionKeys.sortProperty,
label: (final context) => AppLocalizations.of(context).optionsFilesSortProperty,
defaultValue: FilesSortProperty.name,
values: {
FilesSortProperty.name: (final context) => AppLocalizations.of(context).optionsFilesSortPropertyName,
FilesSortProperty.modifiedDate: (final context) =>
AppLocalizations.of(context).optionsFilesSortPropertyModifiedDate,
FilesSortProperty.size: (final context) => AppLocalizations.of(context).optionsFilesSortPropertySize,
},
);
late final filesSortBoxOrderOption = SelectOption<SortBoxOrder>(
storage: super.storage,
category: generalCategory,
key: FilesOptionKeys.sortOrder,
label: (final context) => AppLocalizations.of(context).optionsFilesSortOrder,
defaultValue: SortBoxOrder.ascending,
values: sortBoxOrderOptionValues,
);
late final showHiddenFilesOption = ToggleOption(
storage: super.storage,
category: generalCategory,
key: FilesOptionKeys.showHiddenFiles,
label: (final context) => AppLocalizations.of(context).optionsShowHiddenFiles,
defaultValue: false,
);
2 years ago
late final showPreviewsOption = ToggleOption(
storage: super.storage,
category: generalCategory,
key: FilesOptionKeys.showPreviews,
label: (final context) => AppLocalizations.of(context).optionsShowPreviews,
defaultValue: true,
2 years ago
);
late final uploadQueueParallelism = SelectOption<int>(
storage: storage,
2 years ago
category: generalCategory,
key: FilesOptionKeys.uploadQueueParallelism,
label: (final context) => AppLocalizations.of(context).optionsUploadQueueParallelism,
defaultValue: 4,
values: {
2 years ago
for (var i = 1; i <= 16; i = i * 2) ...{
i: (final _) => i.toString(),
},
},
2 years ago
);
late final downloadQueueParallelism = SelectOption<int>(
storage: storage,
2 years ago
category: generalCategory,
key: FilesOptionKeys.downloadQueueParallelism,
label: (final context) => AppLocalizations.of(context).optionsDownloadQueueParallelism,
defaultValue: 4,
values: {
2 years ago
for (var i = 1; i <= 16; i = i * 2) ...{
i: (final _) => i.toString(),
},
},
2 years ago
);
late final _sizeWarningValues = <int?, LabelBuilder>{
null: (final context) => AppLocalizations.of(context).optionsSizeWarningDisabled,
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: FilesOptionKeys.uploadSizeWarning,
label: (final context) => AppLocalizations.of(context).optionsUploadSizeWarning,
defaultValue: _mb(10),
values: _sizeWarningValues,
);
late final downloadSizeWarning = SelectOption<int?>(
storage: storage,
category: generalCategory,
key: FilesOptionKeys.downloadSizeWarning,
label: (final context) => AppLocalizations.of(context).optionsDownloadSizeWarning,
defaultValue: _mb(10),
values: _sizeWarningValues,
);
2 years ago
}
enum FilesOptionKeys implements Storable {
sortProperty._('files-sort-property'),
sortOrder._('files-sort-box-order'),
showHiddenFiles._('show-hidden-files'),
showPreviews._('show-previews'),
uploadQueueParallelism._('upload-queue-parallelism'),
downloadQueueParallelism._('download-queue-parallelism'),
uploadSizeWarning._('upload-size-warning'),
downloadSizeWarning._('download-size-warning');
const FilesOptionKeys._(this.value);
@override
final String value;
}
enum FilesSortProperty {
name,
modifiedDate,
size,
isFolder,
}