2022-06-11 07:51:53 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/home/home_stack.dart';
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'package:app_flowy/workspace/presentation/widgets/left_bar_item.dart';
|
2022-07-04 07:00:54 +00:00
|
|
|
import 'package:flowy_sdk/protobuf/flowy-folder/view.pb.dart';
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'package:app_flowy/startup/plugin/plugin.dart';
|
2022-06-11 07:51:53 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2022-08-09 02:35:27 +00:00
|
|
|
import 'presentation/board_page.dart';
|
2022-06-11 07:51:53 +00:00
|
|
|
|
|
|
|
class BoardPluginBuilder implements PluginBuilder {
|
|
|
|
@override
|
|
|
|
Plugin build(dynamic data) {
|
2022-07-19 06:11:29 +00:00
|
|
|
if (data is ViewPB) {
|
2022-06-11 07:51:53 +00:00
|
|
|
return BoardPlugin(pluginType: pluginType, view: data);
|
|
|
|
} else {
|
|
|
|
throw FlowyPluginException.invalidData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get menuName => "Board";
|
|
|
|
|
|
|
|
@override
|
|
|
|
PluginType get pluginType => DefaultPlugin.board.type();
|
|
|
|
|
|
|
|
@override
|
2022-08-10 09:59:28 +00:00
|
|
|
ViewDataTypePB get dataType => ViewDataTypePB.Database;
|
|
|
|
|
|
|
|
@override
|
|
|
|
SubViewDataTypePB get subDataType => SubViewDataTypePB.Board;
|
2022-06-11 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class BoardPluginConfig implements PluginConfig {
|
|
|
|
@override
|
2022-07-22 01:42:10 +00:00
|
|
|
bool get creatable => true;
|
2022-06-11 07:51:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class BoardPlugin extends Plugin {
|
2022-07-19 06:11:29 +00:00
|
|
|
final ViewPB _view;
|
2022-06-11 07:51:53 +00:00
|
|
|
final PluginType _pluginType;
|
|
|
|
|
|
|
|
BoardPlugin({
|
2022-07-19 06:11:29 +00:00
|
|
|
required ViewPB view,
|
2022-06-11 07:51:53 +00:00
|
|
|
required PluginType pluginType,
|
|
|
|
}) : _pluginType = pluginType,
|
|
|
|
_view = view;
|
|
|
|
|
|
|
|
@override
|
|
|
|
PluginDisplay get display => GridPluginDisplay(view: _view);
|
|
|
|
|
|
|
|
@override
|
|
|
|
PluginId get id => _view.id;
|
|
|
|
|
|
|
|
@override
|
|
|
|
PluginType get ty => _pluginType;
|
|
|
|
}
|
|
|
|
|
|
|
|
class GridPluginDisplay extends PluginDisplay {
|
2022-07-19 06:11:29 +00:00
|
|
|
final ViewPB _view;
|
|
|
|
GridPluginDisplay({required ViewPB view, Key? key}) : _view = view;
|
2022-06-11 07:51:53 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget get leftBarItem => ViewLeftBarItem(view: _view);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget buildWidget() => BoardPage(view: _view);
|
|
|
|
|
|
|
|
@override
|
|
|
|
List<NavigationItem> get navigationItems => [this];
|
|
|
|
}
|