AppFlowy/frontend/appflowy_flutter/lib/startup/plugin/plugin.dart
Nathan.fooo 61fd608200
Feat/view map database (#1885)
* refactor: rename structs

* chore: read database id from view

* chore: fix open database error because of create a database view for database id

* chore: fix tests

* chore: rename datbase id to view id in flutter

* refactor: move grid and board to database view folder

* refactor: rename functions

* refactor: move calender to datbase view folder

* refactor: rename app_flowy to appflowy_flutter

* chore: reanming

* chore: fix freeze gen

* chore: remove todos

* refactor: view process events

* chore: add link database test

* chore: just open view if there is opened database
2023-02-26 16:27:17 +08:00

100 lines
2.2 KiB
Dart

library flowy_plugin;
import 'package:appflowy/startup/plugin/plugin.dart';
import 'package:appflowy/startup/startup.dart';
import 'package:appflowy/workspace/presentation/home/home_stack.dart';
import 'package:appflowy_backend/protobuf/flowy-folder/view.pb.dart';
import 'package:flutter/widgets.dart';
export "./src/sandbox.dart";
enum PluginType {
editor,
blank,
trash,
grid,
board,
calendar,
}
typedef PluginId = String;
abstract class Plugin<T> {
PluginId get id;
PluginDisplay get display;
PluginNotifier? get notifier => null;
PluginType get ty;
void dispose() {
notifier?.dispose();
}
}
abstract class PluginNotifier<T> {
/// Notify if the plugin get deleted
ValueNotifier<T> get isDeleted;
/// Notify if the [PluginDisplay]'s content was changed
ValueNotifier<int> get isDisplayChanged;
void dispose() {}
}
abstract class PluginBuilder {
Plugin build(dynamic data);
String get menuName;
String get menuIcon;
PluginType get pluginType;
ViewLayoutTypePB? get layoutType => ViewLayoutTypePB.Document;
}
abstract class PluginConfig {
// Return false will disable the user to create it. For example, a trash plugin shouldn't be created by the user,
bool get creatable => true;
}
abstract class PluginDisplay with NavigationItem {
List<NavigationItem> get navigationItems;
Widget buildWidget(PluginContext context);
}
class PluginContext {
// calls when widget of the plugin get deleted
final Function(ViewPB, int?) onDeleted;
PluginContext({required this.onDeleted});
}
void registerPlugin({required PluginBuilder builder, PluginConfig? config}) {
getIt<PluginSandbox>()
.registerPlugin(builder.pluginType, builder, config: config);
}
Plugin makePlugin({required PluginType pluginType, dynamic data}) {
final plugin = getIt<PluginSandbox>().buildPlugin(pluginType, data);
return plugin;
}
List<PluginBuilder> pluginBuilders() {
final pluginBuilders = getIt<PluginSandbox>().builders;
final pluginConfigs = getIt<PluginSandbox>().pluginConfigs;
return pluginBuilders.where(
(builder) {
final config = pluginConfigs[builder.pluginType]?.creatable;
return config ?? true;
},
).toList();
}
enum FlowyPluginException {
invalidData,
}