2020-10-15 13:51:24 +00:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
2020-10-15 13:51:24 +00:00
|
|
|
import '../utils/string_color.dart';
|
2020-01-01 18:10:13 +00:00
|
|
|
import 'matrix.dart';
|
|
|
|
|
|
|
|
class Avatar extends StatelessWidget {
|
2020-04-28 12:11:56 +00:00
|
|
|
final Uri mxContent;
|
2020-01-18 12:22:22 +00:00
|
|
|
final String name;
|
2020-01-01 18:10:13 +00:00
|
|
|
final double size;
|
2020-01-17 10:08:12 +00:00
|
|
|
final Function onTap;
|
2020-03-13 20:42:05 +00:00
|
|
|
static const double defaultSize = 44;
|
2020-01-01 18:10:13 +00:00
|
|
|
|
2020-03-13 20:42:05 +00:00
|
|
|
const Avatar(
|
|
|
|
this.mxContent,
|
|
|
|
this.name, {
|
|
|
|
this.size = defaultSize,
|
|
|
|
this.onTap,
|
|
|
|
Key key,
|
|
|
|
}) : super(key: key);
|
2020-01-01 18:10:13 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-05-13 13:58:59 +00:00
|
|
|
var thumbnail = mxContent?.getThumbnail(
|
2020-01-01 18:10:13 +00:00
|
|
|
Matrix.of(context).client,
|
|
|
|
width: size * MediaQuery.of(context).devicePixelRatio,
|
|
|
|
height: size * MediaQuery.of(context).devicePixelRatio,
|
|
|
|
);
|
2020-05-13 13:58:59 +00:00
|
|
|
final src = thumbnail;
|
|
|
|
var fallbackLetters = '@';
|
2020-10-19 14:56:40 +00:00
|
|
|
if ((name?.runes?.length ?? 0) >= 2) {
|
2020-10-17 07:29:27 +00:00
|
|
|
fallbackLetters = String.fromCharCodes(name.runes, 0, 2);
|
2020-10-19 14:56:40 +00:00
|
|
|
} else if ((name?.runes?.length ?? 0) == 1) {
|
2020-01-18 12:22:22 +00:00
|
|
|
fallbackLetters = name;
|
|
|
|
}
|
2020-10-17 07:29:27 +00:00
|
|
|
final textWidget = Center(
|
|
|
|
child: Text(
|
|
|
|
fallbackLetters,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontSize: 18,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2020-05-01 10:14:49 +00:00
|
|
|
final noPic = mxContent == null || mxContent.toString().isEmpty;
|
2020-01-17 10:08:12 +00:00
|
|
|
return InkWell(
|
|
|
|
onTap: onTap,
|
2020-10-17 07:29:27 +00:00
|
|
|
child: ClipRRect(
|
|
|
|
borderRadius: BorderRadius.circular(size / 2),
|
|
|
|
child: Container(
|
|
|
|
width: size,
|
|
|
|
height: size,
|
|
|
|
color: noPic
|
|
|
|
? name?.lightColor ?? Theme.of(context).secondaryHeaderColor
|
|
|
|
: Theme.of(context).secondaryHeaderColor,
|
|
|
|
child: noPic
|
|
|
|
? textWidget
|
|
|
|
: CachedNetworkImage(
|
|
|
|
imageUrl: src,
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
width: size,
|
|
|
|
height: size,
|
|
|
|
placeholder: (c, s) => Stack(
|
|
|
|
children: [
|
|
|
|
Center(child: CircularProgressIndicator(strokeWidth: 2)),
|
|
|
|
textWidget,
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2020-01-17 10:08:12 +00:00
|
|
|
),
|
2020-01-01 18:10:13 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|