AppFlowy/app_flowy/lib/welcome/application/welcome_bloc.dart
2021-07-21 17:07:49 +08:00

24 lines
734 B
Dart

import 'package:app_flowy/welcome/domain/auth_state.dart';
import 'package:app_flowy/welcome/domain/i_welcome.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
part 'welcome_event.dart';
part 'welcome_state.dart';
part 'welcome_bloc.freezed.dart';
class WelcomeBloc extends Bloc<WelcomeEvent, WelcomeState> {
final IWelcomeAuth authImpl;
WelcomeBloc(this.authImpl) : super(WelcomeState.initial());
@override
Stream<WelcomeState> mapEventToState(WelcomeEvent event) async* {
yield* event.map(
getUser: (val) async* {
final authState = await authImpl.currentUserState();
yield state.copyWith(auth: authState);
},
);
}
}