mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	 61fd608200
			
		
	
	
		61fd608200
		
			
		
	
	
	
	
		
			
			* refactor: rename structs * chore: read database id from view * chore: fix open database error because of create a database view for database id * chore: fix tests * chore: rename datbase id to view id in flutter * refactor: move grid and board to database view folder * refactor: rename functions * refactor: move calender to datbase view folder * refactor: rename app_flowy to appflowy_flutter * chore: reanming * chore: fix freeze gen * chore: remove todos * refactor: view process events * chore: add link database test * chore: just open view if there is opened database
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:appflowy/user/application/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,
 | |
|           );
 | |
|         },
 | |
|         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 {
 | |
|     emit(state.copyWith(
 | |
|         isSubmitting: true,
 | |
|         emailError: none(),
 | |
|         passwordError: none(),
 | |
|         successOrFail: none()));
 | |
| 
 | |
|     final result = await authService.signIn(
 | |
|       email: state.email,
 | |
|       password: state.password,
 | |
|     );
 | |
|     emit(result.fold(
 | |
|       (userProfile) => state.copyWith(
 | |
|           isSubmitting: false, successOrFail: some(left(userProfile))),
 | |
|       (error) => stateFromCode(error),
 | |
|     ));
 | |
|   }
 | |
| 
 | |
|   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)));
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| @freezed
 | |
| class SignInEvent with _$SignInEvent {
 | |
|   const factory SignInEvent.signedInWithUserEmailAndPassword() =
 | |
|       SignedInWithUserEmailAndPassword;
 | |
|   const factory SignInEvent.emailChanged(String email) = EmailChanged;
 | |
|   const factory SignInEvent.passwordChanged(String password) = PasswordChanged;
 | |
| }
 | |
| 
 | |
| @freezed
 | |
| class 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(),
 | |
|       );
 | |
| }
 |