1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import 'package:app_flowy/generated/locale_keys.g.dart';
- import 'package:app_flowy/startup/plugin/plugin.dart';
- import 'package:app_flowy/workspace/presentation/home/home_stack.dart';
- import 'package:app_flowy/workspace/presentation/widgets/left_bar_item.dart';
- import 'package:easy_localization/easy_localization.dart';
- import 'package:flowy_sdk/protobuf/flowy-folder/view.pb.dart';
- import 'package:flutter/material.dart';
- import 'presentation/grid_page.dart';
- class GridPluginBuilder implements PluginBuilder {
- @override
- Plugin build(dynamic data) {
- if (data is ViewPB) {
- return GridPlugin(pluginType: pluginType, view: data);
- } else {
- throw FlowyPluginException.invalidData;
- }
- }
- @override
- String get menuName => LocaleKeys.grid_menuName.tr();
- @override
- PluginType get pluginType => PluginType.grid;
- @override
- ViewDataTypePB get dataType => ViewDataTypePB.Database;
- @override
- ViewLayoutTypePB? get subDataType => ViewLayoutTypePB.Grid;
- }
- class GridPluginConfig implements PluginConfig {
- @override
- bool get creatable => true;
- }
- class GridPlugin extends Plugin {
- final ViewPB _view;
- final PluginType _pluginType;
- GridPlugin({
- required ViewPB view,
- 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 {
- final ViewPB _view;
- GridPluginDisplay({required ViewPB view, Key? key}) : _view = view;
- @override
- Widget get leftBarItem => ViewLeftBarItem(view: _view);
- @override
- Widget buildWidget() => GridPage(view: _view);
- @override
- List<NavigationItem> get navigationItems => [this];
- }
|