Feat: support for customize copy and cut Embeddables to Clipboard (#2067)
* Feat: custom behavior while copying or cutting a embeddable * dart fixes * fix: removed unnecessary optional return for CopyCutAction * fix: invalid null_aware_operator * added doc comments --------- Co-authored-by: CatHood0 <santiagowmar@gmail.com>pull/2089/head v10.1.0
parent
88ec59ccb4
commit
ac5a823440
5 changed files with 65 additions and 1 deletions
@ -0,0 +1,13 @@ |
||||
import 'package:flutter/foundation.dart'; |
||||
|
||||
typedef CopyCutAction = Object? Function(dynamic data); |
||||
|
||||
/// An abstraction to make it easy to provide different implementations |
||||
/// For copy or cut actions from a Line (just for embeddable blocks) |
||||
@immutable |
||||
abstract class CopyCutService { |
||||
/// Get the CopyCutAction by the type |
||||
/// of the embeddable (this type is decided by |
||||
/// the property type of that class) |
||||
CopyCutAction getCopyCutAction(String type); |
||||
} |
@ -0,0 +1,19 @@ |
||||
import 'package:flutter/foundation.dart' show immutable; |
||||
import 'copy_cut_service.dart'; |
||||
import 'default_copy_cut_service.dart'; |
||||
|
||||
@immutable |
||||
class CopyCutServiceProvider { |
||||
const CopyCutServiceProvider._(); |
||||
static CopyCutService _instance = DefaultCopyCutService(); |
||||
|
||||
static CopyCutService get instance => _instance; |
||||
|
||||
static void setInstance(CopyCutService service) { |
||||
_instance = service; |
||||
} |
||||
|
||||
static void setInstanceToDefault() { |
||||
_instance = DefaultCopyCutService(); |
||||
} |
||||
} |
@ -0,0 +1,14 @@ |
||||
import '../../document/nodes/leaf.dart'; |
||||
import 'copy_cut_service.dart'; |
||||
|
||||
/// Default implementation for [CopyCutService] |
||||
/// |
||||
/// This implementation always return the default embed character |
||||
/// replacemenet ([\uFFFC]) to work with the embeds from the internal |
||||
/// flutter quill plugins |
||||
class DefaultCopyCutService extends CopyCutService { |
||||
@override |
||||
CopyCutAction getCopyCutAction(String type) { |
||||
return (data) => Embed.kObjectReplacementCharacter; |
||||
} |
||||
} |
Loading…
Reference in new issue