-
Notifications
You must be signed in to change notification settings - Fork 779
/
Copy pathcustomization.dart
467 lines (443 loc) · 15 KB
/
customization.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import 'package:flutter/cupertino.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import 'package:syncfusion_flutter_chat/chat.dart';
import '../../model/model.dart';
import '../../model/sample_view.dart';
import 'helper.dart';
class ChatCustomizationSample extends SampleView {
const ChatCustomizationSample(Key key) : super(key: key);
@override
State createState() => ChatCustomizationSampleState();
}
class ChatCustomizationSampleState extends SampleViewState {
late List<ChatMessageExt> _messages;
late TextEditingController _textController;
late int _messageCount;
Widget _buildBubbleHeader(
BuildContext context,
int index,
ChatMessage message,
) {
final String? previousAuthor =
index == 0 ? null : _messages[index - 1].author.id;
final String currentAuthor = message.author.id;
if (previousAuthor == null || previousAuthor != currentAuthor) {
// Space between two message group.
return const SizedBox(height: 5);
} else {
return const SizedBox(width: 0, height: 0);
}
}
Widget _buildBubbleAvatar(
BuildContext context,
int index,
ChatMessage message,
) {
final SampleModel model = SampleModel.instance;
return GestureDetector(
onTap: () {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
content: Column(
mainAxisSize: MainAxisSize.min,
children: [
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
CircleAvatar(
maxRadius: 30,
backgroundImage: message.author.avatar,
),
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
message.author.name,
style: TextStyle(
color: model.primaryColor,
fontWeight: FontWeight.bold,
fontSize: 20,
),
),
const Padding(
padding: EdgeInsets.only(top: 8.0),
child: Row(
children: [
Padding(
padding: EdgeInsets.only(right: 8.0),
child: Icon(Icons.chat_outlined, size: 15),
),
Padding(
padding: EdgeInsets.only(right: 8.0),
child: Icon(Icons.phone_outlined, size: 15),
),
Padding(
padding: EdgeInsets.only(right: 8.0),
child: Icon(
Icons.videocam_outlined,
size: 15,
),
),
],
),
),
],
),
),
],
),
const Padding(
padding: EdgeInsets.only(top: 5),
child: Divider(height: 5),
),
Padding(
padding: const EdgeInsets.only(top: 10),
child: Column(
children: [
Row(
children: [
Icon(
Icons.phone,
size: 15,
color: model.primaryColor,
),
const Padding(
padding: EdgeInsets.only(left: 5),
child: Text('1234567890'),
),
],
),
Padding(
padding: const EdgeInsets.only(top: 5),
child: Row(
children: [
Icon(
Icons.mail,
size: 15,
color: model.primaryColor,
),
Padding(
padding: const EdgeInsets.only(left: 5),
child: Text(
'${message.author.name.toLowerCase()}@gmail.com',
),
),
],
),
),
],
),
),
],
),
);
},
);
},
child: CircleAvatar(backgroundImage: message.author.avatar),
);
}
BorderRadius _borderRadius(int index, ChatMessage message) {
const Radius maxRadius = Radius.circular(7.5);
const Radius minRadius = Radius.zero;
final bool isFirstMessageFromAuthor = _isFirstMessageFromAuthor(
index,
message,
);
final bool isLastMessageFromAuthor =
!isFirstMessageFromAuthor && _isLastMessageFromAuthor(index, message);
final bool isSameAuthorMessage =
!isFirstMessageFromAuthor && !isLastMessageFromAuthor;
if (_isOutgoingMessage(message)) {
return BorderRadius.only(
topLeft: maxRadius,
bottomLeft: maxRadius,
topRight:
isLastMessageFromAuthor || isSameAuthorMessage
? minRadius
: maxRadius,
bottomRight:
isFirstMessageFromAuthor || isSameAuthorMessage
? minRadius
: maxRadius,
);
} else {
return BorderRadius.only(
topLeft:
isLastMessageFromAuthor || isSameAuthorMessage
? minRadius
: maxRadius,
bottomLeft:
isFirstMessageFromAuthor || isSameAuthorMessage
? minRadius
: maxRadius,
topRight: maxRadius,
bottomRight: maxRadius,
);
}
}
bool _isOutgoingMessage(ChatMessage message) {
final String currentAuthor = message.author.id;
return currentAuthor == 'Felipe';
}
bool _isFirstMessageFromAuthor(int index, ChatMessage message) {
final String? previousAuthor =
index == 0 ? null : _messages[index - 1].author.id;
final String currentAuthor = message.author.id;
return previousAuthor == null || previousAuthor != currentAuthor;
}
bool _isLastMessageFromAuthor(int index, ChatMessage message) {
final String currentAuthor = message.author.id;
final String? nextAuthor =
index == _messageCount - 1 ? null : _messages[index + 1].author.id;
return nextAuthor == null || nextAuthor != currentAuthor;
}
Widget _buildBubbleContent(
BuildContext context,
int index,
ChatMessage message,
) {
return DecoratedBox(
decoration: BoxDecoration(
color:
_isOutgoingMessage(message)
? model.themeData.colorScheme.primary
: model.themeData.colorScheme.secondaryContainer.withValues(
alpha: 0.5,
),
borderRadius: _borderRadius(index, message),
),
child: Padding(
padding: const EdgeInsets.only(left: 10, top: 5, right: 10, bottom: 10),
child: _buildContentLayout(index, message),
),
);
}
Widget _buildContentLayout(int index, ChatMessage message) {
final bool isOutgoingMessage = _isOutgoingMessage(message);
final String formattedTime = DateFormat('hh:mm a').format(message.time);
return Stack(
alignment: Alignment.bottomRight,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
if (!isOutgoingMessage && _isFirstMessageFromAuthor(index, message))
Text(
message.author.name,
style: TextStyle(
color: model.primaryColor,
fontWeight: FontWeight.w500,
),
),
Padding(
padding: const EdgeInsets.only(bottom: 10.0),
child: Row(
crossAxisAlignment: CrossAxisAlignment.end,
mainAxisSize: MainAxisSize.min,
children: [
Flexible(child: _buildText(message, isOutgoingMessage)),
],
),
),
],
),
Transform.translate(
offset: const Offset(0, 7),
child: Text(
formattedTime,
style: TextStyle(
color:
isOutgoingMessage
? model.themeData.colorScheme.surface.withValues(
alpha: 0.5,
)
: model.themeData.colorScheme.onSurface.withValues(
alpha: 0.5,
),
fontSize: 10,
fontWeight: FontWeight.w400,
),
),
),
],
);
}
Widget _buildText(ChatMessage message, bool isOutgoingMessage) {
final ChatMessageExt chatMessage = message as ChatMessageExt;
final String text = chatMessage.text;
final TextStyle textStyle = TextStyle(
color:
isOutgoingMessage
? model.themeData.colorScheme.surface
: model.themeData.colorScheme.onSurface,
);
Widget result;
if (chatMessage.link != null) {
result = Theme(
data: model.themeData.copyWith(
textSelectionTheme: const TextSelectionThemeData(
selectionColor: Color.fromRGBO(33, 146, 239, 0.4),
),
),
child: SelectableText.rich(
TextSpan(
children: [
TextSpan(text: text, style: textStyle),
TextSpan(
text: chatMessage.link,
recognizer: TapGestureRecognizer()..onTap = () => launchURL(),
style: TextStyle(
decoration: TextDecoration.underline,
decorationColor:
model.themeData.useMaterial3
? Colors.lightBlue
: Colors.white,
color:
model.themeData.useMaterial3
? Colors.lightBlue
: Colors.white,
),
),
],
),
),
);
} else {
result = Theme(
data: model.themeData.copyWith(
textSelectionTheme: const TextSelectionThemeData(
selectionColor: Color.fromRGBO(33, 146, 239, 0.4),
),
),
child: SelectableText(text, style: textStyle),
);
}
return result;
}
Widget _buildComposer(BuildContext context) {
return TextField(
maxLines: 5,
minLines: 1,
controller: _textController,
decoration: InputDecoration(
filled: true,
fillColor: model.themeData.colorScheme.primaryContainer,
border: OutlineInputBorder(
borderSide: BorderSide.none,
borderRadius: BorderRadius.circular(32),
),
suffixIcon: _buildSendButton(),
hintText: 'Type a message',
contentPadding: const EdgeInsets.symmetric(
horizontal: 20,
vertical: 16,
),
),
);
}
AnimatedScale _buildSendButton() {
return AnimatedScale(
scale: _textController.text.trim().isNotEmpty ? 1.0 : 0.0,
duration: const Duration(milliseconds: 150),
child: Padding(
padding: const EdgeInsets.all(5.0),
child: SizedBox(
width: 40,
height: 40,
child: FloatingActionButton(
elevation: 0,
hoverElevation: 0,
highlightElevation: 0,
shape: const CircleBorder(),
backgroundColor: model.primaryColor,
onPressed: _handleSendButtonClicked,
child: Icon(
CupertinoIcons.paperplane,
color: model.themeData.colorScheme.surface,
),
),
),
),
);
}
void _handleSendButtonClicked() {
setState(() {
_messages.add(
ChatMessageExt(
text: _textController.text,
time: DateTime.now(),
author: const ChatAuthor(
id: 'Felipe',
name: 'Felipe',
avatar: AssetImage('images/People_Circle13.png'),
),
),
);
_messageCount = _messages.length;
_textController.clear();
});
}
void _handleTextChange() {
setState(() {});
}
@override
void initState() {
_textController = TextEditingController()..addListener(_handleTextChange);
_messages = chatCustomizationData(customTime: true);
_messageCount = _messages.length;
super.initState();
}
@override
Widget build(BuildContext context) {
final double availableWidth = MediaQuery.of(context).size.width;
const double maxExpectedWidth = 750;
final bool canCenter = availableWidth > maxExpectedWidth;
return Padding(
padding: const EdgeInsets.all(10.0),
child: Center(
child: SizedBox(
width: canCenter ? maxExpectedWidth : availableWidth,
child: SfChat(
messages: _messages,
outgoingUser: 'Felipe',
incomingMessageSettings: const ChatMessageSettings(
showAuthorName: false,
showTimestamp: false,
headerPadding: EdgeInsets.zero,
padding: EdgeInsets.zero,
margin: EdgeInsets.symmetric(vertical: 0.5),
),
outgoingMessageSettings: const ChatMessageSettings(
showAuthorName: false,
showTimestamp: false,
showAuthorAvatar: false,
headerPadding: EdgeInsets.zero,
padding: EdgeInsets.zero,
margin: EdgeInsets.symmetric(vertical: 0.5),
),
messageHeaderBuilder: _buildBubbleHeader,
messageAvatarBuilder: _buildBubbleAvatar,
messageContentBuilder: _buildBubbleContent,
composer: ChatComposer.builder(builder: _buildComposer),
),
),
),
);
}
@override
void dispose() {
_messages.clear();
_textController
..removeListener(_handleTextChange)
..dispose();
super.dispose();
}
}