mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
12d6cbd46a
* chore: async load user profile * chore: enable reset workspace * chore: add confirm dialog
180 lines
4.9 KiB
Dart
180 lines
4.9 KiB
Dart
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/user/application/auth/auth_service.dart';
|
|
import 'package:appflowy/user/presentation/sign_in_screen.dart';
|
|
import 'package:appflowy/user/presentation/sign_up_screen.dart';
|
|
import 'package:appflowy/user/presentation/skip_log_in_screen.dart';
|
|
import 'package:appflowy/user/presentation/welcome_screen.dart';
|
|
import 'package:appflowy/workspace/presentation/home/home_screen.dart';
|
|
import 'package:appflowy_backend/dispatch/dispatch.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-error/errors.pb.dart';
|
|
import 'package:flowy_infra/time/duration.dart';
|
|
import 'package:flowy_infra_ui/widget/route/animation.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-user/protobuf.dart'
|
|
show UserProfilePB;
|
|
import 'package:appflowy_backend/protobuf/flowy-folder2/protobuf.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'encrypt_secret_screen.dart';
|
|
import 'workspace_error_screen.dart';
|
|
|
|
const routerNameRoot = '/';
|
|
const routerNameSignUp = '/signUp';
|
|
const routerNameSignIn = '/signIn';
|
|
const routerNameSkipLogIn = '/skipLogIn';
|
|
const routerNameWelcome = '/welcome';
|
|
const routerNameHome = '/home';
|
|
|
|
class AuthRouter {
|
|
void pushForgetPasswordScreen(BuildContext context) {}
|
|
|
|
void pushWelcomeScreen(BuildContext context, UserProfilePB userProfile) {
|
|
getIt<SplashRoute>().pushWelcomeScreen(context, userProfile);
|
|
}
|
|
|
|
void pushSignUpScreen(BuildContext context) {
|
|
Navigator.of(context).push(
|
|
PageRoutes.fade(
|
|
() => SignUpScreen(router: getIt<AuthRouter>()),
|
|
const RouteSettings(name: routerNameSignUp),
|
|
),
|
|
);
|
|
}
|
|
|
|
void pushHomeScreenWithWorkSpace(
|
|
BuildContext context,
|
|
UserProfilePB profile,
|
|
WorkspaceSettingPB workspaceSetting,
|
|
) {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => HomeScreen(
|
|
profile,
|
|
workspaceSetting,
|
|
key: ValueKey(profile.id),
|
|
),
|
|
const RouteSettings(name: routerNameHome),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> pushHomeScreen(
|
|
BuildContext context,
|
|
UserProfilePB userProfile,
|
|
) async {
|
|
final result = await FolderEventGetCurrentWorkspace().send();
|
|
result.fold(
|
|
(workspaceSettingPB) => pushHomeScreenWithWorkSpace(
|
|
context,
|
|
userProfile,
|
|
workspaceSettingPB,
|
|
),
|
|
(r) => pushWelcomeScreen(context, userProfile),
|
|
);
|
|
}
|
|
|
|
Future<void> pushEncryptionScreen(
|
|
BuildContext context,
|
|
UserProfilePB userProfile,
|
|
) async {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => EncryptSecretScreen(
|
|
user: userProfile,
|
|
key: ValueKey(userProfile.id),
|
|
),
|
|
const RouteSettings(name: routerNameWelcome),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> pushWorkspaceErrorScreen(
|
|
BuildContext context,
|
|
UserFolderPB userFolder,
|
|
FlowyError error,
|
|
) async {
|
|
final screen = WorkspaceErrorScreen(
|
|
userFolder: userFolder,
|
|
error: error,
|
|
);
|
|
await Navigator.of(context).push(
|
|
PageRoutes.fade(
|
|
() => screen,
|
|
const RouteSettings(name: routerNameWelcome),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class SplashRoute {
|
|
Future<void> pushWelcomeScreen(
|
|
BuildContext context,
|
|
UserProfilePB userProfile,
|
|
) async {
|
|
final screen = WelcomeScreen(userProfile: userProfile);
|
|
await Navigator.of(context).push(
|
|
PageRoutes.fade(
|
|
() => screen,
|
|
const RouteSettings(name: routerNameWelcome),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
|
|
FolderEventGetCurrentWorkspace().send().then((result) {
|
|
result.fold(
|
|
(workspaceSettingPB) =>
|
|
pushHomeScreen(context, userProfile, workspaceSettingPB),
|
|
(r) => null,
|
|
);
|
|
});
|
|
}
|
|
|
|
void pushHomeScreen(
|
|
BuildContext context,
|
|
UserProfilePB userProfile,
|
|
WorkspaceSettingPB workspaceSetting,
|
|
) {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => HomeScreen(
|
|
userProfile,
|
|
workspaceSetting,
|
|
key: ValueKey(userProfile.id),
|
|
),
|
|
const RouteSettings(name: routerNameWelcome),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
|
|
void pushSignInScreen(BuildContext context) {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => SignInScreen(router: getIt<AuthRouter>()),
|
|
const RouteSettings(name: routerNameSignIn),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
|
|
void pushSkipLoginScreen(BuildContext context) {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => SkipLogInScreen(
|
|
router: getIt<AuthRouter>(),
|
|
authService: getIt<AuthService>(),
|
|
),
|
|
const RouteSettings(name: routerNameSkipLogIn),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
}
|