mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* feat: create database view on same database * feat: switch tag between views * fix: calendar tool bar * fix: set layout setting * chore: update collab rev * fix: board layout issue * test: add integration tests * test: add calendar start from day test
		
			
				
	
	
		
			34 lines
		
	
	
		
			925 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			925 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:appflowy/generated/locale_keys.g.dart';
 | 
						|
import 'package:appflowy/plugins/database_view/tar_bar/tab_bar_view.dart';
 | 
						|
import 'package:appflowy/startup/plugin/plugin.dart';
 | 
						|
import 'package:easy_localization/easy_localization.dart';
 | 
						|
import 'package:appflowy_backend/protobuf/flowy-folder2/view.pb.dart';
 | 
						|
 | 
						|
class GridPluginBuilder implements PluginBuilder {
 | 
						|
  @override
 | 
						|
  Plugin build(dynamic data) {
 | 
						|
    if (data is ViewPB) {
 | 
						|
      return DatabaseTabBarViewPlugin(pluginType: pluginType, view: data);
 | 
						|
    } else {
 | 
						|
      throw FlowyPluginException.invalidData;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  String get menuName => LocaleKeys.grid_menuName.tr();
 | 
						|
 | 
						|
  @override
 | 
						|
  String get menuIcon => "editor/grid";
 | 
						|
 | 
						|
  @override
 | 
						|
  PluginType get pluginType => PluginType.grid;
 | 
						|
 | 
						|
  @override
 | 
						|
  ViewLayoutPB? get layoutType => ViewLayoutPB.Grid;
 | 
						|
}
 | 
						|
 | 
						|
class GridPluginConfig implements PluginConfig {
 | 
						|
  @override
 | 
						|
  bool get creatable => true;
 | 
						|
}
 |