From 0d77c12e5b261fe5bafc044058a574493c8b59e5 Mon Sep 17 00:00:00 2001 From: Ellet Date: Wed, 27 Dec 2023 14:12:27 +0300 Subject: [PATCH] Annotate toPdf and fromHtml ad experimental --- example/lib/screens/quill/quill_screen.dart | 22 +++++++++---------- lib/src/models/documents/document.dart | 6 +++++ .../lib/quill_pdf_converter.dart | 2 ++ quill_pdf_converter/pubspec.yaml | 1 + 4 files changed, 19 insertions(+), 12 deletions(-) diff --git a/example/lib/screens/quill/quill_screen.dart b/example/lib/screens/quill/quill_screen.dart index bc34840e..40d78a96 100644 --- a/example/lib/screens/quill/quill_screen.dart +++ b/example/lib/screens/quill/quill_screen.dart @@ -2,6 +2,7 @@ import 'dart:convert' show jsonEncode; import 'package:flutter/material.dart'; import 'package:flutter_quill/flutter_quill.dart'; +import 'package:flutter_quill/markdown_quill.dart'; import 'package:flutter_quill_extensions/flutter_quill_extensions.dart' show FlutterQuillEmbeds, QuillSharedExtensionsConfigurations; import 'package:pdf/pdf.dart'; @@ -49,18 +50,6 @@ class _QuillScreenState extends State { _controller.document = widget.args.document; } - // Future _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 void dispose() { _controller.dispose(); @@ -118,6 +107,15 @@ class _QuillScreenState extends State { }, 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( diff --git a/lib/src/models/documents/document.dart b/lib/src/models/documents/document.dart index fc55c9c1..d3c2e5eb 100644 --- a/lib/src/models/documents/document.dart +++ b/lib/src/models/documents/document.dart @@ -2,6 +2,7 @@ import 'dart:async' show StreamController; import 'package:html2md/html2md.dart' as html2md; import 'package:markdown/markdown.dart' as md; +import 'package:meta/meta.dart'; import '../../../markdown_quill.dart'; @@ -458,6 +459,11 @@ class Document { /// 3. Decode the delta json string to [Delta] /// /// 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) { final markdown = html2md .convert( diff --git a/quill_pdf_converter/lib/quill_pdf_converter.dart b/quill_pdf_converter/lib/quill_pdf_converter.dart index 5201d49f..c83cc2db 100644 --- a/quill_pdf_converter/lib/quill_pdf_converter.dart +++ b/quill_pdf_converter/lib/quill_pdf_converter.dart @@ -2,12 +2,14 @@ library quill_pdf_converter; import 'package:dart_quill_delta/dart_quill_delta.dart'; import 'package:htmltopdfwidgets/htmltopdfwidgets.dart'; +import 'package:meta/meta.dart'; import 'package:pdf/widgets.dart' as pw; import 'package:quill_html_converter/quill_html_converter.dart'; /// Extension on [Delta] to add extra functions for converting to Pdf extension DeltaPdfExt on Delta { /// First convert to Html then to Pdf + @experimental Future> toPdf() async { final html = toHtml(); return HTMLToPdf().convert( diff --git a/quill_pdf_converter/pubspec.yaml b/quill_pdf_converter/pubspec.yaml index 565263e7..dfe8bf03 100644 --- a/quill_pdf_converter/pubspec.yaml +++ b/quill_pdf_converter/pubspec.yaml @@ -24,6 +24,7 @@ dependencies: quill_html_converter: ^9.1.0 pdf: ^3.10.7 htmltopdfwidgets: ^0.0.9+2 + meta: ^1.10.0 dev_dependencies: flutter_test: