mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 14:47:13 -04:00
208 lines
6.1 KiB
Dart
208 lines
6.1 KiB
Dart
import 'package:app_flowy/startup/startup.dart';
|
|
import 'package:app_flowy/user/application/sign_in_bloc.dart';
|
|
import 'package:app_flowy/user/domain/i_auth.dart';
|
|
import 'package:app_flowy/user/presentation/widgets/background.dart';
|
|
import 'package:flowy_infra/size.dart';
|
|
import 'package:flowy_infra/theme.dart';
|
|
import 'package:flowy_infra_ui/widget/rounded_button.dart';
|
|
import 'package:flowy_infra_ui/widget/rounded_input_field.dart';
|
|
import 'package:flowy_infra_ui/widget/spacing.dart';
|
|
import 'package:flowy_infra_ui/style_widget/snap_bar.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-user/errors.pb.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-user/user_profile.pb.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:dartz/dartz.dart';
|
|
import 'package:flowy_infra/image.dart';
|
|
|
|
class SignInScreen extends StatelessWidget {
|
|
final IAuthRouter router;
|
|
const SignInScreen({Key? key, required this.router}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BlocProvider(
|
|
create: (context) => getIt<SignInBloc>(),
|
|
child: BlocListener<SignInBloc, SignInState>(
|
|
listener: (context, state) {
|
|
state.successOrFail.fold(
|
|
() => null,
|
|
(result) => _handleSuccessOrFail(result, context),
|
|
);
|
|
},
|
|
child: Scaffold(
|
|
body: SignInForm(router: router),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void _handleSuccessOrFail(Either<UserProfile, UserError> result, BuildContext context) {
|
|
result.fold(
|
|
(user) => router.pushWelcomeScreen(context, user),
|
|
(error) => showSnapBar(context, error.msg),
|
|
);
|
|
}
|
|
}
|
|
|
|
class SignInForm extends StatelessWidget {
|
|
final IAuthRouter router;
|
|
const SignInForm({
|
|
Key? key,
|
|
required this.router,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Align(
|
|
alignment: Alignment.center,
|
|
child: AuthFormContainer(
|
|
children: [
|
|
const FlowyLogoTitle(
|
|
title: 'Login to Appflowy',
|
|
logoSize: Size(60, 60),
|
|
),
|
|
const VSpace(30),
|
|
const EmailTextField(),
|
|
const PasswordTextField(),
|
|
ForgetPasswordButton(router: router),
|
|
const VSpace(30),
|
|
const LoginButton(),
|
|
const VSpace(10),
|
|
SignUpPrompt(router: router),
|
|
if (context.read<SignInBloc>().state.isSubmitting) ...[
|
|
const SizedBox(height: 8),
|
|
const LinearProgressIndicator(value: null),
|
|
]
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class SignUpPrompt extends StatelessWidget {
|
|
const SignUpPrompt({
|
|
Key? key,
|
|
required this.router,
|
|
}) : super(key: key);
|
|
|
|
final IAuthRouter router;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = context.watch<AppTheme>();
|
|
return Row(
|
|
children: [
|
|
Text("Dont't have an account", style: TextStyle(color: theme.shader3, fontSize: 12)),
|
|
TextButton(
|
|
style: TextButton.styleFrom(
|
|
textStyle: const TextStyle(fontSize: 12),
|
|
),
|
|
onPressed: () => router.pushSignUpScreen(context),
|
|
child: Text(
|
|
'Sign Up',
|
|
style: TextStyle(color: theme.main1),
|
|
),
|
|
),
|
|
],
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
);
|
|
}
|
|
}
|
|
|
|
class LoginButton extends StatelessWidget {
|
|
const LoginButton({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = context.watch<AppTheme>();
|
|
return RoundedTextButton(
|
|
title: 'Login',
|
|
height: 48,
|
|
borderRadius: Corners.s10Border,
|
|
color: theme.main1,
|
|
onPressed: () {
|
|
context.read<SignInBloc>().add(const SignInEvent.signedInWithUserEmailAndPassword());
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class ForgetPasswordButton extends StatelessWidget {
|
|
const ForgetPasswordButton({
|
|
Key? key,
|
|
required this.router,
|
|
}) : super(key: key);
|
|
|
|
final IAuthRouter router;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = context.watch<AppTheme>();
|
|
return TextButton(
|
|
style: TextButton.styleFrom(
|
|
textStyle: const TextStyle(fontSize: 12),
|
|
),
|
|
onPressed: () => router.pushForgetPasswordScreen(context),
|
|
child: Text(
|
|
'Forgot Password?',
|
|
style: TextStyle(color: theme.main1),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class PasswordTextField extends StatelessWidget {
|
|
const PasswordTextField({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = context.watch<AppTheme>();
|
|
return BlocBuilder<SignInBloc, SignInState>(
|
|
buildWhen: (previous, current) => previous.passwordError != current.passwordError,
|
|
builder: (context, state) {
|
|
return RoundedInputField(
|
|
obscureText: true,
|
|
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
|
|
obscureIcon: svg("home/Hide"),
|
|
obscureHideIcon: svg("home/Show"),
|
|
hintText: 'Password',
|
|
normalBorderColor: theme.shader4,
|
|
highlightBorderColor: theme.red,
|
|
cursorColor: theme.main1,
|
|
errorText: context.read<SignInBloc>().state.passwordError.fold(() => "", (error) => error),
|
|
onChanged: (value) => context.read<SignInBloc>().add(SignInEvent.passwordChanged(value)),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
class EmailTextField extends StatelessWidget {
|
|
const EmailTextField({
|
|
Key? key,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = context.watch<AppTheme>();
|
|
return BlocBuilder<SignInBloc, SignInState>(
|
|
buildWhen: (previous, current) => previous.emailError != current.emailError,
|
|
builder: (context, state) {
|
|
return RoundedInputField(
|
|
hintText: 'Email',
|
|
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500),
|
|
normalBorderColor: theme.shader4,
|
|
highlightBorderColor: theme.red,
|
|
cursorColor: theme.main1,
|
|
errorText: context.read<SignInBloc>().state.emailError.fold(() => "", (error) => error),
|
|
onChanged: (value) => context.read<SignInBloc>().add(SignInEvent.emailChanged(value)),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|