Add pdf converter (#1649)

* Add simple pdf converter
pull/1653/head
Ellet Hnewa 1 year ago committed by GitHub
parent f6e6a18a30
commit 9f84109951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/main.yml
  2. 7
      CHANGELOG.md
  3. 54
      example/lib/screens/quill/quill_screen.dart
  4. 4
      example/linux/flutter/generated_plugin_registrant.cc
  5. 1
      example/linux/flutter/generated_plugins.cmake
  6. 2
      example/macos/Flutter/GeneratedPluginRegistrant.swift
  7. 6
      example/macos/Podfile.lock
  8. 2
      example/macos/Runner/DebugProfile.entitlements
  9. 2
      example/macos/Runner/Release.entitlements
  10. 13
      example/pubspec.yaml
  11. 3
      example/windows/flutter/generated_plugin_registrant.cc
  12. 1
      example/windows/flutter/generated_plugins.cmake
  13. 8
      flutter_quill_extensions/CHANGELOG.md
  14. 8
      flutter_quill_test/CHANGELOG.md
  15. 2
      lib/src/models/config/toolbar/buttons/font_size_configurations.dart
  16. 8
      quill_html_converter/CHANGELOG.md
  17. 4
      quill_html_converter/README.md
  18. 29
      quill_pdf_converter/.gitignore
  19. 10
      quill_pdf_converter/.metadata
  20. 1705
      quill_pdf_converter/CHANGELOG.md
  21. 21
      quill_pdf_converter/LICENSE
  22. 34
      quill_pdf_converter/README.md
  23. 36
      quill_pdf_converter/analysis_options.yaml
  24. 20
      quill_pdf_converter/lib/quill_pdf_converter.dart
  25. 33
      quill_pdf_converter/pubspec.yaml
  26. 5
      quill_pdf_converter/pubspec_overrides.yaml.disabled
  27. 7
      quill_pdf_converter/test/quill_pdf_converter_test.dart
  28. 1
      scripts/disable_local_dev.sh
  29. 1
      scripts/enable_local_dev.sh
  30. 2
      scripts/pub_get.sh
  31. 3
      scripts/regenerate_versions.dart

@ -37,6 +37,9 @@ jobs:
- 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

@ -2,13 +2,12 @@
All notable changes to this project will be documented in this file.
## 9.1.2
* Fix the font size button and migrate to `MenuAnchor`
* The `defaultDisplayText` is no longer required in the font size and header dropdown buttons
## 9.1.1
* Fix bug [#1636](https://github.com/singerdmx/flutter-quill/issues/1636)
* Fix a where you paste styled content (HTML) it always insert a new line at first even if the document is empty
* Fix the font size button and migrate to `MenuAnchor`
* The `defaultDisplayText` is no longer required in the font size and header dropdown buttons
* Add pdf converter in a new package (quill_pdf_converter)
## 9.1.0
* Fix the simple toolbar by add properties of `IconButton` and fix some buttons

@ -4,7 +4,11 @@ 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';
@ -71,14 +75,50 @@ class _QuillScreenState extends State<QuillScreen> {
appBar: AppBar(
title: const Text('Flutter Quill'),
actions: [
IconButton(
tooltip: 'Load with HTML',
onPressed: () {
final html = _controller.document.toDelta().toHtml();
_controller.document =
Document.fromDelta(Document.fromHtml(html));
MenuAnchor(
builder: (context, controller, child) {
return IconButton(
onPressed: () {
if (controller.isOpen) {
controller.close();
return;
}
controller.open();
},
icon: const Icon(
Icons.more_vert,
),
);
},
icon: const Icon(Icons.html),
menuChildren: [
MenuItemButton(
onPressed: () {
final html = _controller.document.toDelta().toHtml();
_controller.document =
Document.fromDelta(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',

@ -9,6 +9,7 @@
#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>
@ -22,6 +23,9 @@ 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,6 +6,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
desktop_drop
file_selector_linux
irondash_engine_context
printing
super_native_extensions
url_launcher_linux
)

@ -11,6 +11,7 @@ import file_selector_macos
import gal
import irondash_engine_context
import path_provider_foundation
import printing
import share_plus
import sqflite
import super_native_extensions
@ -24,6 +25,7 @@ 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,6 +17,8 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- printing (1.0.0):
- FlutterMacOS
- share_plus (0.0.1):
- FlutterMacOS
- sqflite (0.0.2):
@ -38,6 +40,7 @@ DEPENDENCIES:
- gal (from `Flutter/ephemeral/.symlinks/plugins/gal/darwin`)
- irondash_engine_context (from `Flutter/ephemeral/.symlinks/plugins/irondash_engine_context/macos`)
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
- printing (from `Flutter/ephemeral/.symlinks/plugins/printing/macos`)
- share_plus (from `Flutter/ephemeral/.symlinks/plugins/share_plus/macos`)
- sqflite (from `Flutter/ephemeral/.symlinks/plugins/sqflite/macos`)
- super_native_extensions (from `Flutter/ephemeral/.symlinks/plugins/super_native_extensions/macos`)
@ -63,6 +66,8 @@ EXTERNAL SOURCES:
:path: Flutter/ephemeral/.symlinks/plugins/irondash_engine_context/macos
path_provider_foundation:
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
printing:
:path: Flutter/ephemeral/.symlinks/plugins/printing/macos
share_plus:
:path: Flutter/ephemeral/.symlinks/plugins/share_plus/macos
sqflite:
@ -83,6 +88,7 @@ SPEC CHECKSUMS:
gal: 61e868295d28fe67ffa297fae6dacebf56fd53e1
irondash_engine_context: da62996ee25616d2f01bbeb85dc115d813359478
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
printing: 1dd6a1fce2209ec240698e2439a4adbb9b427637
share_plus: 76dd39142738f7a68dd57b05093b5e8193f220f7
sqflite: a5789cceda41d54d23f31d6de539d65bb14100ea
super_native_extensions: 85efee3a7495b46b04befcfc86ed12069264ebf3

@ -14,5 +14,7 @@
<true/>
<!-- <key>com.apple.security.files.user-selected.read-write</key>
<true/> -->
<key>com.apple.security.print</key>
<true/>
</dict>
</plist>

@ -10,5 +10,7 @@
<true/>
<!-- <key>com.apple.security.files.user-selected.read-write</key>
<true/> -->
<key>com.apple.security.print</key>
<true/>
</dict>
</plist>

@ -13,16 +13,18 @@ dependencies:
cupertino_icons: ^1.0.6
# Flutter Quill Packages
flutter_quill: ^8.6.4
flutter_quill_extensions: ^0.7.2
flutter_quill_test: ^0.0.5
flutter_quill: ^9.1.0
flutter_quill_extensions: ^9.1.0
flutter_quill_test: ^9.1.0
quill_html_converter: ^0.0.1-experimental.1
quill_pdf_converter: ^9.1.0
# Normal Packages
path: ^1.8.3
equatable: ^2.0.5
cross_file: ^0.3.3+6
cached_network_image: ^3.3.0
pdf: ^3.10.7
# Bloc libraries
bloc: ^8.1.2
@ -36,7 +38,7 @@ dependencies:
json_annotation: ^4.8.1
# Plugins
image_cropper: ^5.0.0
image_cropper: ^5.0.1
path_provider: ^2.1.1
# For drag and drop feature
desktop_drop: ^0.4.4
@ -45,6 +47,7 @@ dependencies:
# For sharing text
share_plus: ^7.2.1
super_clipboard: ^0.7.3
printing: ^5.11.1
dependency_overrides:
flutter_quill:
@ -55,6 +58,8 @@ dependency_overrides:
path: ../flutter_quill_test
quill_html_converter:
path: ../quill_html_converter
quill_pdf_converter:
path: ../quill_pdf_converter
dev_dependencies:

@ -10,6 +10,7 @@
#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>
@ -23,6 +24,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) {
registry->GetRegistrarForPlugin("GalPluginCApi"));
IrondashEngineContextPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("IrondashEngineContextPluginCApi"));
PrintingPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("PrintingPlugin"));
SharePlusWindowsPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
SuperNativeExtensionsPluginCApiRegisterWithRegistrar(

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

@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
## 9.1.2
* Fix the font size button and migrate to `MenuAnchor`
* The `defaultDisplayText` is no longer required in the font size and header dropdown buttons
## 9.1.1
* Fix bug [#1636](https://github.com/singerdmx/flutter-quill/issues/1636)
* Fix a where you paste styled content (HTML) it always insert a new line at first even if the document is empty
## 9.1.0
* Fix the simple toolbar by add properties of `IconButton` and fix some buttons

@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
## 9.1.2
* Fix the font size button and migrate to `MenuAnchor`
* The `defaultDisplayText` is no longer required in the font size and header dropdown buttons
## 9.1.1
* Fix bug [#1636](https://github.com/singerdmx/flutter-quill/issues/1636)
* Fix a where you paste styled content (HTML) it always insert a new line at first even if the document is empty
## 9.1.0
* Fix the simple toolbar by add properties of `IconButton` and fix some buttons

@ -109,7 +109,9 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
width: width ?? this.width,
initialValue: initialValue ?? this.initialValue,
labelOverflow: labelOverflow ?? this.labelOverflow,
// ignore: deprecated_member_use_from_same_package
itemHeight: itemHeight ?? this.itemHeight,
// ignore: deprecated_member_use_from_same_package
itemPadding: itemPadding ?? this.itemPadding,
defaultItemColor: defaultItemColor ?? this.defaultItemColor,
tooltip: tooltip ?? super.tooltip,

@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
## 9.1.2
* Fix the font size button and migrate to `MenuAnchor`
* The `defaultDisplayText` is no longer required in the font size and header dropdown buttons
## 9.1.1
* Fix bug [#1636](https://github.com/singerdmx/flutter-quill/issues/1636)
* Fix a where you paste styled content (HTML) it always insert a new line at first even if the document is empty
## 9.1.0
* Fix the simple toolbar by add properties of `IconButton` and fix some buttons

@ -21,7 +21,7 @@ dependencies:
## Usage
First, you need to [setup](../../README.md#usage) the `flutter_quill` first
First, you need to [setup](../README.md#usage) the `flutter_quill` first
Then you can simply convert to/from HTML
@ -33,7 +33,7 @@ final html = _controller.document.toDelta().toHtml();
// Load Delta document using HTML
_controller.document =
Document.fromDelta(DeltaHtmlExt.fromHtml(html));
Document.fromDelta(Document.fromHtml(html));
```
## Additional information

@ -0,0 +1,29 @@
# 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/

@ -0,0 +1,10 @@
# 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

@ -0,0 +1,21 @@
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.

@ -0,0 +1,34 @@
# 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();
```

@ -0,0 +1,36 @@
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

@ -0,0 +1,20 @@
library quill_pdf_converter;
import 'package:dart_quill_delta/dart_quill_delta.dart';
import 'package:htmltopdfwidgets/htmltopdfwidgets.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
Future<List<pw.Widget>> toPdf() async {
final html = toHtml();
return HTMLToPdf().convert(
html,
fontFallback: [
pw.Font.symbol(),
],
);
}
}

@ -0,0 +1,33 @@
name: quill_pdf_converter
description: A extension for flutter_quill package to add support for dealing with conversion to pdf
version: 9.1.0
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: ^0.0.1
quill_html_converter: ^9.1.0
pdf: ^3.10.7
htmltopdfwidgets: ^0.0.9+2
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.1
flutter:

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

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

@ -21,6 +21,7 @@ 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 ""

@ -21,6 +21,7 @@ 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 ""

@ -1,5 +1,7 @@
#!/usr/bin/env bash
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)

@ -13,7 +13,8 @@ final packages = [
'./',
'./flutter_quill_extensions',
'./flutter_quill_test',
'./quill_html_converter'
'./quill_html_converter',
'./quill_pdf_converter',
];
Future<void> main(List<String> args) async {

Loading…
Cancel
Save