mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
432db0f6d5
* chore: refactor the publish code * feat: integrate publish into database page * feat: add publish database structure * feat: add database row collab * feat: publish the database row collabs * chore: update collab * chore: improve question bubble * feat: publish the database relations * fix: rust ci * feat: select grid view to publish * feat: unable to deselect the primary database * feat: optimize the read recent views speed (#5726) * feat: optimize the read recent views speed * fix: order of recent views should be from the latest to the oldest * chore: update translations * fix: replace the unable to be selected icon * feat: remove left padding of inline database * fix: code review * chore: remove publish api err log * chore: read the database collab and document collab from disk instead of memory * chore: code cleanup * chore: revert beta.appflowy.com * chore: code cleanup * test: add database encode test * test: add publish database test * chore: refresh sidebar layout * chore: update comments
119 lines
2.9 KiB
Dart
119 lines
2.9 KiB
Dart
library flowy_plugin;
|
|
|
|
import 'package:appflowy/generated/flowy_svgs.g.dart';
|
|
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:appflowy_backend/protobuf/flowy-user/user_profile.pb.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
export "./src/sandbox.dart";
|
|
|
|
enum PluginType {
|
|
document,
|
|
blank,
|
|
trash,
|
|
grid,
|
|
board,
|
|
calendar,
|
|
databaseDocument,
|
|
chat,
|
|
}
|
|
|
|
typedef PluginId = String;
|
|
|
|
abstract class Plugin {
|
|
PluginId get id;
|
|
|
|
PluginWidgetBuilder get widgetBuilder;
|
|
|
|
PluginNotifier? get notifier => null;
|
|
|
|
PluginType get pluginType;
|
|
|
|
void init() {}
|
|
|
|
void dispose() {
|
|
notifier?.dispose();
|
|
}
|
|
}
|
|
|
|
abstract class PluginNotifier<T> {
|
|
/// Notify if the plugin get deleted
|
|
ValueNotifier<T> get isDeleted;
|
|
|
|
void dispose() {}
|
|
}
|
|
|
|
abstract class PluginBuilder {
|
|
Plugin build(dynamic data);
|
|
|
|
String get menuName;
|
|
|
|
FlowySvgData get icon;
|
|
|
|
/// The type of this [Plugin]. Each [Plugin] should have a unique [PluginType]
|
|
PluginType get pluginType;
|
|
|
|
/// The layoutType is used in the backend to determine the layout of the view.
|
|
/// Currently, AppFlowy supports 4 layout types: Document, Grid, Board, Calendar.
|
|
ViewLayoutPB? get layoutType;
|
|
}
|
|
|
|
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 PluginWidgetBuilder with NavigationItem {
|
|
List<NavigationItem> get navigationItems;
|
|
|
|
EdgeInsets get contentPadding =>
|
|
const EdgeInsets.symmetric(horizontal: 40, vertical: 28);
|
|
|
|
Widget buildWidget({
|
|
required PluginContext context,
|
|
required bool shrinkWrap,
|
|
Map<String, dynamic>? data,
|
|
});
|
|
}
|
|
|
|
class PluginContext {
|
|
PluginContext({
|
|
this.userProfile,
|
|
this.onDeleted,
|
|
});
|
|
|
|
// calls when widget of the plugin get deleted
|
|
final Function(ViewPB, int?)? onDeleted;
|
|
final UserProfilePB? userProfile;
|
|
}
|
|
|
|
void registerPlugin({required PluginBuilder builder, PluginConfig? config}) {
|
|
getIt<PluginSandbox>()
|
|
.registerPlugin(builder.pluginType, builder, config: config);
|
|
}
|
|
|
|
/// Make the correct plugin from the [pluginType] and [data]. If the plugin
|
|
/// is not registered, it will return a blank plugin.
|
|
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,
|
|
}
|