75 lines
2.6 KiB
Dart
75 lines
2.6 KiB
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:minecraft_server_installer/main/constants.dart';
|
|
import 'package:minecraft_server_installer/vanilla/adapter/presentation/game_version_view_model.dart';
|
|
import 'package:minecraft_server_installer/vanilla/adapter/presentation/vanilla_state.dart';
|
|
import 'package:minecraft_server_installer/vanilla/application/use_case/download_server_file_use_case.dart';
|
|
import 'package:minecraft_server_installer/vanilla/application/use_case/get_game_version_list_use_case.dart';
|
|
import 'package:path/path.dart' as path;
|
|
|
|
class VanillaBloc extends Bloc<VanillaEvent, VanillaState> {
|
|
final GetGameVersionListUseCase _getGameVersionListUseCase;
|
|
final DownloadServerFileUseCase _downloadServerFileUseCase;
|
|
|
|
VanillaBloc(this._getGameVersionListUseCase, this._downloadServerFileUseCase) : super(const VanillaState.empty()) {
|
|
on<VanillaGameVersionListLoadedEvent>((_, emit) async {
|
|
try {
|
|
final gameVersions = await _getGameVersionListUseCase();
|
|
emit(
|
|
const VanillaState.empty().copyWith(
|
|
gameVersions: gameVersions.map((entity) => GameVersionViewModel.from(entity)).toList(),
|
|
),
|
|
);
|
|
} on Exception {
|
|
emit(const VanillaState.empty());
|
|
}
|
|
});
|
|
|
|
on<VanillaGameVersionSelectedEvent>((event, emit) {
|
|
emit(state.copyWith(selectedGameVersion: event.gameVersion));
|
|
});
|
|
|
|
on<VanillaServerFileDownloadedEvent>((_, emit) async {
|
|
final gameVersion = state.selectedGameVersion;
|
|
if (gameVersion == null) {
|
|
return;
|
|
}
|
|
|
|
emit(state.copyWith(isLocked: true));
|
|
await _downloadServerFileUseCase(
|
|
gameVersion.toEntity(),
|
|
path.join('.', Constants.serverFileName),
|
|
onProgressChanged: (progress) => add(_VanillaDownloadProgressChangedEvent(progress)),
|
|
);
|
|
emit(state.copyWith(isLocked: false));
|
|
});
|
|
|
|
on<_VanillaDownloadProgressChangedEvent>((event, emit) {
|
|
if (event.progress < 0) {
|
|
emit(state.copyWith(downloadProgress: 0));
|
|
} else if (event.progress > 1) {
|
|
emit(state.copyWith(downloadProgress: 1));
|
|
} else {
|
|
emit(state.copyWith(downloadProgress: event.progress));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
sealed class VanillaEvent {}
|
|
|
|
class VanillaGameVersionListLoadedEvent extends VanillaEvent {}
|
|
|
|
class VanillaGameVersionSelectedEvent extends VanillaEvent {
|
|
final GameVersionViewModel gameVersion;
|
|
|
|
VanillaGameVersionSelectedEvent(this.gameVersion);
|
|
}
|
|
|
|
class VanillaServerFileDownloadedEvent extends VanillaEvent {}
|
|
|
|
class _VanillaDownloadProgressChangedEvent extends VanillaEvent {
|
|
final double progress;
|
|
|
|
_VanillaDownloadProgressChangedEvent(this.progress);
|
|
}
|