zefyr

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. // Copyright (c) 2018, the Zefyr project authors. Please see the AUTHORS file
  2. // for details. All rights reserved. Use of this source code is governed by a
  3. // BSD-style license that can be found in the LICENSE file.
  4. import 'package:flutter/material.dart';
  5. import 'package:flutter_test/flutter_test.dart';
  6. import 'package:quill_delta/quill_delta.dart';
  7. import 'package:zefyr/src/widgets/selection.dart';
  8. import 'package:zefyr/zefyr.dart';
  9. var delta = new Delta()..insert('This House Is A Circus\n');
  10. class EditorSandBox {
  11. final WidgetTester tester;
  12. final FocusNode focusNode;
  13. final NotusDocument document;
  14. final ZefyrController controller;
  15. final Widget widget;
  16. factory EditorSandBox({
  17. @required WidgetTester tester,
  18. FocusNode focusNode,
  19. NotusDocument document,
  20. ZefyrThemeData theme,
  21. bool autofocus: false,
  22. ZefyrImageDelegate imageDelegate,
  23. }) {
  24. focusNode ??= FocusNode();
  25. document ??= NotusDocument.fromDelta(delta);
  26. var controller = ZefyrController(document);
  27. Widget widget = _ZefyrSandbox(
  28. controller: controller,
  29. focusNode: focusNode,
  30. autofocus: autofocus,
  31. imageDelegate: imageDelegate,
  32. );
  33. if (theme != null) {
  34. widget = ZefyrTheme(data: theme, child: widget);
  35. }
  36. widget = MaterialApp(
  37. home: ZefyrScaffold(child: widget),
  38. );
  39. return EditorSandBox._(tester, focusNode, document, controller, widget);
  40. }
  41. EditorSandBox._(
  42. this.tester, this.focusNode, this.document, this.controller, this.widget);
  43. TextSelection get selection => controller.selection;
  44. Future<void> unfocus() {
  45. focusNode.unfocus();
  46. return tester.pumpAndSettle();
  47. }
  48. Future<void> updateSelection({int base, int extent}) {
  49. controller.updateSelection(
  50. new TextSelection(baseOffset: base, extentOffset: extent),
  51. );
  52. return tester.pumpAndSettle();
  53. }
  54. Future<void> disable() {
  55. _ZefyrSandboxState state = tester.state(find.byType(_ZefyrSandbox));
  56. state.disable();
  57. return tester.pumpAndSettle();
  58. }
  59. Future<void> pump() async {
  60. await tester.pumpWidget(widget);
  61. }
  62. Future<void> tap() async {
  63. await tester.tap(find.byType(ZefyrParagraph).first);
  64. await tester.pumpAndSettle();
  65. expect(focusNode.hasFocus, isTrue);
  66. }
  67. Future<void> pumpAndTap() async {
  68. await pump();
  69. await tap();
  70. }
  71. Future<void> tapHideKeyboardButton() async {
  72. await tapButtonWithIcon(Icons.keyboard_hide);
  73. }
  74. Future<void> tapButtonWithIcon(IconData icon) async {
  75. await tester.tap(find.widgetWithIcon(ZefyrButton, icon));
  76. await tester.pumpAndSettle();
  77. }
  78. Future<void> tapButtonWithText(String text) async {
  79. await tester.tap(find.widgetWithText(ZefyrButton, text));
  80. await tester.pumpAndSettle();
  81. }
  82. RawZefyrButton findButtonWithIcon(IconData icon) {
  83. RawZefyrButton button =
  84. tester.widget(find.widgetWithIcon(RawZefyrButton, icon));
  85. return button;
  86. }
  87. RawZefyrButton findButtonWithText(String text) {
  88. RawZefyrButton button =
  89. tester.widget(find.widgetWithText(RawZefyrButton, text));
  90. return button;
  91. }
  92. Finder findSelectionHandle() {
  93. return find.descendant(
  94. of: find.byType(SelectionHandleDriver),
  95. matching: find.byType(GestureDetector));
  96. }
  97. }
  98. class _ZefyrSandbox extends StatefulWidget {
  99. const _ZefyrSandbox({
  100. Key key,
  101. this.controller,
  102. this.focusNode,
  103. this.autofocus,
  104. this.imageDelegate,
  105. }) : super(key: key);
  106. final ZefyrController controller;
  107. final FocusNode focusNode;
  108. final bool autofocus;
  109. final ZefyrImageDelegate imageDelegate;
  110. @override
  111. _ZefyrSandboxState createState() => _ZefyrSandboxState();
  112. }
  113. class _ZefyrSandboxState extends State<_ZefyrSandbox> {
  114. bool _enabled = true;
  115. @override
  116. Widget build(BuildContext context) {
  117. return new ZefyrEditor(
  118. controller: widget.controller,
  119. focusNode: widget.focusNode,
  120. mode: _enabled ? ZefyrMode.edit : ZefyrMode.view,
  121. autofocus: widget.autofocus,
  122. imageDelegate: widget.imageDelegate,
  123. );
  124. }
  125. void disable() {
  126. setState(() {
  127. _enabled = false;
  128. });
  129. }
  130. }