mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
8dfbfe3c42
* feat: dynamic theme plugin (init) * feat: provide fallback color if plugin becomes out of date (transparent) * feat: use applicationDocumentsDirectory to store plugins * chore: remove json files * fix: add toJson to resolve analyzer errors * fix: analyzer (unused imports) * feat: add code generation scripts for freezed files (call recursively in packages) * fix: revert changes to dry generation * feat: call directly into script * refactor: scripts try to be stateless :) * fix: path to code generation in toml * fix: generate script permissions * fix: path not correct in generate.sh * feat: modify execution permissions before executing scripts * chore: switch order of build_runner and easy_localizations * fix: fs is not valid duckscript cmd * chore: clean build_runner before executing * chore: upgrade freezed and build_runner attempt to resolve InvalidType error * fix: use exec cmd.exe to chmod * feat: add task to generate all files * chore: remove redundant task (Code Gen) * chore: remove json_annoation to dev_dependencies * fix: dropped & between commands * chore: rename file and class to FlowyDynamicPlugin * fix: dependency hell * fix: json annotation in colorscheme * fix: analyzer warnings * fix: duckscript runner for code generator * fix: try without setting file permissions * chore: move file picker to infra * chore: restructure project directory * feat: add BLoC components for consumers * chore: update dependencies in pubspec.yaml file * fix: file picker imports * feat: add new translations for features * feat: add new widgets to render upload * fix: import * feat: add text overflow * feat: use animated switcher * chore: export FileType * fix: directory was not created, only files were copied * chore: separate some logic * feat: add saveFile to FilePickerService * fix: analyzer error with unused imports * feat: add translations for uploading * feat: add builtins property to apptheme * feat: add theme preview widget * fix: upload widgets need to fill whole space and account for overflow * refactor: do not watch file system for changes * feat: add deletion confirmation dialog * feat: add form factor resolution for dyanmic layout * feat: trigger rebuild only when plugins are loaded * feat: make all methods static * chore: remove TODO comment, requires further design * chore: move models to subfolder * fix: references to plugin service instance * fix: rebase errors * fix: more rebasing errors * feat: remove multiple themes from one plugin * refactor: use pattern to resolve widget in settings_appearance_view * refactor: remove commented code * feat: add translations * fix: import error * refactor: separate concerns a bit more * fix: bug in toJson serialization code * feat: add package to use represent memory files * fix: analyzer warnings * chore: add translation * chore: remove unused exceptions * chore: use join * chore: add documentation * feat: add tests on theme * fix: fix scripts for macOS * feat: use appFlowyDocumentDirectory * fix: remove unused import * fix: imports * feat: allow plugin service to be passed * fix: theme tests * feat: separate themes by built-in and plugin * fix: rebase change name of appFlowyDocumentDirectory * chore: add test to check that initial state falls back to initial theme * chore: theme upload preview widget * chore: rename to brightness setting * refactor: appearance for settings appearance view * feat: change show dialog api and use it * fix: handle plugin compilation exception when incorrect format supplied * fix: style of theme upload * fix: always change state so that ui updates * chore: style of loading widget * fix: analyzer errors * feat: add learn more button to documentation --------- Co-authored-by: Yijing Huang <hyj891204@gmail.com> Co-authored-by: nathan <nathan@appflowy.io>
186 lines
6.2 KiB
Dart
186 lines
6.2 KiB
Dart
import 'package:appflowy/core/config/kv.dart';
|
|
import 'package:appflowy/core/network_monitor.dart';
|
|
import 'package:appflowy/plugins/database_view/application/field/field_action_sheet_bloc.dart';
|
|
import 'package:appflowy/plugins/database_view/application/field/field_controller.dart';
|
|
import 'package:appflowy/plugins/database_view/application/field/field_service.dart';
|
|
import 'package:appflowy/plugins/database_view/application/setting/property_bloc.dart';
|
|
import 'package:appflowy/plugins/database_view/grid/application/grid_header_bloc.dart';
|
|
import 'package:appflowy/plugins/document/presentation/editor_plugins/openai/service/openai_client.dart';
|
|
import 'package:appflowy/startup/startup.dart';
|
|
import 'package:appflowy/user/application/auth/auth_service.dart';
|
|
import 'package:appflowy/user/application/auth/supabase_auth_service.dart';
|
|
import 'package:appflowy/user/application/user_listener.dart';
|
|
import 'package:appflowy/user/application/user_service.dart';
|
|
import 'package:flowy_infra/file_picker/file_picker_impl.dart';
|
|
import 'package:flowy_infra/file_picker/file_picker_service.dart';
|
|
import 'package:appflowy/plugins/document/application/prelude.dart';
|
|
import 'package:appflowy/workspace/application/user/prelude.dart';
|
|
import 'package:appflowy/workspace/application/workspace/prelude.dart';
|
|
import 'package:appflowy/workspace/application/edit_panel/edit_panel_bloc.dart';
|
|
import 'package:appflowy/workspace/application/view/prelude.dart';
|
|
import 'package:appflowy/workspace/application/menu/prelude.dart';
|
|
import 'package:appflowy/workspace/application/settings/prelude.dart';
|
|
import 'package:appflowy/user/application/prelude.dart';
|
|
import 'package:appflowy/user/presentation/router.dart';
|
|
import 'package:appflowy/plugins/trash/application/prelude.dart';
|
|
import 'package:appflowy/workspace/presentation/home/home_stack.dart';
|
|
import 'package:appflowy/workspace/presentation/home/menu/menu.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-folder2/view.pb.dart';
|
|
import 'package:appflowy_backend/protobuf/flowy-user/user_profile.pb.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
import 'package:http/http.dart' as http;
|
|
|
|
class DependencyResolver {
|
|
static Future<void> resolve(
|
|
GetIt getIt,
|
|
IntegrationMode mode,
|
|
) async {
|
|
_resolveUserDeps(getIt);
|
|
_resolveHomeDeps(getIt);
|
|
_resolveFolderDeps(getIt);
|
|
_resolveDocDeps(getIt);
|
|
_resolveGridDeps(getIt);
|
|
_resolveCommonService(getIt, mode);
|
|
}
|
|
}
|
|
|
|
void _resolveCommonService(
|
|
GetIt getIt,
|
|
IntegrationMode mode,
|
|
) async {
|
|
// getIt.registerFactory<KeyValueStorage>(() => RustKeyValue());
|
|
getIt.registerFactory<KeyValueStorage>(() => DartKeyValue());
|
|
getIt.registerFactory<FilePickerService>(() => FilePicker());
|
|
if (mode.isTest) {
|
|
getIt.registerFactory<ApplicationDataStorage>(
|
|
() => MockApplicationDataStorage(),
|
|
);
|
|
} else {
|
|
getIt.registerFactory<ApplicationDataStorage>(
|
|
() => ApplicationDataStorage(),
|
|
);
|
|
}
|
|
|
|
getIt.registerFactoryAsync<OpenAIRepository>(
|
|
() async {
|
|
final result = await UserBackendService.getCurrentUserProfile();
|
|
return result.fold(
|
|
(l) {
|
|
throw Exception('Failed to get user profile: ${l.msg}');
|
|
},
|
|
(r) {
|
|
return HttpOpenAIRepository(
|
|
client: http.Client(),
|
|
apiKey: r.openaiKey,
|
|
);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
void _resolveUserDeps(GetIt getIt) {
|
|
// getIt.registerFactory<AuthService>(() => AppFlowyAuthService());
|
|
getIt.registerFactory<AuthService>(() => SupabaseAuthService());
|
|
|
|
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: UserBackendService(userId: user.id),
|
|
userWorkspaceListener: UserWorkspaceListener(userProfile: user),
|
|
),
|
|
);
|
|
|
|
// share
|
|
getIt.registerFactoryParam<DocShareBloc, ViewPB, void>(
|
|
(view, _) => DocShareBloc(view: view),
|
|
);
|
|
}
|
|
|
|
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,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<MenuUserBloc, UserProfilePB, void>(
|
|
(user, _) => MenuUserBloc(user),
|
|
);
|
|
|
|
//Settings
|
|
getIt.registerFactoryParam<SettingsDialogBloc, UserProfilePB, void>(
|
|
(user, _) => SettingsDialogBloc(user),
|
|
);
|
|
|
|
//User
|
|
getIt.registerFactoryParam<SettingsUserViewBloc, UserProfilePB, void>(
|
|
(user, _) => SettingsUserViewBloc(user),
|
|
);
|
|
|
|
// 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, FieldController>(
|
|
(viewId, fieldController) => GridHeaderBloc(
|
|
viewId: viewId,
|
|
fieldController: fieldController,
|
|
),
|
|
);
|
|
|
|
getIt.registerFactoryParam<FieldActionSheetBloc, FieldContext, void>(
|
|
(data, _) => FieldActionSheetBloc(fieldCellContext: data),
|
|
);
|
|
|
|
getIt.registerFactoryParam<DatabasePropertyBloc, String, FieldController>(
|
|
(viewId, cache) =>
|
|
DatabasePropertyBloc(viewId: viewId, fieldController: cache),
|
|
);
|
|
}
|