fluffychat/lib/widgets/avatar.dart

93 lines
2.5 KiB
Dart
Raw Normal View History

2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-10-26 16:50:34 +00:00
2020-09-07 15:08:01 +00:00
import 'package:cached_network_image/cached_network_image.dart';
2021-10-26 16:50:34 +00:00
import 'package:matrix/matrix.dart';
2020-01-01 18:10:13 +00:00
2021-10-26 16:50:34 +00:00
import 'package:fluffychat/utils/string_color.dart';
2020-01-01 18:10:13 +00:00
import 'matrix.dart';
class Avatar extends StatelessWidget {
2021-11-19 19:38:16 +00:00
final Uri? mxContent;
final String? name;
2020-01-01 18:10:13 +00:00
final double size;
2021-11-19 19:38:16 +00:00
final void Function()? onTap;
2020-03-13 20:42:05 +00:00
static const double defaultSize = 44;
2021-11-19 19:38:16 +00:00
final Client? client;
2021-11-13 17:56:34 +00:00
final double fontSize;
2020-01-01 18:10:13 +00:00
2021-11-20 09:42:23 +00:00
const Avatar({
2020-03-13 20:42:05 +00:00
this.mxContent,
2021-11-20 09:42:23 +00:00
this.name,
2020-03-13 20:42:05 +00:00
this.size = defaultSize,
this.onTap,
2021-01-20 19:27:09 +00:00
this.client,
2021-11-13 17:56:34 +00:00
this.fontSize = 18,
2021-11-19 19:38:16 +00:00
Key? key,
2020-03-13 20:42:05 +00:00
}) : super(key: key);
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2021-05-01 06:14:58 +00:00
final src = mxContent?.getThumbnail(
2021-01-20 19:27:09 +00:00
client ?? Matrix.of(context).client,
2020-01-01 18:10:13 +00:00
width: size * MediaQuery.of(context).devicePixelRatio,
height: size * MediaQuery.of(context).devicePixelRatio,
);
2020-05-13 13:58:59 +00:00
var fallbackLetters = '@';
2021-11-19 19:38:16 +00:00
final name = this.name;
if (name != null) {
if (name.runes.length >= 2) {
fallbackLetters = String.fromCharCodes(name.runes, 0, 2);
} else if (name.runes.length == 1) {
fallbackLetters = name;
}
2020-01-18 12:22:22 +00:00
}
final noPic = mxContent == null ||
mxContent.toString().isEmpty ||
mxContent.toString() == 'null';
final textWidget = Center(
child: Text(
fallbackLetters,
style: TextStyle(
2021-08-01 05:47:00 +00:00
color: noPic ? name?.darkColor : null,
2021-11-13 17:56:34 +00:00
fontSize: fontSize,
),
),
);
2020-10-28 06:35:38 +00:00
final borderRadius = BorderRadius.circular(size / 2);
return InkWell(
onTap: onTap,
2020-10-28 06:35:38 +00:00
borderRadius: borderRadius,
2022-07-07 10:14:28 +00:00
child: Container(
decoration: BoxDecoration(
border: Border.all(color: Theme.of(context).dividerColor),
borderRadius: borderRadius,
),
child: ClipRRect(
borderRadius: borderRadius,
child: Container(
width: size,
height: size,
color: noPic
? name?.lightColor
: Theme.of(context).secondaryHeaderColor,
child: noPic
? textWidget
: CachedNetworkImage(
imageUrl: src.toString(),
fit: BoxFit.cover,
width: size,
height: size,
placeholder: (c, s) => textWidget,
errorWidget: (c, s, d) => Stack(
children: [
textWidget,
],
),
),
2022-07-07 10:14:28 +00:00
),
),
),
2020-01-01 18:10:13 +00:00
);
}
}