mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
5d7008edd7
* feat: support customize folder path * feat: add l10n and optimize the logic * chore: code refactor * feat: add file read/write permission for macOS * fix: add toast for restoring path * feat: fetch apps and show them * feat: fetch apps and show them * feat: implement select document logic * feat: l10n and add select item callback * feat: add space between tile * chore: move file exporter to settings * chore: update UI * feat: support customizing folder when launching the app * feat: auto register after customizing folder * feat: l10n * feat: l10n * chore: reinitialize flowy sdk when calling init_sdk * chore: remove flowysdk const keyword to make sure it can be rebuild * chore: clear kv values when user logout * chore: replace current workspace id key in kv.db * feat: add config.name as a part of seesion_cache_key * feat: support open folder when launching * chore: fix some bugs * chore: dart fix & flutter analyze * chore: wrap 'sign up with ramdom user' as interface * feat: dismiss settings view after changing the folder * fix: read kv value after initializaing with new path * chore: remove user_id prefix from current workspace key * fix: move open latest view action to bloc * test: add test utils for integration tests * chore: move integration_test to its parent directory * test: add integration_test ci * test: switch to B from A, then switch to A again * chore: fix warings and format code and fix tests * chore: remove comment out codes * chore: rename some properties name and optimize the logic * chore: abstract logic of settings file exporter widget to cubit * chore: abstract location customizer view from file system view * chore: abstract settings page index to enum type * chore: remove the redundant underscore * test: fix integration test error * chore: enable integration test for windows and ubuntu * feat: abstract file picker as service and mock it under integration test * chore: fix bloc test Co-authored-by: nathan <nathan@appflowy.io>
191 lines
6.1 KiB
Dart
191 lines
6.1 KiB
Dart
import 'package:app_flowy/core/network_monitor.dart';
|
|
import 'package:app_flowy/user/application/user_listener.dart';
|
|
import 'package:app_flowy/user/application/user_service.dart';
|
|
import 'package:app_flowy/util/file_picker/file_picker_impl.dart';
|
|
import 'package:app_flowy/util/file_picker/file_picker_service.dart';
|
|
import 'package:app_flowy/workspace/application/app/prelude.dart';
|
|
import 'package:app_flowy/plugins/document/application/prelude.dart';
|
|
import 'package:app_flowy/plugins/grid/application/prelude.dart';
|
|
import 'package:app_flowy/workspace/application/settings/settings_location_cubit.dart';
|
|
import 'package:app_flowy/workspace/application/user/prelude.dart';
|
|
import 'package:app_flowy/workspace/application/workspace/prelude.dart';
|
|
import 'package:app_flowy/workspace/application/edit_panel/edit_panel_bloc.dart';
|
|
import 'package:app_flowy/workspace/application/view/prelude.dart';
|
|
import 'package:app_flowy/workspace/application/menu/prelude.dart';
|
|
import 'package:app_flowy/workspace/application/settings/prelude.dart';
|
|
import 'package:app_flowy/user/application/prelude.dart';
|
|
import 'package:app_flowy/user/presentation/router.dart';
|
|
import 'package:app_flowy/plugins/trash/application/prelude.dart';
|
|
import 'package:app_flowy/workspace/presentation/home/home_stack.dart';
|
|
import 'package:app_flowy/workspace/presentation/home/menu/menu.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-folder/app.pb.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-folder/view.pb.dart';
|
|
import 'package:flowy_sdk/protobuf/flowy-user/user_profile.pb.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
|
|
import '../plugins/grid/application/field/field_controller.dart';
|
|
|
|
class DependencyResolver {
|
|
static Future<void> resolve(GetIt getIt) async {
|
|
_resolveUserDeps(getIt);
|
|
|
|
_resolveHomeDeps(getIt);
|
|
|
|
_resolveFolderDeps(getIt);
|
|
|
|
_resolveDocDeps(getIt);
|
|
|
|
_resolveGridDeps(getIt);
|
|
|
|
_resolveCommonService(getIt);
|
|
}
|
|
}
|
|
|
|
void _resolveCommonService(GetIt getIt) {
|
|
getIt.registerFactory<FilePickerService>(() => FilePicker());
|
|
}
|
|
|
|
void _resolveUserDeps(GetIt getIt) {
|
|
getIt.registerFactory<AuthService>(() => AuthService());
|
|
getIt.registerFactory<AuthRouter>(() => AuthRouter());
|
|
|
|
getIt.registerFactory<SignInBloc>(() => SignInBloc(getIt<AuthService>()));
|
|
getIt.registerFactory<SignUpBloc>(() => SignUpBloc(getIt<AuthService>()));
|
|
|
|
getIt.registerFactory<SplashRoute>(() => SplashRoute());
|
|
getIt.registerFactory<EditPanelBloc>(() => EditPanelBloc());
|
|
getIt.registerFactory<SplashBloc>(() => SplashBloc());
|
|
getIt.registerLazySingleton<NetworkListener>(() => NetworkListener());
|
|
}
|
|
|
|
void _resolveHomeDeps(GetIt getIt) {
|
|
getIt.registerSingleton(FToast());
|
|
|
|
getIt.registerSingleton(MenuSharedState());
|
|
|
|
getIt.registerFactoryParam<UserListener, UserProfilePB, void>(
|
|
(user, _) => UserListener(userProfile: user),
|
|
);
|
|
|
|
//
|
|
getIt.registerLazySingleton<HomeStackManager>(() => HomeStackManager());
|
|
|
|
getIt.registerFactoryParam<WelcomeBloc, UserProfilePB, void>(
|
|
(user, _) => WelcomeBloc(
|
|
userService: UserService(userId: user.id),
|
|
userWorkspaceListener: UserWorkspaceListener(userProfile: user),
|
|
),
|
|
);
|
|
|
|
// share
|
|
getIt.registerLazySingleton<ShareService>(() => ShareService());
|
|
getIt.registerFactoryParam<DocShareBloc, ViewPB, void>(
|
|
(view, _) => DocShareBloc(view: view, service: getIt<ShareService>()));
|
|
}
|
|
|
|
void _resolveFolderDeps(GetIt getIt) {
|
|
//workspace
|
|
getIt.registerFactoryParam<WorkspaceListener, UserProfilePB, String>(
|
|
(user, workspaceId) =>
|
|
WorkspaceListener(user: user, workspaceId: workspaceId));
|
|
|
|
// ViewPB
|
|
getIt.registerFactoryParam<ViewListener, ViewPB, void>(
|
|
(view, _) => ViewListener(view: view),
|
|
);
|
|
|
|
getIt.registerFactoryParam<ViewBloc, ViewPB, void>(
|
|
(view, _) => ViewBloc(
|
|
view: view,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<MenuUserBloc, UserProfilePB, void>(
|
|
(user, _) => MenuUserBloc(user),
|
|
);
|
|
|
|
//Settings
|
|
getIt.registerFactoryParam<SettingsDialogBloc, UserProfilePB, void>(
|
|
(user, _) => SettingsDialogBloc(user),
|
|
);
|
|
|
|
// Location
|
|
getIt.registerFactory<SettingsLocationCubit>(
|
|
() => SettingsLocationCubit(),
|
|
);
|
|
|
|
//User
|
|
getIt.registerFactoryParam<SettingsUserViewBloc, UserProfilePB, void>(
|
|
(user, _) => SettingsUserViewBloc(user),
|
|
);
|
|
|
|
// AppPB
|
|
getIt.registerFactoryParam<AppBloc, AppPB, void>(
|
|
(app, _) => AppBloc(app: app),
|
|
);
|
|
|
|
// trash
|
|
getIt.registerLazySingleton<TrashService>(() => TrashService());
|
|
getIt.registerLazySingleton<TrashListener>(() => TrashListener());
|
|
getIt.registerFactory<TrashBloc>(
|
|
() => TrashBloc(),
|
|
);
|
|
}
|
|
|
|
void _resolveDocDeps(GetIt getIt) {
|
|
// Doc
|
|
getIt.registerFactoryParam<DocumentBloc, ViewPB, void>(
|
|
(view, _) => DocumentBloc(view: view),
|
|
);
|
|
}
|
|
|
|
void _resolveGridDeps(GetIt getIt) {
|
|
getIt.registerFactoryParam<GridHeaderBloc, String, GridFieldController>(
|
|
(gridId, fieldController) => GridHeaderBloc(
|
|
gridId: gridId,
|
|
fieldController: fieldController,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<FieldActionSheetBloc, GridFieldCellContext, void>(
|
|
(data, _) => FieldActionSheetBloc(fieldCellContext: data),
|
|
);
|
|
|
|
getIt.registerFactoryParam<TextCellBloc, GridCellController, void>(
|
|
(context, _) => TextCellBloc(
|
|
cellController: context,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<SelectOptionCellBloc,
|
|
GridSelectOptionCellController, void>(
|
|
(context, _) => SelectOptionCellBloc(
|
|
cellController: context,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<NumberCellBloc, GridCellController, void>(
|
|
(context, _) => NumberCellBloc(
|
|
cellController: context,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<DateCellBloc, GridDateCellController, void>(
|
|
(context, _) => DateCellBloc(
|
|
cellController: context,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<CheckboxCellBloc, GridCellController, void>(
|
|
(cellData, _) => CheckboxCellBloc(
|
|
service: CellService(),
|
|
cellController: cellData,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<GridPropertyBloc, String, GridFieldController>(
|
|
(gridId, cache) => GridPropertyBloc(gridId: gridId, fieldController: cache),
|
|
);
|
|
}
|