diff --git a/flutter_quill_extensions/CHANGELOG.md b/flutter_quill_extensions/CHANGELOG.md index c1f1996b..3d352da1 100644 --- a/flutter_quill_extensions/CHANGELOG.md +++ b/flutter_quill_extensions/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.6.4 +- Update `QuillImageUtilities` +- Add new extension on `QuillController` to access `QuillImageUtilities` instance easier + ## 0.6.3 - Update `README.md` diff --git a/flutter_quill_extensions/lib/logic/extensions/controller.dart b/flutter_quill_extensions/lib/logic/extensions/controller.dart index 234c418e..16625d12 100644 --- a/flutter_quill_extensions/lib/logic/extensions/controller.dart +++ b/flutter_quill_extensions/lib/logic/extensions/controller.dart @@ -1,6 +1,7 @@ import 'package:flutter_quill/flutter_quill.dart'; import '../../presentation/embeds/editor/webview.dart'; +import '../utils/quill_image_utils.dart'; /// Extension functions on [QuillController] /// that make it easier to insert the embed blocks @@ -64,4 +65,10 @@ extension QuillControllerExt on QuillController { ..skipRequestKeyboard = true ..replaceText(index, length, BlockEmbed.video(videoUrl), null); } + + QuillImageUtilities get imageUtilities { + return QuillImageUtilities( + controller: this, + ); + } } diff --git a/flutter_quill_extensions/lib/logic/utils/quill_image_utils.dart b/flutter_quill_extensions/lib/logic/utils/quill_image_utils.dart index 154be39a..3aec962c 100644 --- a/flutter_quill_extensions/lib/logic/utils/quill_image_utils.dart +++ b/flutter_quill_extensions/lib/logic/utils/quill_image_utils.dart @@ -6,9 +6,19 @@ import 'package:path/path.dart' as path; import '../../presentation/embeds/utils.dart'; +typedef OnGenerateNewFileNameCallback = String Function( + String currentFileName, + String fileExt, +); + class QuillImageUtilities { - const QuillImageUtilities._(); + const QuillImageUtilities({ + required this.controller, + }); + + final quill.QuillController controller; + /// Private function that is throw an error if the platform is web static void _webIsNotSupported(String functionName) { if (kIsWeb) { throw UnsupportedError( @@ -60,7 +70,7 @@ class QuillImageUtilities { required Iterable images, required deleteThePreviousImages, required Directory saveDirectory, - String startOfEachFile = 'quill-image-', + OnGenerateNewFileNameCallback? onGenerateNewFileName, }) async { _webIsNotSupported('saveImagesToDirectory'); final newImagesFutures = images.map((cachedImagePath) async { @@ -71,11 +81,14 @@ class QuillImageUtilities { return ''; } - final newImageFileExtensionWithDot = path.extension(cachedImagePath); + final newImageFileExtension = path.extension(cachedImagePath); // with dot - final dateTimeAsString = DateTime.now().toIso8601String(); - final newImageFileName = - '$startOfEachFile$dateTimeAsString$newImageFileExtensionWithDot'; + final dateTimeString = DateTime.now().toIso8601String(); + final newImageFileName = onGenerateNewFileName?.call( + cachedImagePath, + newImageFileExtension, + ) ?? + 'quill-image-$dateTimeString$newImageFileExtension'; final newImagePath = path.join(saveDirectory.path, newImageFileName); final newImageFile = await previousImageFile.copy(newImagePath); if (deleteThePreviousImages) { @@ -91,6 +104,13 @@ class QuillImageUtilities { /// Deletes all local images referenced in a Quill document. /// it's not supported on web for now /// + /// Be **careful**, on desktop you should never delete user images. only if you + /// are sure the image is saved in applicaton documents directory + /// + /// on mobile the app is sandboxed so you can't delete user images + /// because it will be a copy of the image for the app + /// so you should be safe + /// /// This function removes local images from the /// file system that are referenced in the provided [document]. /// @@ -106,12 +126,9 @@ class QuillImageUtilities { /// print('Error deleting local images: $e'); /// } /// ``` - static Future deleteAllLocalImagesOfDocument( - quill.Document document, - ) async { + Future deleteAllLocalImagesOfDocument() async { _webIsNotSupported('deleteAllLocalImagesOfDocument'); final imagesPaths = getImagesPathsFromDocument( - document, onlyLocalImages: true, ); for (final image in imagesPaths) { @@ -133,7 +150,7 @@ class QuillImageUtilities { /// Retrieves paths to images embedded in a Quill document. /// /// it's not supported on web for now. - /// This function parses the [document] and returns a list of image paths. + /// This function parses the Document and returns a list of image paths. /// /// [document]: The Quill document from which image paths will be retrieved. /// [onlyLocalImages]: If `true`, @@ -151,12 +168,11 @@ class QuillImageUtilities { /// /// Note: This function assumes that images are /// embedded as block embeds in the Quill document. - static Iterable getImagesPathsFromDocument( - quill.Document document, { + Iterable getImagesPathsFromDocument({ required bool onlyLocalImages, }) { _webIsNotSupported('getImagesPathsFromDocument'); - final images = document.root.children + final images = controller.document.root.children .whereType() .where((node) { if (node.isEmpty) { @@ -226,7 +242,6 @@ class QuillImageUtilities { /// It is specifically designed for mobile /// operating systems (Android and iOS). /// - /// [document] is the Quill document from which to extract image paths. /// /// [replaceUnexistentImagesWith] is an optional parameter. /// If provided, it replaces non-existent image paths @@ -235,13 +250,11 @@ class QuillImageUtilities { /// /// Returns a list of cached image paths found in the document. /// On non-mobile platforms, this function returns an empty list. - static Future> getCachedImagePathsFromDocument( - quill.Document document, { + Future> getCachedImagePathsFromDocument({ String? replaceUnexistentImagesWith, }) async { _webIsNotSupported('getCachedImagePathsFromDocument'); final imagePaths = getImagesPathsFromDocument( - document, onlyLocalImages: true, );