mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
# Conflicts: # frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart # frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/base/link_to_page_widget.dart # frontend/appflowy_flutter/lib/plugins/trash/application/trash_bloc.dart # frontend/appflowy_flutter/lib/plugins/trash/application/trash_service.dart # frontend/appflowy_flutter/lib/workspace/application/app/app_bloc.dart # frontend/appflowy_flutter/lib/workspace/application/app/app_service.dart # frontend/appflowy_flutter/lib/workspace/application/menu/menu_bloc.dart # frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_service.dart # frontend/appflowy_flutter/lib/workspace/presentation/home/menu/app/header/header.dart # frontend/appflowy_flutter/test/bloc_test/grid_test/filter/filter_util.dart # frontend/appflowy_flutter/test/bloc_test/grid_test/grid_bloc_test.dart # frontend/appflowy_flutter/test/bloc_test/grid_test/util.dart # frontend/appflowy_flutter/test/bloc_test/home_test/view_bloc_test.dart # frontend/rust-lib/flowy-database/src/services/database/database_editor.rs # frontend/rust-lib/flowy-database/src/services/persistence/migration/database_view_migration.rs
113 lines
3.0 KiB
Dart
113 lines
3.0 KiB
Dart
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/user/application/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: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';
|
|
|
|
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>()),
|
|
),
|
|
);
|
|
}
|
|
|
|
void pushHomeScreen(
|
|
BuildContext context,
|
|
UserProfilePB profile,
|
|
WorkspaceSettingPB workspaceSetting,
|
|
) {
|
|
Navigator.push(
|
|
context,
|
|
PageRoutes.fade(
|
|
() => HomeScreen(
|
|
profile,
|
|
workspaceSetting,
|
|
key: ValueKey(profile.id),
|
|
),
|
|
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,
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
|
|
FolderEventReadCurrentWorkspace().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),
|
|
),
|
|
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>(),
|
|
authService: getIt<AuthService>(),
|
|
),
|
|
RouteDurations.slow.inMilliseconds * .001,
|
|
),
|
|
);
|
|
}
|
|
}
|