mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fd5299a13d
* chore: move to latest appflowy collab version * chore: filter mapping * chore: remove mutex folder * chore: cleanup borrow checker issues * chore: fixed flowy user crate compilation errors * chore: removed parking lot crate * chore: adjusting non locking approach * chore: remove with folder method * chore: fix folder manager * chore: fixed workspace database compilation errors * chore: initialize database plugins * chore: fix locks in flowy core * chore: remove supabase * chore: async traits * chore: add mutexes in dart ffi * chore: post rebase fixes * chore: remove supabase dart code * chore: fix deadlock * chore: fix page_id is empty * chore: use data source to init collab * chore: fix user awareness test * chore: fix database deadlock * fix: initialize user awareness * chore: fix open workspace test * chore: fix import csv * chore: fix update row meta deadlock * chore: fix document size test * fix: timestamp set/get type convert * fix: calculation * chore: revert Arc to Rc * chore: attach plugin to database and database row * chore: async get row * chore: clippy * chore: fix tauri build * chore: clippy * fix: duplicate view deadlock * chore: fmt * chore: tauri build --------- Co-authored-by: nathan <nathan@appflowy.io>
203 lines
7.3 KiB
Dart
203 lines
7.3 KiB
Dart
import 'package:appflowy/core/config/kv.dart';
|
|
import 'package:appflowy/core/network_monitor.dart';
|
|
import 'package:appflowy/env/cloud_env.dart';
|
|
import 'package:appflowy/plugins/document/application/prelude.dart';
|
|
import 'package:appflowy/plugins/document/presentation/editor_plugins/copy_and_paste/clipboard_service.dart';
|
|
import 'package:appflowy/plugins/document/presentation/editor_plugins/openai/service/ai_client.dart';
|
|
import 'package:appflowy/plugins/trash/application/prelude.dart';
|
|
import 'package:appflowy/shared/appflowy_cache_manager.dart';
|
|
import 'package:appflowy/shared/custom_image_cache_manager.dart';
|
|
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/startup/tasks/appflowy_cloud_task.dart';
|
|
import 'package:appflowy/user/application/ai_service.dart';
|
|
import 'package:appflowy/user/application/auth/af_cloud_auth_service.dart';
|
|
import 'package:appflowy/user/application/auth/auth_service.dart';
|
|
import 'package:appflowy/user/application/prelude.dart';
|
|
import 'package:appflowy/user/application/reminder/reminder_bloc.dart';
|
|
import 'package:appflowy/user/application/user_listener.dart';
|
|
import 'package:appflowy/user/application/user_service.dart';
|
|
import 'package:appflowy/user/presentation/router.dart';
|
|
import 'package:appflowy/workspace/application/action_navigation/action_navigation_bloc.dart';
|
|
import 'package:appflowy/workspace/application/edit_panel/edit_panel_bloc.dart';
|
|
import 'package:appflowy/workspace/application/favorite/favorite_bloc.dart';
|
|
import 'package:appflowy/workspace/application/recent/cached_recent_service.dart';
|
|
import 'package:appflowy/workspace/application/settings/appearance/base_appearance.dart';
|
|
import 'package:appflowy/workspace/application/settings/appearance/desktop_appearance.dart';
|
|
import 'package:appflowy/workspace/application/settings/appearance/mobile_appearance.dart';
|
|
import 'package:appflowy/workspace/application/settings/prelude.dart';
|
|
import 'package:appflowy/workspace/application/sidebar/rename_view/rename_view_bloc.dart';
|
|
import 'package:appflowy/workspace/application/subscription_success_listenable/subscription_success_listenable.dart';
|
|
import 'package:appflowy/workspace/application/tabs/tabs_bloc.dart';
|
|
import 'package:appflowy/workspace/application/user/prelude.dart';
|
|
import 'package:appflowy/workspace/application/view/prelude.dart';
|
|
import 'package:appflowy/workspace/application/workspace/prelude.dart';
|
|
import 'package:appflowy/workspace/presentation/home/menu/menu_shared_state.dart';
|
|
import 'package:appflowy_backend/log.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-user/protobuf.dart';
|
|
import 'package:appflowy_editor/appflowy_editor.dart' hide Log;
|
|
import 'package:appflowy_popover/appflowy_popover.dart';
|
|
import 'package:flowy_infra/file_picker/file_picker_impl.dart';
|
|
import 'package:flowy_infra/file_picker/file_picker_service.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
|
|
class DependencyResolver {
|
|
static Future<void> resolve(
|
|
GetIt getIt,
|
|
IntegrationMode mode,
|
|
) async {
|
|
// getIt.registerFactory<KeyValueStorage>(() => RustKeyValue());
|
|
getIt.registerFactory<KeyValueStorage>(() => DartKeyValue());
|
|
|
|
await _resolveCloudDeps(getIt);
|
|
_resolveUserDeps(getIt, mode);
|
|
_resolveHomeDeps(getIt);
|
|
_resolveFolderDeps(getIt);
|
|
_resolveCommonService(getIt, mode);
|
|
}
|
|
}
|
|
|
|
Future<void> _resolveCloudDeps(GetIt getIt) async {
|
|
final env = await AppFlowyCloudSharedEnv.fromEnv();
|
|
Log.info("cloud setting: $env");
|
|
getIt.registerFactory<AppFlowyCloudSharedEnv>(() => env);
|
|
|
|
if (isAppFlowyCloudEnabled) {
|
|
getIt.registerSingleton(
|
|
AppFlowyCloudDeepLink(),
|
|
dispose: (obj) async {
|
|
await obj.dispose();
|
|
},
|
|
);
|
|
}
|
|
}
|
|
|
|
void _resolveCommonService(
|
|
GetIt getIt,
|
|
IntegrationMode mode,
|
|
) async {
|
|
getIt.registerFactory<FilePickerService>(() => FilePicker());
|
|
|
|
getIt.registerFactory<ApplicationDataStorage>(
|
|
() => mode.isTest ? MockApplicationDataStorage() : ApplicationDataStorage(),
|
|
);
|
|
|
|
getIt.registerFactoryAsync<AIRepository>(
|
|
() async {
|
|
final result = await UserBackendService.getCurrentUserProfile();
|
|
return result.fold(
|
|
(s) {
|
|
return AppFlowyAIService();
|
|
},
|
|
(e) {
|
|
throw Exception('Failed to get user profile: ${e.msg}');
|
|
},
|
|
);
|
|
},
|
|
);
|
|
|
|
getIt.registerFactory<ClipboardService>(
|
|
() => ClipboardService(),
|
|
);
|
|
|
|
// theme
|
|
getIt.registerFactory<BaseAppearance>(
|
|
() => PlatformExtension.isMobile ? MobileAppearance() : DesktopAppearance(),
|
|
);
|
|
|
|
getIt.registerFactory<FlowyCacheManager>(
|
|
() => FlowyCacheManager()
|
|
..registerCache(TemporaryDirectoryCache())
|
|
..registerCache(CustomImageCacheManager())
|
|
..registerCache(FeatureFlagCache()),
|
|
);
|
|
}
|
|
|
|
void _resolveUserDeps(GetIt getIt, IntegrationMode mode) {
|
|
switch (currentCloudType()) {
|
|
case AuthenticatorType.local:
|
|
getIt.registerFactory<AuthService>(
|
|
() => BackendAuthService(
|
|
AuthenticatorPB.Local,
|
|
),
|
|
);
|
|
break;
|
|
case AuthenticatorType.appflowyCloud:
|
|
case AuthenticatorType.appflowyCloudSelfHost:
|
|
case AuthenticatorType.appflowyCloudDevelop:
|
|
getIt.registerFactory<AuthService>(() => AppFlowyCloudAuthService());
|
|
break;
|
|
}
|
|
|
|
getIt.registerFactory<AuthRouter>(() => AuthRouter());
|
|
|
|
getIt.registerFactory<SignInBloc>(
|
|
() => SignInBloc(getIt<AuthService>()),
|
|
);
|
|
getIt.registerFactory<SignUpBloc>(
|
|
() => SignUpBloc(getIt<AuthService>()),
|
|
);
|
|
|
|
getIt.registerFactory<SplashRouter>(() => SplashRouter());
|
|
getIt.registerFactory<EditPanelBloc>(() => EditPanelBloc());
|
|
getIt.registerFactory<SplashBloc>(() => SplashBloc());
|
|
getIt.registerLazySingleton<NetworkListener>(() => NetworkListener());
|
|
getIt.registerLazySingleton<CachedRecentService>(() => CachedRecentService());
|
|
getIt.registerLazySingleton<SubscriptionSuccessListenable>(
|
|
() => SubscriptionSuccessListenable(),
|
|
);
|
|
}
|
|
|
|
void _resolveHomeDeps(GetIt getIt) {
|
|
getIt.registerSingleton(FToast());
|
|
|
|
getIt.registerSingleton(MenuSharedState());
|
|
|
|
getIt.registerFactoryParam<UserListener, UserProfilePB, void>(
|
|
(user, _) => UserListener(userProfile: user),
|
|
);
|
|
|
|
// share
|
|
getIt.registerFactoryParam<ShareBloc, ViewPB, void>(
|
|
(view, _) => ShareBloc(view: view),
|
|
);
|
|
|
|
getIt.registerSingleton<ActionNavigationBloc>(ActionNavigationBloc());
|
|
|
|
getIt.registerLazySingleton<TabsBloc>(() => TabsBloc());
|
|
|
|
getIt.registerSingleton<ReminderBloc>(ReminderBloc());
|
|
|
|
getIt.registerSingleton<RenameViewBloc>(RenameViewBloc(PopoverController()));
|
|
}
|
|
|
|
void _resolveFolderDeps(GetIt getIt) {
|
|
// Workspace
|
|
getIt.registerFactoryParam<WorkspaceListener, UserProfilePB, String>(
|
|
(user, workspaceId) =>
|
|
WorkspaceListener(user: user, workspaceId: workspaceId),
|
|
);
|
|
|
|
getIt.registerFactoryParam<ViewBloc, ViewPB, void>(
|
|
(view, _) => ViewBloc(
|
|
view: view,
|
|
),
|
|
);
|
|
|
|
// User
|
|
getIt.registerFactoryParam<SettingsUserViewBloc, UserProfilePB, void>(
|
|
(user, _) => SettingsUserViewBloc(user),
|
|
);
|
|
|
|
// Trash
|
|
getIt.registerLazySingleton<TrashService>(() => TrashService());
|
|
getIt.registerLazySingleton<TrashListener>(() => TrashListener());
|
|
getIt.registerFactory<TrashBloc>(
|
|
() => TrashBloc(),
|
|
);
|
|
|
|
// Favorite
|
|
getIt.registerFactory<FavoriteBloc>(() => FavoriteBloc());
|
|
}
|