MessageFieldController constructor
Implementation
MessageFieldController(
this._chatService,
this._userService,
this._settingsRepository, {
this.onSubmit,
this.onChanged,
this.onCall,
String? text,
List<ChatItemQuoteInput> quotes = const [],
List<Attachment> attachments = const [],
}) : quotes = RxList(quotes),
attachments = RxList(
attachments.map((e) => MapEntry(GlobalKey(), e)).toList(),
) {
field = TextFieldState(
text: text,
onFocus: (s) {
onChanged?.call();
ClipboardEvents.instance?.unregisterPasteEventListener(
_pasteEventListener,
);
if (s.focus.hasFocus) {
ClipboardEvents.instance?.registerPasteEventListener(
_pasteEventListener,
);
}
},
submitted: false,
onSubmitted: (s) {
field.unsubmit();
onSubmit?.call();
},
focus: FocusNode(onKeyEvent: (_, KeyEvent e) => handleNewLines(e, field)),
);
_repliesWorker ??= ever(replied, (_) => onChanged?.call());
_attachmentsWorker ??= ever(this.attachments, (_) => onChanged?.call());
_editedWorker ??= ever(edited, (item) {
if (item != null) {
field.text = item.text?.val ?? '';
this.attachments.value =
item.attachments.map((e) => MapEntry(GlobalKey(), e)).toList();
replied.value =
item.repliesTo
.map((e) => e.original)
.nonNulls
.map((e) => Rx(e))
.toList();
} else {
field.text = '';
this.attachments.clear();
replied.clear();
}
onChanged?.call();
});
}