| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 | import 'package:appflowy/user/application/auth/auth_service.dart';import 'package:dartz/dartz.dart';import 'package:appflowy_backend/protobuf/flowy-error/code.pb.dart';import 'package:appflowy_backend/protobuf/flowy-error/errors.pb.dart';import 'package:appflowy_backend/protobuf/flowy-user/protobuf.dart'    show UserProfilePB;import 'package:freezed_annotation/freezed_annotation.dart';import 'package:flutter_bloc/flutter_bloc.dart';part 'sign_in_bloc.freezed.dart';class SignInBloc extends Bloc<SignInEvent, SignInState> {  final AuthService authService;  SignInBloc(this.authService) : super(SignInState.initial()) {    on<SignInEvent>((event, emit) async {      await event.map(        signedInWithUserEmailAndPassword: (e) async {          await _performActionOnSignIn(            state,            emit,          );        },        signedInWithOAuth: (value) async =>            await _performActionOnSignInWithOAuth(          state,          emit,          value.platform,        ),        signedInAsGuest: (value) async => await _performActionOnSignInAsGuest(          state,          emit,        ),        emailChanged: (EmailChanged value) async {          emit(            state.copyWith(              email: value.email,              emailError: none(),              successOrFail: none(),            ),          );        },        passwordChanged: (PasswordChanged value) async {          emit(            state.copyWith(              password: value.password,              passwordError: none(),              successOrFail: none(),            ),          );        },      );    });  }  Future<void> _performActionOnSignIn(    SignInState state,    Emitter<SignInState> emit,  ) async {    final result = await authService.signIn(      email: state.email ?? '',      password: state.password ?? '',    );    emit(      result.fold(        (error) => stateFromCode(error),        (userProfile) => state.copyWith(          isSubmitting: false,          successOrFail: some(left(userProfile)),        ),      ),    );  }  Future<void> _performActionOnSignInWithOAuth(    SignInState state,    Emitter<SignInState> emit,    String platform,  ) async {    emit(      state.copyWith(        isSubmitting: true,        emailError: none(),        passwordError: none(),        successOrFail: none(),      ),    );    final result = await authService.signUpWithOAuth(      platform: platform,    );    emit(      result.fold(        (error) => stateFromCode(error),        (userProfile) => state.copyWith(          isSubmitting: false,          successOrFail: some(left(userProfile)),        ),      ),    );  }  Future<void> _performActionOnSignInAsGuest(    SignInState state,    Emitter<SignInState> emit,  ) async {    emit(      state.copyWith(        isSubmitting: true,        emailError: none(),        passwordError: none(),        successOrFail: none(),      ),    );    final result = await authService.signUpAsGuest();    emit(      result.fold(        (error) => stateFromCode(error),        (userProfile) => state.copyWith(          isSubmitting: false,          successOrFail: some(left(userProfile)),        ),      ),    );  }  SignInState stateFromCode(FlowyError error) {    switch (ErrorCode.valueOf(error.code)!) {      case ErrorCode.EmailFormatInvalid:        return state.copyWith(          isSubmitting: false,          emailError: some(error.msg),          passwordError: none(),        );      case ErrorCode.PasswordFormatInvalid:        return state.copyWith(          isSubmitting: false,          passwordError: some(error.msg),          emailError: none(),        );      default:        return state.copyWith(          isSubmitting: false,          successOrFail: some(right(error)),        );    }  }}@freezedclass SignInEvent with _$SignInEvent {  const factory SignInEvent.signedInWithUserEmailAndPassword() =      SignedInWithUserEmailAndPassword;  const factory SignInEvent.signedInWithOAuth(String platform) =      SignedInWithOAuth;  const factory SignInEvent.signedInAsGuest() = SignedInAsGuest;  const factory SignInEvent.emailChanged(String email) = EmailChanged;  const factory SignInEvent.passwordChanged(String password) = PasswordChanged;}@freezedclass SignInState with _$SignInState {  const factory SignInState({    String? email,    String? password,    required bool isSubmitting,    required Option<String> passwordError,    required Option<String> emailError,    required Option<Either<UserProfilePB, FlowyError>> successOrFail,  }) = _SignInState;  factory SignInState.initial() => SignInState(        isSubmitting: false,        passwordError: none(),        emailError: none(),        successOrFail: none(),      );}
 |