chore: drop support for HTML, PDF, and Markdown converting functions (#1997)

* docs(readme): simplify vsc_quill_delta_to_html description

* chore: drop the support for DeltaX.fromHtml and DeltaX.fromMarkdown to only use them internally

* docs(readme): update outdated docs, suggest packages to convert between Delta and Markdown or PDF

* chore: deprecate customBlocks in DeltaX.fromHtml property
pull/2001/head
Ellet 9 months ago committed by GitHub
parent f205bc8a41
commit 0a7f503c5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/workflows/main.yml
  2. 8
      .github/workflows/publish.yml
  3. 5
      .gitignore
  4. 56
      README.md
  5. 49
      example/lib/screens/quill/quill_screen.dart
  6. 4
      example/linux/flutter/generated_plugin_registrant.cc
  7. 1
      example/linux/flutter/generated_plugins.cmake
  8. 2
      example/macos/Flutter/GeneratedPluginRegistrant.swift
  9. 10
      example/pubspec.yaml
  10. 3
      example/windows/flutter/generated_plugin_registrant.cc
  11. 1
      example/windows/flutter/generated_plugins.cmake
  12. 23
      lib/src/models/documents/delta_x.dart
  13. 6
      lib/src/models/documents/document.dart
  14. 2
      lib/src/widgets/quill/quill_controller.dart
  15. 30
      quill_html_converter/.gitignore
  16. 10
      quill_html_converter/.metadata
  17. 2367
      quill_html_converter/CHANGELOG.md
  18. 21
      quill_html_converter/LICENSE
  19. 41
      quill_html_converter/README.md
  20. 36
      quill_html_converter/analysis_options.yaml
  21. 131
      quill_html_converter/lib/quill_html_converter.dart
  22. 38
      quill_html_converter/pubspec.yaml
  23. 3
      quill_html_converter/pubspec_overrides.yaml.disabled
  24. 47
      quill_html_converter/test/quill_html_converter_test.dart
  25. 29
      quill_pdf_converter/.gitignore
  26. 10
      quill_pdf_converter/.metadata
  27. 2367
      quill_pdf_converter/CHANGELOG.md
  28. 21
      quill_pdf_converter/LICENSE
  29. 34
      quill_pdf_converter/README.md
  30. 36
      quill_pdf_converter/analysis_options.yaml
  31. 22
      quill_pdf_converter/lib/quill_pdf_converter.dart
  32. 34
      quill_pdf_converter/pubspec.yaml
  33. 5
      quill_pdf_converter/pubspec_overrides.yaml.disabled
  34. 7
      quill_pdf_converter/test/quill_pdf_converter_test.dart
  35. 6
      scripts/disable_local_dev.sh
  36. 6
      scripts/enable_local_dev.sh
  37. 2
      scripts/pub_get.sh
  38. 2
      scripts/update_package_version.dart
  39. 2
      test/utils/delta_x_test.dart

@ -38,12 +38,6 @@ jobs:
- name: 📦 Install flutter_quill_test dependencies
run: flutter pub get -C flutter_quill_test
- name: 📦 Install quill_html_converter dependencies
run: flutter pub get -C quill_html_converter
- name: 📦 Install quill_pdf_converter dependencies
run: flutter pub get -C quill_pdf_converter
- name: 🔍 Run Flutter analysis
run: flutter analyze

@ -107,11 +107,3 @@ jobs:
- name: 📤 Publish flutter_quill_test
run: flutter pub publish --force
working-directory: ./flutter_quill_test/
- name: 📤 Publish quill_html_converter
run: flutter pub publish --force
working-directory: ./quill_html_converter/
- name: 📤 Publish quill_pdf_converter
run: flutter pub publish --force
working-directory: ./quill_pdf_converter/

5
.gitignore vendored

@ -78,7 +78,4 @@ example/ios/Podfile.lock
pubspec.lock
# For local development
pubspec_overrides.yaml
# A directory where you put all of your local things that you don't want to push
.flutter-quill
pubspec_overrides.yaml

@ -123,40 +123,35 @@ All of them don't require any platform-specific setup.
## 🚀 Usage
First, you need to instantiate a controller
Instantiate a controller:
```dart
QuillController _controller = QuillController.basic();
```
And then use the `QuillEditor`, `QuillToolbar` widgets,
connect the `QuillController` to them
Use the `QuillEditor`, and `QuillToolbar` widgets,
and attach the `QuillController` to them:
```dart
QuillToolbar.simple(
configurations: QuillSimpleToolbarConfigurations(
controller: _controller,
sharedConfigurations: const QuillSharedConfigurations(
locale: Locale('de'),
),
),
configurations: QuillSimpleToolbarConfigurations(controller: _controller),
),
Expanded(
child: QuillEditor.basic(
configurations: QuillEditorConfigurations(
controller: _controller,
readOnly: false,
sharedConfigurations: const QuillSharedConfigurations(
locale: Locale('de'),
),
),
configurations: QuillEditorConfigurations(controller: _controller),
),
)
```
Depending on your use case, you might want to dispose of the `_controller` in `dispose` method
Dispose of the `QuillController` in the `dispose` method:
in most cases, it's better to.
```dart
@override
void dispose() {
_controller.dispose();
super.dispose();
}
```
Check out [Sample Page] for more advanced usage.
@ -252,20 +247,20 @@ of [FlutterQuill Extensions]
## 🔄 Conversion to HTML
> [!CAUTION]
> **Converting to Delta from Markdown and HTML is highly experimental and shouldn't be used for production applications**, while the current implementation is far from perfect, it could improved a lot however **it will likely not work as expected**, due to differences between **HTML** and **Delta**, see this [comment](https://github.com/slab/quill/issues/1551#issuecomment-311458570) for more info.<br>
> We use it **internally** as it is more suitable for our specific use case, copying content from external websites and pasting it into the editor
previously breaks the styles, while the current implementation is not ready, it provides a better user experience and doesn't have many downsides.
> **Converting HTML or Markdown to Delta is highly experimental and shouldn't be used for production applications**, while the current implementation we have internally is far from perfect, it could improved however **it will likely not work as expected**, due to differences between **HTML** and **Delta**, see this [Quill JS Comment #311458570](https://github.com/slab/quill/issues/1551#issuecomment-311458570) for more info.<br>
> We only use it **internally** as it is more suitable for our specific use case, copying content from external websites and pasting it into the editor
previously breaks the styles, while the current implementation is not designed for converting a **full Document** from other formats to **Delta**, it provides a better user experience and doesn't have many downsides.
>
> The support for converting HTML to **Quill Delta** is quite experimental and used internally when
pasting HTML content from the clipboard to the Quill Editor
pasting HTML content from the clipboard to the Quill Document.
>
> Converting **Delta** from/to **HTML** is not a standard feature in [Quill JS](https://github.com/slab/quill) or [FlutterQuill].
> [!IMPORTANT]
> Converting HTML to **Delta** usually won't work as expected, we highly recommend storing the document as **Delta JSON**
> Converting **HTML** to **Delta** usually won't work as expected, we highly recommend storing the **Document** as **Delta JSON**
in the database instead of other formats (e.g., HTML, Markdown, PDF, Microsoft Word, Google Docs, Apple Pages, XML, CSV, etc...)
>
> Converting between HTML and **Delta** JSON is generally not recommended due to their structural and functional differences.
> Converting between **HTML** and **Delta** JSON is generally not recommended due to their structural and functional differences.
>
> Sometimes you might want to convert **HTML** to **Delta** for specific use cases:
>
@ -276,16 +271,11 @@ in the database instead of other formats (e.g., HTML, Markdown, PDF, Microsoft W
The following packages can be used:
1. [`quill_html_converter`](./quill_html_converter/): To convert Delta HTML, it uses [vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html), it's an extension to `Delta`.
2. [`vsc_quill_delta_to_html`](https://pub.dev/packages/vsc_quill_delta_to_html): To convert **Delta**
1. [`vsc_quill_delta_to_html`](https://pub.dev/packages/vsc_quill_delta_to_html): To convert **Delta**
to HTML.
This package has full support for all Quill operations—including images, videos, formulas,
tables, and mentions.
Conversion can be performed in vanilla Dart (i.e., Server Side or CLI) or in **Flutter**.
It is a complete Dart part of the popular and
mature [quill-delta-to-html](https://www.npmjs.com/package/quill-delta-to-html)
Typescript/JS package.
3. [`flutter_quill_delta_from_html`](https://pub.dev/packages/flutter_quill_delta_from_html): To Convert **HTML** to **Delta**.
2. [`flutter_quill_delta_from_html`](https://pub.dev/packages/flutter_quill_delta_from_html): To Convert **HTML** to **Delta**.
3. [`flutter_quill_to_pdf`](https://pub.dev/packages/flutter_quill_to_pdf): To convert **Delta** To **PDF**.
4. [`markdown_quill`](https://pub.dev/packages/markdown_quill): To convert **Markdown** To **Delta** and vice versa.
## 🌐 Translation

@ -4,11 +4,6 @@ import 'package:flutter/material.dart';
import 'package:flutter_quill/flutter_quill.dart';
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart'
show FlutterQuillEmbeds, QuillSharedExtensionsConfigurations;
import 'package:pdf/pdf.dart';
import 'package:pdf/widgets.dart' as pw;
import 'package:printing/printing.dart';
import 'package:quill_html_converter/quill_html_converter.dart';
import 'package:quill_pdf_converter/quill_pdf_converter.dart';
import 'package:share_plus/share_plus.dart' show Share;
import '../../extensions/scaffold_messenger.dart';
@ -64,50 +59,6 @@ class _QuillScreenState extends State<QuillScreen> {
appBar: AppBar(
title: const Text('Flutter Quill'),
actions: [
MenuAnchor(
builder: (context, controller, child) {
return IconButton(
onPressed: () {
if (controller.isOpen) {
controller.close();
return;
}
controller.open();
},
icon: const Icon(
Icons.more_vert,
),
);
},
menuChildren: [
MenuItemButton(
onPressed: () {
final html = _controller.document.toDelta().toHtml();
_controller.document = Document.fromHtml(html);
},
child: const Text('Load with HTML'),
),
MenuItemButton(
onPressed: () async {
final pdfDocument = pw.Document();
final pdfWidgets =
await _controller.document.toDelta().toPdf();
pdfDocument.addPage(
pw.MultiPage(
maxPages: 200,
pageFormat: PdfPageFormat.a4,
build: (context) {
return pdfWidgets;
},
),
);
await Printing.layoutPdf(
onLayout: (format) async => pdfDocument.save());
},
child: const Text('Print as PDF'),
),
],
),
IconButton(
tooltip: 'Share',
onPressed: () {

@ -9,7 +9,6 @@
#include <desktop_drop/desktop_drop_plugin.h>
#include <file_selector_linux/file_selector_plugin.h>
#include <irondash_engine_context/irondash_engine_context_plugin.h>
#include <printing/printing_plugin.h>
#include <super_native_extensions/super_native_extensions_plugin.h>
#include <url_launcher_linux/url_launcher_plugin.h>
@ -23,9 +22,6 @@ void fl_register_plugins(FlPluginRegistry* registry) {
g_autoptr(FlPluginRegistrar) irondash_engine_context_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "IrondashEngineContextPlugin");
irondash_engine_context_plugin_register_with_registrar(irondash_engine_context_registrar);
g_autoptr(FlPluginRegistrar) printing_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "PrintingPlugin");
printing_plugin_register_with_registrar(printing_registrar);
g_autoptr(FlPluginRegistrar) super_native_extensions_registrar =
fl_plugin_registry_get_registrar_for_plugin(registry, "SuperNativeExtensionsPlugin");
super_native_extensions_plugin_register_with_registrar(super_native_extensions_registrar);

@ -6,7 +6,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
desktop_drop
file_selector_linux
irondash_engine_context
printing
super_native_extensions
url_launcher_linux
)

@ -12,7 +12,6 @@ import flutter_inappwebview_macos
import gal
import irondash_engine_context
import path_provider_foundation
import printing
import share_plus
import sqflite
import super_native_extensions
@ -27,7 +26,6 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
GalPlugin.register(with: registry.registrar(forPlugin: "GalPlugin"))
IrondashEngineContextPlugin.register(with: registry.registrar(forPlugin: "IrondashEngineContextPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
PrintingPlugin.register(with: registry.registrar(forPlugin: "PrintingPlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
SuperNativeExtensionsPlugin.register(with: registry.registrar(forPlugin: "SuperNativeExtensionsPlugin"))

@ -17,14 +17,11 @@ dependencies:
dart_quill_delta: ^9.3.4
flutter_quill_extensions: ^9.3.4
flutter_quill_test: ^9.3.4
quill_html_converter: ^9.3.4
quill_pdf_converter: ^9.3.4
# Dart Packages
path: ^1.8.3
equatable: ^2.0.5
cross_file: ^0.3.4
cached_network_image: ^3.3.1
pdf: ^3.10.8
# Bloc libraries
bloc: ^8.1.4
@ -46,7 +43,6 @@ dependencies:
file_picker: ^8.0.0+1
# For sharing text
share_plus: ^8.0.2
printing: ^5.12.0
google_fonts: ^6.2.1
dependency_overrides:
@ -58,12 +54,6 @@ dependency_overrides:
path: ../dart_quill_delta
flutter_quill_test:
path: ../flutter_quill_test
quill_html_converter:
path: ../quill_html_converter
quill_pdf_converter:
path: ../quill_pdf_converter
pdf_widget_wrapper: ^1.0.4
dev_dependencies:

@ -10,7 +10,6 @@
#include <file_selector_windows/file_selector_windows.h>
#include <gal/gal_plugin_c_api.h>
#include <irondash_engine_context/irondash_engine_context_plugin_c_api.h>
#include <printing/printing_plugin.h>
#include <share_plus/share_plus_windows_plugin_c_api.h>
#include <super_native_extensions/super_native_extensions_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h>
@ -24,8 +23,6 @@ void RegisterPlugins(flutter::PluginRegistry* registry) {
registry->GetRegistrarForPlugin("GalPluginCApi"));
IrondashEngineContextPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("IrondashEngineContextPluginCApi"));
PrintingPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("PrintingPlugin"));
SharePlusWindowsPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
SuperNativeExtensionsPluginCApiRegisterWithRegistrar(

@ -7,7 +7,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
file_selector_windows
gal
irondash_engine_context
printing
share_plus
super_native_extensions
url_launcher_windows

@ -14,6 +14,12 @@ class DeltaX {
/// This api is **experimental** and designed to be used **internally** and shouldn't
/// used for **production applications**.
@experimental
@Deprecated(
'''
The experimental support for Markdown conversion has been dropped and will be removed in future releases,
consider using alternatives such as https://pub.dev/packages/markdown_quill
''',
)
static Delta fromMarkdown(String markdownText) {
final mdDocument = md.Document(encodeHtml: false);
final mdToDelta = MarkdownToDelta(markdownDocument: mdDocument);
@ -22,7 +28,22 @@ class DeltaX {
/// Convert the HTML Raw string to [Delta]
@experimental
static Delta fromHtml(String htmlText, {List<CustomHtmlPart>? customBlocks}) {
@Deprecated(
'''
The experimental support for HTML conversion has been dropped and will be removed in future releases,
consider using alternatives such as https://pub.dev/packages/flutter_quill_delta_from_html
''',
)
static Delta fromHtml(
String htmlText, {
@Deprecated(
'''
The experimental support for HTML conversion has been dropped and will be removed in future releases,
consider using alternatives such as https://pub.dev/packages/flutter_quill_delta_from_html
''',
)
List<CustomHtmlPart>? customBlocks,
}) {
final htmlToDelta = HtmlToDelta(customBlocks: customBlocks);
return htmlToDelta.convert(htmlText);
}

@ -480,6 +480,12 @@ class Document {
/// Convert the HTML Raw string to [Document]
@experimental
@Deprecated(
'''
The experimental support for HTML conversion has been dropped and will be removed in future releases,
consider using alternatives such as https://pub.dev/packages/flutter_quill_delta_from_html
''',
)
static Document fromHtml(String html) {
return Document.fromDelta(DeltaX.fromHtml(html));
}

@ -583,6 +583,7 @@ class QuillController extends ChangeNotifier {
final htmlText = await getHTML();
if (htmlText != null) {
final htmlBody = html_parser.parse(htmlText).body?.outerHtml;
// ignore: deprecated_member_use_from_same_package
final deltaFromClipboard = DeltaX.fromHtml(htmlBody ?? htmlText);
_pasteUsingDelta(deltaFromClipboard);
@ -608,6 +609,7 @@ class QuillController extends ChangeNotifier {
final markdownText = await getMarkdown();
if (markdownText != null) {
// ignore: deprecated_member_use_from_same_package
final deltaFromClipboard = DeltaX.fromMarkdown(markdownText);
_pasteUsingDelta(deltaFromClipboard);

@ -1,30 +0,0 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/

@ -1,10 +0,0 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "d211f42860350d914a5ad8102f9ec32764dc6d06"
channel: "stable"
project_type: package

File diff suppressed because it is too large Load Diff

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2023 Flutter Quill Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -1,41 +0,0 @@
# Flutter Quill HTML
A extension for [flutter_quill](https://pub.dev/packages/flutter_quill) package to add support for dealing with conversion to/from html
It uses [vsc_quill_delta_to_html](https://pub.dev/packages/vsc_quill_delta_to_html) package to convert the the delta to HTML
This library is **experimental** and the support might be dropped at anytime.
## Features
```markdown
- Easy to use
- Support Flutter Quill package
```
## Getting started
```yaml
dependencies:
quill_html_converter: ^<latest-version-here>
```
## Usage
First, you need to [setup](../README.md#usage) the `flutter_quill` first
Then you can simply convert to/from HTML
```dart
import 'package:quill_html_converter/quill_html_converter.dart';
// Convert Delta to HTML
final html = _controller.document.toDelta().toHtml();
// Load Delta document using HTML
_controller.document =
Document.fromDelta(Document.fromHtml(html));
```
## Additional information
This will be updated soon.

@ -1,36 +0,0 @@
include: package:flutter_lints/flutter.yaml
analyzer:
errors:
undefined_prefixed_name: ignore
unsafe_html: ignore
linter:
rules:
always_declare_return_types: true
always_put_required_named_parameters_first: true
annotate_overrides: true
avoid_empty_else: true
avoid_escaping_inner_quotes: true
avoid_print: true
avoid_redundant_argument_values: true
avoid_types_on_closure_parameters: true
avoid_void_async: true
cascade_invocations: true
directives_ordering: true
omit_local_variable_types: true
prefer_const_constructors: true
prefer_const_constructors_in_immutables: true
prefer_const_declarations: true
prefer_final_fields: true
prefer_final_in_for_each: true
prefer_final_locals: true
prefer_initializing_formals: true
prefer_int_literals: true
prefer_interpolation_to_compose_strings: true
prefer_relative_imports: true
prefer_single_quotes: true
sort_constructors_first: true
sort_unnamed_constructors_first: true
unnecessary_lambdas: true
unnecessary_parenthesis: true
unnecessary_string_interpolations: true

@ -1,131 +0,0 @@
library quill_html_converter;
import 'package:dart_quill_delta/dart_quill_delta.dart';
import 'package:vsc_quill_delta_to_html/vsc_quill_delta_to_html.dart'
as converter
show
ConverterOptions,
QuillDeltaToHtmlConverter,
OpAttributeSanitizerOptions,
OpConverterOptions,
InlineStyles,
InlineStyleType,
defaultInlineFonts;
typedef ConverterOptions = converter.ConverterOptions;
/// A extension for [Delta] which comes from `flutter_quill` to extends
/// the functionality of it to support converting the [Delta] to/from HTML
extension DeltaHtmlExt on Delta {
/// Convert the [Delta] instance to HTML Raw string
///
/// It will run using the following steps:
///
/// 1. Convert the [Delta] to json using [toJson]
/// 2. Cast the json map as `List<Map<String, dynamic>>`
/// 3. Pass it to the conventer `vsc_quill_delta_to_html` which is a package
/// that designed specifically for converting the quill delta to html
String toHtml({ConverterOptions? options}) {
final json = toJson();
final html = converter.QuillDeltaToHtmlConverter(
List.castFrom(json),
options ?? _defaultConverterOptions,
).convert();
return html;
}
}
/// Configuration options for converting Quill Delta to HTML.
/// This includes various settings for how different elements and styles should be handled.
final _defaultConverterOptions = ConverterOptions(
// Tag to be used for ordered lists
orderedListTag: 'ol',
// Tag to be used for bullet lists
bulletListTag: 'ul',
// Enable multi-line blockquote conversion
multiLineBlockquote: true,
// Enable multi-line header conversion
multiLineHeader: true,
// Enable multi-line code block conversion
multiLineCodeblock: true,
// Enable multi-line paragraph conversion
multiLineParagraph: true,
// Enable multi-line custom block conversion
multiLineCustomBlock: true,
// Options for sanitizing attributes
sanitizerOptions: converter.OpAttributeSanitizerOptions(
// Allow 8-digit hex colors in styles
allow8DigitHexColors: true,
),
// This handle specific styles and attributes
converterOptions: converter.OpConverterOptions(
customCssStyles: (op) {
// Validate if our attributes exist in [DeltaInsertOp]
// and return the necessary HTML style
// These lists of attributes, are passed as inline styles
//
// For example, if you have a delta like ->
// [ { "insert": "hello", "attributes": { "line-height": 1.5 }} ]
//
// Without the validation below to verify if exist line-height atribute in the Operation, it would be:
// <p>hello</p> -> isn't created the attribute
//
// But, with this validation an implementation of the style will be:
// <p><span style="line-height: 1.5px">hello</span></p>
if (op.attributes['line-height'] != null) {
return ['line-height: ${op.attributes['line-height']}px'];
}
if (op.isImage()) {
// Fit images within restricted parent width
final String? styles = op.attributes['style'];
final listStyles = styles?.split(';') ?? [];
return ['max-width: 100%', 'object-fit: contain', ...listStyles];
}
return null;
},
// Enable inline styles
inlineStylesFlag: true,
inlineStyles: converter.InlineStyles(
<String, converter.InlineStyleType>{
'font': converter.InlineStyleType(
fn: (value, _) =>
converter.defaultInlineFonts[value] ?? 'font-family: $value',
),
'size': converter.InlineStyleType(
fn: (value, _) {
// Default sizes
if (value == 'small') return 'font-size: 0.75em';
if (value == 'large') return 'font-size: 1.5em';
if (value == 'huge') return 'font-size: 2.5em';
// Accept any int or double type size
return 'font-size: ${value}px';
},
),
'indent': converter.InlineStyleType(
fn: (value, op) {
// Calculate indent size based on the value
final indentSize = (double.tryParse(value) ?? double.nan) * 3;
// Determine side for padding based on text direction
final side = op.attributes['direction'] == 'rtl' ? 'right' : 'left';
return 'padding-$side:${indentSize}em';
},
),
'list': converter.InlineStyleType(
map: <String, String>{
// Styles for checked and unchecked list items
'checked': "list-style-type:'\\2611';padding-left: 0.5em;",
'unchecked': "list-style-type:'\\2610';padding-left: 0.5em;",
},
),
},
),
),
);

@ -1,38 +0,0 @@
name: quill_html_converter
description: A extension for flutter_quill package to add support for dealing with conversion to/from html
version: 9.5.15
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/
documentation: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/
topics:
- ui
- widgets
- widget
- rich-text-editor
- quill
environment:
sdk: '>=3.1.5 <4.0.0'
flutter: ">=1.17.0"
dependencies:
flutter:
sdk: flutter
vsc_quill_delta_to_html: ^1.0.5
markdown: ^7.2.2
charcode: ^1.3.1
collection: ^1.18.0
dart_quill_delta: ^9.3.5
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^4.0.0
test: ^1.24.9
flutter:
uses-material-design: true

@ -1,3 +0,0 @@
dependency_overrides:
dart_quill_delta:
path: ../dart_quill_delta

@ -1,47 +0,0 @@
import 'package:dart_quill_delta/dart_quill_delta.dart';
import 'package:quill_html_converter/quill_html_converter.dart';
import 'package:test/test.dart';
void main() {
group('Quill HTML Converter', () {
test('should parser delta heading to html', () {
const html = '<p><br/></p><h1><br/></h1>';
final quillDelta = [
{'insert': '\n'},
{
'attributes': {'header': 1},
'insert': 'Hello'
}
];
expect(Delta.fromJson(quillDelta).toHtml().trim(), html.trim());
});
test('should parse line-height attribute to html', () {
const html = '<p><span style="line-height: 1.5px">hello</span></p>';
final quillDelta = [
{
'insert': 'hello',
'attributes': {'line-height': 1.5}
},
{'insert': '\n'}
];
expect(Delta.fromJson(quillDelta).toHtml().trim(), html.trim());
});
test("should parse block image embed with it's attributes to html", () {
const html =
'<p><img style="max-width: 100%;object-fit: contain;width: 40vh; height:350px; margin: 20px;" src="https://img.freepik.com/foto-gratis/belleza-otonal-abstracta-patron-venas-hoja-multicolor-generado-ia_188544-9871.jpg"/></p>';
final quillDelta = [
{
'insert': {
'image':
'https://img.freepik.com/foto-gratis/belleza-otonal-abstracta-patron-venas-hoja-multicolor-generado-ia_188544-9871.jpg'
},
'attributes': {'style': 'width: 40vh; height:350px; margin: 20px;'}
},
{'insert': '\n'}
];
expect(Delta.fromJson(quillDelta).toHtml().trim(), html.trim());
});
});
}

@ -1,29 +0,0 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
build/

@ -1,10 +0,0 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9"
channel: "stable"
project_type: package

File diff suppressed because it is too large Load Diff

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2023 Flutter Quill Team
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -1,34 +0,0 @@
# Flutter Quill Pdf
A extension for [flutter_quill](https://pub.dev/packages/flutter_quill) package to add support for dealing with conversion to Pdf
It uses [quill_html_converter](https://pub.dev/packages/quill_html_converter) package to convert the the delta to Html and [htmltopdfwidgets](https://pub.dev/packages/htmltopdfwidgets) to convert the Html to Pdf
This library is **experimental** and the support might be dropped at anytime.
## Features
```markdown
- Easy to use
- Support Flutter Quill package
```
## Getting started
```yaml
dependencies:
quill_pdf_converter: ^<latest-version-here>
```
## Usage
First, you need to [setup](../README.md#usage) the `flutter_quill` first
Then you can simply convert to PDF
```dart
import 'package:quill_pdf_converter/quill_pdf_converter.dart';
// Convert Delta to Pdf
final pdfWidgets = _controller.document.toDelta().toPdf();
```

@ -1,36 +0,0 @@
include: package:flutter_lints/flutter.yaml
analyzer:
errors:
undefined_prefixed_name: ignore
unsafe_html: ignore
linter:
rules:
always_declare_return_types: true
always_put_required_named_parameters_first: true
annotate_overrides: true
avoid_empty_else: true
avoid_escaping_inner_quotes: true
avoid_print: true
avoid_redundant_argument_values: true
avoid_types_on_closure_parameters: true
avoid_void_async: true
cascade_invocations: true
directives_ordering: true
omit_local_variable_types: true
prefer_const_constructors: true
prefer_const_constructors_in_immutables: true
prefer_const_declarations: true
prefer_final_fields: true
prefer_final_in_for_each: true
prefer_final_locals: true
prefer_initializing_formals: true
prefer_int_literals: true
prefer_interpolation_to_compose_strings: true
prefer_relative_imports: true
prefer_single_quotes: true
sort_constructors_first: true
sort_unnamed_constructors_first: true
unnecessary_lambdas: true
unnecessary_parenthesis: true
unnecessary_string_interpolations: true

@ -1,22 +0,0 @@
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<List<pw.Widget>> toPdf() async {
final html = toHtml();
return HTMLToPdf().convert(
html,
fontFallback: [
pw.Font.symbol(),
],
);
}
}

@ -1,34 +0,0 @@
name: quill_pdf_converter
description: A extension for flutter_quill package to add support for dealing with conversion to pdf
version: 9.5.15
homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/
documentation: https://github.com/singerdmx/flutter-quill/tree/master/quill_pdf_converter/
topics:
- ui
- widgets
- widget
- rich-text-editor
- quill
environment:
sdk: '>=3.2.3 <4.0.0'
flutter: ">=1.17.0"
dependencies:
flutter:
sdk: flutter
dart_quill_delta: ^9.3.1
quill_html_converter: ^9.3.1
pdf: ^3.10.8
htmltopdfwidgets: ^1.0.3
meta: ^1.10.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^4.0.0
flutter:

@ -1,5 +0,0 @@
dependency_overrides:
dart_quill_delta:
path: ../dart_quill_delta
quill_html_converter:
path: ../quill_html_converter

@ -1,7 +0,0 @@
import 'package:flutter_test/flutter_test.dart';
void main() {
test('No tests for now', () {
expect(true, true);
});
}

@ -21,10 +21,4 @@ rm flutter_quill_test/pubspec_overrides.yaml
echo ""
echo "Disable local development for all the other packages..."
rm quill_html_converter/pubspec_overrides.yaml
rm quill_pdf_converter/pubspec_overrides.yaml
echo ""
echo "Local development for all libraries has been disabled, please 'flutter pub get' for each one of them"

@ -21,10 +21,4 @@ cp flutter_quill_test/pubspec_overrides.yaml.disabled flutter_quill_test/pubspec
echo ""
echo "Enable local development for all the other packages..."
cp quill_html_converter/pubspec_overrides.yaml.disabled quill_html_converter/pubspec_overrides.yaml
cp quill_pdf_converter/pubspec_overrides.yaml.disabled quill_pdf_converter/pubspec_overrides.yaml
echo ""
echo "Local development for all libraries has been enabled, please 'flutter pub get' for each one of them"

@ -6,5 +6,3 @@ flutter pub get
(cd dart_quill_delta && flutter pub get)
(cd flutter_quill_extensions && flutter pub get)
(cd flutter_quill_test && flutter pub get)
(cd quill_html_converter && flutter pub get)
(cd quill_pdf_converter && flutter pub get)

@ -14,8 +14,6 @@ final _packages = [
'./dart_quill_delta',
'./flutter_quill_extensions',
'./flutter_quill_test',
'./quill_html_converter',
'./quill_pdf_converter',
];
const _usage = 'Usage: ./script <version>';

@ -1,3 +1,5 @@
// ignore_for_file: deprecated_member_use_from_same_package
import 'package:flutter_quill/quill_delta.dart';
import 'package:flutter_quill/src/models/documents/delta_x.dart';
import 'package:test/test.dart';

Loading…
Cancel
Save