|
@@ -1,79 +0,0 @@
|
|
|
-import 'package:app_flowy/startup/startup.dart';
|
|
|
-import 'package:app_flowy/user/domain/auth_state.dart';
|
|
|
-import 'package:app_flowy/user/domain/i_splash.dart';
|
|
|
-import 'package:app_flowy/user/infrastructure/router.dart';
|
|
|
-import 'package:app_flowy/user/infrastructure/repos/auth_repo.dart';
|
|
|
-import 'package:app_flowy/user/presentation/sign_in_screen.dart';
|
|
|
-import 'package:app_flowy/user/presentation/skip_log_in_screen.dart';
|
|
|
-import 'package:app_flowy/user/presentation/welcome_screen.dart';
|
|
|
-import 'package:app_flowy/workspace/infrastructure/repos/user_repo.dart';
|
|
|
-import 'package:app_flowy/workspace/presentation/home/home_screen.dart';
|
|
|
-import 'package:flowy_infra/time/duration.dart';
|
|
|
-import 'package:flowy_infra_ui/widget/route/animation.dart';
|
|
|
-import 'package:flowy_sdk/dispatch/dispatch.dart';
|
|
|
-import 'package:flowy_sdk/protobuf/flowy-user-data-model/protobuf.dart' show UserProfile;
|
|
|
-import 'package:flowy_sdk/protobuf/flowy-folder-data-model/protobuf.dart';
|
|
|
-import 'package:flutter/material.dart';
|
|
|
-import 'package:flutter/widgets.dart';
|
|
|
-
|
|
|
-class SplashUserImpl implements ISplashUser {
|
|
|
- @override
|
|
|
- Future<AuthState> currentUserProfile() {
|
|
|
- final result = UserEventCheckUser().send();
|
|
|
- return result.then((result) {
|
|
|
- return result.fold(
|
|
|
- (userProfile) {
|
|
|
- return AuthState.authenticated(userProfile);
|
|
|
- },
|
|
|
- (error) {
|
|
|
- return AuthState.unauthenticated(error);
|
|
|
- },
|
|
|
- );
|
|
|
- });
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-class SplashRoute implements ISplashRoute {
|
|
|
- @override
|
|
|
- Future<void> pushWelcomeScreen(BuildContext context, UserProfile user) async {
|
|
|
- final repo = UserRepo(user: user);
|
|
|
- final screen = WelcomeScreen(repo: repo);
|
|
|
- final workspaceId = await Navigator.of(context).push(
|
|
|
- PageRoutes.fade(
|
|
|
- () => screen,
|
|
|
- RouteDurations.slow.inMilliseconds * .001,
|
|
|
- ),
|
|
|
- );
|
|
|
-
|
|
|
- pushHomeScreen(context, repo.user, workspaceId);
|
|
|
- }
|
|
|
-
|
|
|
- @override
|
|
|
- void pushHomeScreen(BuildContext context, UserProfile userProfile, CurrentWorkspaceSetting workspaceSetting) {
|
|
|
- Navigator.push(
|
|
|
- context,
|
|
|
- PageRoutes.fade(() => HomeScreen(userProfile, workspaceSetting), RouteDurations.slow.inMilliseconds * .001),
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- @override
|
|
|
- void pushSignInScreen(BuildContext context) {
|
|
|
- Navigator.push(
|
|
|
- context,
|
|
|
- PageRoutes.fade(() => SignInScreen(router: getIt<AuthRouter>()), RouteDurations.slow.inMilliseconds * .001),
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- @override
|
|
|
- void pushSkipLoginScreen(BuildContext context) {
|
|
|
- Navigator.push(
|
|
|
- context,
|
|
|
- PageRoutes.fade(
|
|
|
- () => SkipLogInScreen(
|
|
|
- router: getIt<AuthRouter>(),
|
|
|
- authRepo: getIt<AuthRepository>(),
|
|
|
- ),
|
|
|
- RouteDurations.slow.inMilliseconds * .001),
|
|
|
- );
|
|
|
- }
|
|
|
-}
|