Skip to content

Commit 6ec60ec

Browse files
nqhhdevTe-Z
authored andcommitted
TW-1777: Changing greeting message: include tag in greeting message (#1881)
1 parent a01f75b commit 6ec60ec

File tree

4 files changed

+45
-17
lines changed

4 files changed

+45
-17
lines changed

lib/pages/chat/events/html_message.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ class HtmlMessage extends StatelessWidget {
180180
final user = room.getUser(identifier);
181181
final displayName = user?.displayName ?? identifier;
182182
return MentionedUser(
183-
displayName: displayName.displayMentioned,
183+
displayName:
184+
!room.isDirectChat ? displayName.displayMentioned : displayName,
184185
url: url,
185186
onTap: !room.isDirectChat ? onTap : null,
186187
textStyle: !room.isDirectChat

lib/pages/chat/input_bar/input_bar.dart

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class InputBar extends StatefulWidget {
4141
final ValueKey? typeAheadKey;
4242
final ValueNotifier<bool>? showEmojiPickerNotifier;
4343
final SuggestionsController<Map<String, String?>>? suggestionsController;
44+
final bool isDraftChat;
4445

4546
const InputBar({
4647
this.room,
@@ -60,6 +61,7 @@ class InputBar extends StatefulWidget {
6061
this.rawKeyboardFocusNode,
6162
this.suggestionsController,
6263
this.showEmojiPickerNotifier,
64+
this.isDraftChat = false,
6365
super.key,
6466
});
6567

@@ -261,7 +263,7 @@ class _InputBarState extends State<InputBar> with PasteImageMixin {
261263
}
262264

263265
void insertSuggestion(Map<String, String?> suggestion) {
264-
if (widget.room!.isDirectChat) return;
266+
if (widget.room!.isDirectChat && !widget.isDraftChat) return;
265267
final replaceText = widget.controller!.text
266268
.substring(0, widget.controller!.selection.baseOffset);
267269
var startText = '';

lib/pages/chat_draft/draft_chat.dart

+39-15
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ class DraftChatController extends State<DraftChat>
8989

9090
ValueNotifier<bool> showEmojiPickerNotifier = ValueNotifier(false);
9191

92+
final ValueNotifier<Profile?> _userProfile = ValueNotifier(null);
93+
9294
EmojiPickerType emojiPickerType = EmojiPickerType.keyboard;
9395

9496
final isSendingNotifier = ValueNotifier(false);
@@ -146,6 +148,9 @@ class DraftChatController extends State<DraftChat>
146148
void initState() {
147149
scrollController.addListener(_updateScrollController);
148150
keyboardVisibilityController.onChange.listen(_keyboardListener);
151+
WidgetsBinding.instance.addPostFrameCallback((_) {
152+
_getProfile();
153+
});
149154
super.initState();
150155
}
151156

@@ -157,6 +162,7 @@ class DraftChatController extends State<DraftChat>
157162
focusSuggestionController.dispose();
158163
inputText.dispose();
159164
showEmojiPickerNotifier.dispose();
165+
_userProfile.dispose();
160166
super.dispose();
161167
}
162168

@@ -166,6 +172,22 @@ class DraftChatController extends State<DraftChat>
166172
Matrix.of(context).setActiveClient(c);
167173
});
168174

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+
169191
Future<void> sendText({
170192
OnRoomCreatedFailed onCreateRoomFailed,
171193
}) async {
@@ -175,11 +197,12 @@ class DraftChatController extends State<DraftChat>
175197
selection: const TextSelection.collapsed(offset: 0),
176198
);
177199
inputFocus.unfocus();
200+
final textEvent = await _triggerTagGreetingMessage();
178201
isSendingNotifier.value = true;
179202
_createRoom(
180203
onRoomCreatedSuccess: (room) {
181204
room.sendTextEvent(
182-
sendController.text,
205+
textEvent,
183206
);
184207
},
185208
onRoomCreatedFailed: onCreateRoomFailed,
@@ -206,12 +229,11 @@ class DraftChatController extends State<DraftChat>
206229
final room = Matrix.of(context).client.getRoomById(success.roomId);
207230
if (room != null) {
208231
onRoomCreatedSuccess?.call(room);
209-
final user = await _getProfile();
210232
context.go(
211233
'/rooms/${room.id}/',
212234
extra: ChatRouterInputArgument(
213235
type: ChatRouterInputArgumentType.draft,
214-
data: user.displayName ??
236+
data: _userProfile.value?.displayName ??
215237
presentationContact?.displayName ??
216238
room.name,
217239
),
@@ -361,26 +383,28 @@ class DraftChatController extends State<DraftChat>
361383
}
362384

363385
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-
}
370386
inputFocus.requestFocus();
371387
sendController.value = TextEditingValue(
372388
text: L10n.of(context)!.draftChatHookPhrase(
373-
profile?.displayName ?? presentationContact?.displayName ?? '',
389+
_userProfile.value?.displayName ??
390+
presentationContact?.displayName ??
391+
'',
374392
),
375393
);
376394
onInputBarChanged(sendController.text);
377395
}
378396

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+
}
384408
}
385409

386410
void hideKeyboardChatScreen() {

lib/pages/chat_draft/draft_chat_input_row.dart

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ class DraftChatInputRow extends StatelessWidget {
110110
),
111111
onChanged: onInputBarChanged,
112112
focusSuggestionController: focusSuggestionController,
113+
isDraftChat: true,
113114
);
114115
}
115116
}

0 commit comments

Comments
 (0)