mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* chore: more typo * chore: improve appearance of mobile grid page * fix: focus problems with editable grid cells * chore: apply suggestions from Mathias * revert: the dragged header looks ugly * chore: more suggestions from Mathias * chore: more tarbars * fix: scrollbar padding is a bit off * chore: add launch tasks and fix android debug * chore: more mobile grid improvement * fix: initial attempt to fix cell focus bug * chore: fix grid cell lazy loading * chore: fix cell focus problems * chore: update same changes to desktop * fix: revert accessory changes due to regression * chore: new database view name i18n * chore: add mobile tab bar header * fix: fiz zuh eentuhgrashun tastes * chore: rudimentary grid header * style: code style stuffz * chore: restore android standard lib --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:appflowy/plugins/database_view/grid/presentation/grid_page.dart';
 | 
						|
import 'package:appflowy_backend/protobuf/flowy-database2/setting_entities.pbenum.dart';
 | 
						|
import 'package:appflowy_backend/protobuf/flowy-folder2/view.pbenum.dart';
 | 
						|
import 'package:flutter_test/flutter_test.dart';
 | 
						|
import 'package:integration_test/integration_test.dart';
 | 
						|
 | 
						|
import 'util/database_test_op.dart';
 | 
						|
import 'util/util.dart';
 | 
						|
 | 
						|
void main() {
 | 
						|
  IntegrationTestWidgetsFlutterBinding.ensureInitialized();
 | 
						|
 | 
						|
  group('database field settings', () {
 | 
						|
    testWidgets('field visibility', (tester) async {
 | 
						|
      await tester.initializeAppFlowy();
 | 
						|
      await tester.tapGoButton();
 | 
						|
 | 
						|
      await tester.createNewPageWithName(layout: ViewLayoutPB.Grid);
 | 
						|
      await tester.tapCreateLinkedDatabaseViewButton(DatabaseLayoutPB.Grid);
 | 
						|
 | 
						|
      // create a field
 | 
						|
      await tester.scrollToRight(find.byType(GridPage));
 | 
						|
      await tester.tapNewPropertyButton();
 | 
						|
      await tester.renameField('New field 1');
 | 
						|
      await tester.dismissFieldEditor();
 | 
						|
 | 
						|
      // hide the field
 | 
						|
      await tester.tapGridFieldWithName('New field 1');
 | 
						|
      await tester.tapHidePropertyButton();
 | 
						|
      await tester.noFieldWithName('New field 1');
 | 
						|
 | 
						|
      // go back to inline database view, expect field to be shown
 | 
						|
      await tester.tapTabBarLinkedViewByViewName('Untitled');
 | 
						|
      await tester.findFieldWithName('New field 1');
 | 
						|
 | 
						|
      // go back to linked database view, expect field to be hidden
 | 
						|
      await tester.tapTabBarLinkedViewByViewName('Grid');
 | 
						|
      await tester.noFieldWithName('New field 1');
 | 
						|
 | 
						|
      // use the settings button to show the field
 | 
						|
      await tester.tapDatabaseSettingButton();
 | 
						|
      await tester.tapViewPropertiesButton();
 | 
						|
      await tester.tapViewTogglePropertyVisibilityButtonByName('New field 1');
 | 
						|
      await tester.dismissFieldEditor();
 | 
						|
      await tester.findFieldWithName('New field 1');
 | 
						|
 | 
						|
      // open first row in popup then hide the field
 | 
						|
      await tester.openFirstRowDetailPage();
 | 
						|
      await tester.tapGridFieldWithNameInRowDetailPage('New field 1');
 | 
						|
      await tester.tapHidePropertyButtonInFieldEditor();
 | 
						|
      await tester.dismissRowDetailPage();
 | 
						|
      await tester.noFieldWithName('New field 1');
 | 
						|
    });
 | 
						|
  });
 | 
						|
}
 |