mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
90 lines
1.8 KiB
Dart
90 lines
1.8 KiB
Dart
part of 'backups_bloc.dart';
|
|
|
|
sealed class BackupsEvent extends Equatable {
|
|
const BackupsEvent();
|
|
}
|
|
|
|
class BackupsServerLoaded extends BackupsEvent {
|
|
const BackupsServerLoaded();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class BackupsServerReset extends BackupsEvent {
|
|
const BackupsServerReset();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class InitializeBackupsRepository extends BackupsEvent {
|
|
const InitializeBackupsRepository();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class BackupsStateChanged extends BackupsEvent {
|
|
const BackupsStateChanged(this.backups, this.backupConfiguration);
|
|
|
|
final List<Backup> backups;
|
|
final BackupConfiguration? backupConfiguration;
|
|
|
|
@override
|
|
List<Object?> get props => [backups, backupConfiguration];
|
|
}
|
|
|
|
class ForceSnapshotListUpdate extends BackupsEvent {
|
|
const ForceSnapshotListUpdate();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class CreateBackups extends BackupsEvent {
|
|
const CreateBackups(this.services);
|
|
|
|
final List<Service> services;
|
|
|
|
@override
|
|
List<Object?> get props => [services];
|
|
}
|
|
|
|
class RestoreBackup extends BackupsEvent {
|
|
const RestoreBackup(this.backupId, this.restoreStrategy);
|
|
|
|
final String backupId;
|
|
final BackupRestoreStrategy restoreStrategy;
|
|
|
|
@override
|
|
List<Object?> get props => [backupId, restoreStrategy];
|
|
}
|
|
|
|
class SetAutobackupPeriod extends BackupsEvent {
|
|
const SetAutobackupPeriod(this.period);
|
|
|
|
final Duration? period;
|
|
|
|
@override
|
|
List<Object?> get props => [period];
|
|
}
|
|
|
|
class SetAutobackupQuotas extends BackupsEvent {
|
|
const SetAutobackupQuotas(this.quotas);
|
|
|
|
final AutobackupQuotas quotas;
|
|
|
|
@override
|
|
List<Object?> get props => [quotas];
|
|
}
|
|
|
|
class ForgetSnapshot extends BackupsEvent {
|
|
const ForgetSnapshot(this.backupId);
|
|
|
|
final String backupId;
|
|
|
|
@override
|
|
List<Object?> get props => [backupId];
|
|
}
|