2021-09-06 08:18:34 +00:00
|
|
|
import 'package:app_flowy/startup/startup.dart';
|
2022-03-01 15:22:28 +00:00
|
|
|
import 'package:app_flowy/user/application/auth_service.dart';
|
2022-01-31 00:24:29 +00:00
|
|
|
import 'package:app_flowy/user/presentation/sign_in_screen.dart';
|
2021-09-06 08:18:34 +00:00
|
|
|
import 'package:app_flowy/user/presentation/sign_up_screen.dart';
|
2022-01-31 00:24:29 +00:00
|
|
|
import 'package:app_flowy/user/presentation/skip_log_in_screen.dart';
|
|
|
|
import 'package:app_flowy/user/presentation/welcome_screen.dart';
|
2021-11-08 11:19:02 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/home/home_screen.dart';
|
|
|
|
import 'package:flowy_infra/time/duration.dart';
|
2021-07-25 14:09:52 +00:00
|
|
|
import 'package:flowy_infra_ui/widget/route/animation.dart';
|
2022-07-19 06:40:56 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart' show UserProfilePB;
|
2022-07-04 07:00:54 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-folder/protobuf.dart';
|
2021-07-25 10:04:16 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-07-13 05:14:49 +00:00
|
|
|
|
2022-01-31 00:15:49 +00:00
|
|
|
class AuthRouter {
|
2021-09-06 08:18:34 +00:00
|
|
|
void pushForgetPasswordScreen(BuildContext context) {
|
2021-07-25 10:04:16 +00:00
|
|
|
// TODO: implement showForgetPasswordScreen
|
|
|
|
}
|
|
|
|
|
2022-07-19 06:40:56 +00:00
|
|
|
void pushWelcomeScreen(BuildContext context, UserProfilePB userProfile) {
|
2022-01-31 00:24:29 +00:00
|
|
|
getIt<SplashRoute>().pushWelcomeScreen(context, userProfile);
|
2021-07-25 10:04:16 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 08:18:34 +00:00
|
|
|
void pushSignUpScreen(BuildContext context) {
|
2021-09-05 14:52:20 +00:00
|
|
|
Navigator.of(context).push(
|
|
|
|
PageRoutes.fade(
|
2022-01-31 00:15:49 +00:00
|
|
|
() => SignUpScreen(router: getIt<AuthRouter>()),
|
2021-09-05 14:52:20 +00:00
|
|
|
),
|
|
|
|
);
|
2021-07-25 10:04:16 +00:00
|
|
|
}
|
2021-11-08 11:19:02 +00:00
|
|
|
|
2022-07-19 06:40:56 +00:00
|
|
|
void pushHomeScreen(BuildContext context, UserProfilePB profile, CurrentWorkspaceSettingPB workspaceSetting) {
|
2021-11-08 11:19:02 +00:00
|
|
|
Navigator.push(
|
|
|
|
context,
|
2021-11-10 15:39:51 +00:00
|
|
|
PageRoutes.fade(() => HomeScreen(profile, workspaceSetting), RouteDurations.slow.inMilliseconds * .001),
|
2021-11-08 11:19:02 +00:00
|
|
|
);
|
|
|
|
}
|
2021-07-25 10:04:16 +00:00
|
|
|
}
|
2022-01-31 00:24:29 +00:00
|
|
|
|
|
|
|
class SplashRoute {
|
2022-07-19 06:40:56 +00:00
|
|
|
Future<void> pushWelcomeScreen(BuildContext context, UserProfilePB userProfile) async {
|
2022-03-01 04:37:41 +00:00
|
|
|
final screen = WelcomeScreen(userProfile: userProfile);
|
2022-01-31 00:24:29 +00:00
|
|
|
final workspaceId = await Navigator.of(context).push(
|
|
|
|
PageRoutes.fade(
|
|
|
|
() => screen,
|
|
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2022-03-01 04:37:41 +00:00
|
|
|
pushHomeScreen(context, userProfile, workspaceId);
|
2022-01-31 00:24:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-19 06:40:56 +00:00
|
|
|
void pushHomeScreen(BuildContext context, UserProfilePB userProfile, CurrentWorkspaceSettingPB workspaceSetting) {
|
2022-01-31 00:24:29 +00:00
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
PageRoutes.fade(() => HomeScreen(userProfile, workspaceSetting), RouteDurations.slow.inMilliseconds * .001),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pushSignInScreen(BuildContext context) {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
PageRoutes.fade(() => SignInScreen(router: getIt<AuthRouter>()), RouteDurations.slow.inMilliseconds * .001),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pushSkipLoginScreen(BuildContext context) {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
PageRoutes.fade(
|
|
|
|
() => SkipLogInScreen(
|
|
|
|
router: getIt<AuthRouter>(),
|
2022-03-01 15:22:28 +00:00
|
|
|
authService: getIt<AuthService>(),
|
2022-01-31 00:24:29 +00:00
|
|
|
),
|
|
|
|
RouteDurations.slow.inMilliseconds * .001),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|