@@ -89,6 +89,8 @@ class DraftChatController extends State<DraftChat>
89
89
90
90
ValueNotifier <bool > showEmojiPickerNotifier = ValueNotifier (false );
91
91
92
+ final ValueNotifier <Profile ?> _userProfile = ValueNotifier (null );
93
+
92
94
EmojiPickerType emojiPickerType = EmojiPickerType .keyboard;
93
95
94
96
final isSendingNotifier = ValueNotifier (false );
@@ -146,6 +148,9 @@ class DraftChatController extends State<DraftChat>
146
148
void initState () {
147
149
scrollController.addListener (_updateScrollController);
148
150
keyboardVisibilityController.onChange.listen (_keyboardListener);
151
+ WidgetsBinding .instance.addPostFrameCallback ((_) {
152
+ _getProfile ();
153
+ });
149
154
super .initState ();
150
155
}
151
156
@@ -157,6 +162,7 @@ class DraftChatController extends State<DraftChat>
157
162
focusSuggestionController.dispose ();
158
163
inputText.dispose ();
159
164
showEmojiPickerNotifier.dispose ();
165
+ _userProfile.dispose ();
160
166
super .dispose ();
161
167
}
162
168
@@ -166,6 +172,22 @@ class DraftChatController extends State<DraftChat>
166
172
Matrix .of (context).setActiveClient (c);
167
173
});
168
174
175
+ Future <String > _triggerTagGreetingMessage () async {
176
+ if (_userProfile.value == null ) {
177
+ return sendController.value.text;
178
+ } else {
179
+ final displayName = _userProfile.value? .displayName;
180
+ if (sendController.value.text.contains (displayName ?? '' ) == true ) {
181
+ return sendController.value.text.replaceAll (
182
+ "${displayName ?? '' }!" ,
183
+ presentationContact? .matrixId ?? '' ,
184
+ );
185
+ } else {
186
+ return sendController.value.text;
187
+ }
188
+ }
189
+ }
190
+
169
191
Future <void > sendText ({
170
192
OnRoomCreatedFailed onCreateRoomFailed,
171
193
}) async {
@@ -175,11 +197,12 @@ class DraftChatController extends State<DraftChat>
175
197
selection: const TextSelection .collapsed (offset: 0 ),
176
198
);
177
199
inputFocus.unfocus ();
200
+ final textEvent = await _triggerTagGreetingMessage ();
178
201
isSendingNotifier.value = true ;
179
202
_createRoom (
180
203
onRoomCreatedSuccess: (room) {
181
204
room.sendTextEvent (
182
- sendController.text ,
205
+ textEvent ,
183
206
);
184
207
},
185
208
onRoomCreatedFailed: onCreateRoomFailed,
@@ -206,12 +229,11 @@ class DraftChatController extends State<DraftChat>
206
229
final room = Matrix .of (context).client.getRoomById (success.roomId);
207
230
if (room != null ) {
208
231
onRoomCreatedSuccess? .call (room);
209
- final user = await _getProfile ();
210
232
context.go (
211
233
'/rooms/${room .id }/' ,
212
234
extra: ChatRouterInputArgument (
213
235
type: ChatRouterInputArgumentType .draft,
214
- data: user .displayName ??
236
+ data: _userProfile.value ? .displayName ??
215
237
presentationContact? .displayName ??
216
238
room.name,
217
239
),
@@ -361,26 +383,28 @@ class DraftChatController extends State<DraftChat>
361
383
}
362
384
363
385
Future <void > handleDraftAction (BuildContext context) async {
364
- Profile ? profile;
365
- try {
366
- profile = await _getProfile ();
367
- } catch (e) {
368
- Logs ().e ('Error getting profile: $e ' );
369
- }
370
386
inputFocus.requestFocus ();
371
387
sendController.value = TextEditingValue (
372
388
text: L10n .of (context)! .draftChatHookPhrase (
373
- profile? .displayName ?? presentationContact? .displayName ?? '' ,
389
+ _userProfile.value? .displayName ??
390
+ presentationContact? .displayName ??
391
+ '' ,
374
392
),
375
393
);
376
394
onInputBarChanged (sendController.text);
377
395
}
378
396
379
- Future <Profile > _getProfile () async {
380
- return await Matrix .of (context).client.getProfileFromUserId (
381
- presentationContact! .matrixId! ,
382
- getFromRooms: false ,
383
- );
397
+ Future <void > _getProfile () async {
398
+ try {
399
+ final profile = await Matrix .of (context).client.getProfileFromUserId (
400
+ presentationContact! .matrixId! ,
401
+ getFromRooms: false ,
402
+ );
403
+ _userProfile.value = profile;
404
+ } catch (e) {
405
+ Logs ().e ('Error _getProfile profile: $e ' );
406
+ _userProfile.value = null ;
407
+ }
384
408
}
385
409
386
410
void hideKeyboardChatScreen () {
0 commit comments