parent
2bbb80cf84
commit
304f5a5f89
31 changed files with 458 additions and 466 deletions
@ -1,58 +1,58 @@ |
||||
import 'dart:convert' show jsonDecode, jsonEncode; |
||||
|
||||
import 'package:flutter/widgets.dart'; |
||||
import 'package:flutter_inappwebview/flutter_inappwebview.dart'; |
||||
import 'package:flutter_quill/flutter_quill.dart'; |
||||
import 'package:meta/meta.dart' show experimental; |
||||
|
||||
import '../../models/config/editor/webview.dart'; |
||||
|
||||
@experimental |
||||
class QuillEditorWebViewBlockEmbed extends CustomBlockEmbed { |
||||
const QuillEditorWebViewBlockEmbed( |
||||
String value, |
||||
) : super(webViewType, value); |
||||
|
||||
factory QuillEditorWebViewBlockEmbed.fromDocument(Document document) => |
||||
QuillEditorWebViewBlockEmbed(jsonEncode(document.toDelta().toJson())); |
||||
|
||||
static const String webViewType = 'webview'; |
||||
|
||||
Document get document => Document.fromJson(jsonDecode(data)); |
||||
} |
||||
|
||||
@experimental |
||||
class QuillEditorWebViewEmbedBuilder extends EmbedBuilder { |
||||
const QuillEditorWebViewEmbedBuilder({ |
||||
required this.configurations, |
||||
}); |
||||
|
||||
@override |
||||
bool get expanded => false; |
||||
|
||||
final QuillEditorWebViewEmbedConfigurations configurations; |
||||
@override |
||||
Widget build( |
||||
BuildContext context, |
||||
QuillController controller, |
||||
Embed node, |
||||
bool readOnly, |
||||
bool inline, |
||||
TextStyle textStyle, |
||||
) { |
||||
final url = node.value.data as String; |
||||
|
||||
return SizedBox( |
||||
width: double.infinity, |
||||
height: 200, |
||||
child: InAppWebView( |
||||
initialUrlRequest: URLRequest( |
||||
url: Uri.parse(url), |
||||
), |
||||
), |
||||
); |
||||
} |
||||
|
||||
@override |
||||
String get key => 'webview'; |
||||
} |
||||
// import 'dart:convert' show jsonDecode, jsonEncode; |
||||
|
||||
// import 'package:flutter/widgets.dart'; |
||||
// import 'package:flutter_inappwebview/flutter_inappwebview.dart'; |
||||
// import 'package:flutter_quill/flutter_quill.dart'; |
||||
// import 'package:meta/meta.dart' show experimental; |
||||
|
||||
// import '../../models/config/editor/webview.dart'; |
||||
|
||||
// @experimental |
||||
// class QuillEditorWebViewBlockEmbed extends CustomBlockEmbed { |
||||
// const QuillEditorWebViewBlockEmbed( |
||||
// String value, |
||||
// ) : super(webViewType, value); |
||||
|
||||
// factory QuillEditorWebViewBlockEmbed.fromDocument(Document document) => |
||||
// QuillEditorWebViewBlockEmbed(jsonEncode(document.toDelta().toJson())); |
||||
|
||||
// static const String webViewType = 'webview'; |
||||
|
||||
// Document get document => Document.fromJson(jsonDecode(data)); |
||||
// } |
||||
|
||||
// @experimental |
||||
// class QuillEditorWebViewEmbedBuilder extends EmbedBuilder { |
||||
// const QuillEditorWebViewEmbedBuilder({ |
||||
// required this.configurations, |
||||
// }); |
||||
|
||||
// @override |
||||
// bool get expanded => false; |
||||
|
||||
// final QuillEditorWebViewEmbedConfigurations configurations; |
||||
// @override |
||||
// Widget build( |
||||
// BuildContext context, |
||||
// QuillController controller, |
||||
// Embed node, |
||||
// bool readOnly, |
||||
// bool inline, |
||||
// TextStyle textStyle, |
||||
// ) { |
||||
// final url = node.value.data as String; |
||||
|
||||
// return SizedBox( |
||||
// width: double.infinity, |
||||
// height: 200, |
||||
// child: InAppWebView( |
||||
// initialUrlRequest: URLRequest( |
||||
// url: Uri.parse(url), |
||||
// ), |
||||
// ), |
||||
// ); |
||||
// } |
||||
|
||||
// @override |
||||
// String get key => 'webview'; |
||||
// } |
||||
|
@ -0,0 +1,33 @@ |
||||
import 'package:flutter/widgets.dart' |
||||
show Axis, WrapAlignment, WrapCrossAlignment, immutable; |
||||
|
||||
import '../../../widgets/toolbar/base_toolbar.dart'; |
||||
import 'toolbar_shared_configurations.dart'; |
||||
|
||||
@immutable |
||||
class QuillBaseToolbarConfigurations extends QuillSharedToolbarProperties { |
||||
const QuillBaseToolbarConfigurations({ |
||||
required this.childrenBuilder, |
||||
super.axis = Axis.horizontal, |
||||
super.toolbarSize = kDefaultIconSize * 2, |
||||
super.toolbarSectionSpacing = kToolbarSectionSpacing, |
||||
super.toolbarIconAlignment = WrapAlignment.center, |
||||
super.toolbarIconCrossAlignment = WrapCrossAlignment.center, |
||||
super.color, |
||||
super.customButtons = const [], |
||||
super.sectionDividerColor, |
||||
super.sectionDividerSpace, |
||||
super.linkDialogAction, |
||||
super.multiRowsDisplay = true, |
||||
super.decoration, |
||||
|
||||
/// Note this only used when you using the quill toolbar buttons like |
||||
/// `QuillToolbarHistoryButton` inside it |
||||
super.buttonOptions = const QuillToolbarButtonOptions(), |
||||
}); |
||||
|
||||
final QuillBaseToolbarChildrenBuilder childrenBuilder; |
||||
|
||||
@override |
||||
List<Object?> get props => []; |
||||
} |
Loading…
Reference in new issue