Annotate toPdf and fromHtml ad experimental

pull/1653/head
Ellet 1 year ago
parent a05ee5c4a7
commit 0d77c12e5b
  1. 22
      example/lib/screens/quill/quill_screen.dart
  2. 6
      lib/src/models/documents/document.dart
  3. 2
      quill_pdf_converter/lib/quill_pdf_converter.dart
  4. 1
      quill_pdf_converter/pubspec.yaml

@ -2,6 +2,7 @@ import 'dart:convert' show jsonEncode;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_quill/flutter_quill.dart'; import 'package:flutter_quill/flutter_quill.dart';
import 'package:flutter_quill/markdown_quill.dart';
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart' import 'package:flutter_quill_extensions/flutter_quill_extensions.dart'
show FlutterQuillEmbeds, QuillSharedExtensionsConfigurations; show FlutterQuillEmbeds, QuillSharedExtensionsConfigurations;
import 'package:pdf/pdf.dart'; import 'package:pdf/pdf.dart';
@ -49,18 +50,6 @@ class _QuillScreenState extends State<QuillScreen> {
_controller.document = widget.args.document; _controller.document = widget.args.document;
} }
// Future<void> _init() async {
// final reader = await ClipboardReader.readClipboard();
// if (reader.canProvide(Formats.htmlText)) {
// final html = await reader.readValue(Formats.htmlText);
// if (html == null) {
// return;
// }
// final delta = DeltaHtmlExt.fromHtml(html);
// _controller.document = Document.fromDelta(delta);
// }
// }
@override @override
void dispose() { void dispose() {
_controller.dispose(); _controller.dispose();
@ -118,6 +107,15 @@ class _QuillScreenState extends State<QuillScreen> {
}, },
child: const Text('Print as PDF'), child: const Text('Print as PDF'),
), ),
MenuItemButton(
child: const Text('Convert to markdown'),
onPressed: () {
final delta = _controller.document.toDelta();
// final content = DeltaToMarkdown().convert(delta);
print('H');
context.messenger.showText('Printted to log');
},
),
], ],
), ),
IconButton( IconButton(

@ -2,6 +2,7 @@ import 'dart:async' show StreamController;
import 'package:html2md/html2md.dart' as html2md; import 'package:html2md/html2md.dart' as html2md;
import 'package:markdown/markdown.dart' as md; import 'package:markdown/markdown.dart' as md;
import 'package:meta/meta.dart';
import '../../../markdown_quill.dart'; import '../../../markdown_quill.dart';
@ -458,6 +459,11 @@ class Document {
/// 3. Decode the delta json string to [Delta] /// 3. Decode the delta json string to [Delta]
/// ///
/// for more [info](https://github.com/singerdmx/flutter-quill/issues/1100) /// for more [info](https://github.com/singerdmx/flutter-quill/issues/1100)
///
/// Please notice that this api is designed to be used internally and shouldn't
/// used for real world applications
///
@experimental
static Delta fromHtml(String html) { static Delta fromHtml(String html) {
final markdown = html2md final markdown = html2md
.convert( .convert(

@ -2,12 +2,14 @@ library quill_pdf_converter;
import 'package:dart_quill_delta/dart_quill_delta.dart'; import 'package:dart_quill_delta/dart_quill_delta.dart';
import 'package:htmltopdfwidgets/htmltopdfwidgets.dart'; import 'package:htmltopdfwidgets/htmltopdfwidgets.dart';
import 'package:meta/meta.dart';
import 'package:pdf/widgets.dart' as pw; import 'package:pdf/widgets.dart' as pw;
import 'package:quill_html_converter/quill_html_converter.dart'; import 'package:quill_html_converter/quill_html_converter.dart';
/// Extension on [Delta] to add extra functions for converting to Pdf /// Extension on [Delta] to add extra functions for converting to Pdf
extension DeltaPdfExt on Delta { extension DeltaPdfExt on Delta {
/// First convert to Html then to Pdf /// First convert to Html then to Pdf
@experimental
Future<List<pw.Widget>> toPdf() async { Future<List<pw.Widget>> toPdf() async {
final html = toHtml(); final html = toHtml();
return HTMLToPdf().convert( return HTMLToPdf().convert(

@ -24,6 +24,7 @@ dependencies:
quill_html_converter: ^9.1.0 quill_html_converter: ^9.1.0
pdf: ^3.10.7 pdf: ^3.10.7
htmltopdfwidgets: ^0.0.9+2 htmltopdfwidgets: ^0.0.9+2
meta: ^1.10.0
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

Loading…
Cancel
Save