2018-10-27 14:27:41 +03:00
|
|
|
part of '../main.dart';
|
|
|
|
|
|
|
|
class EntityIcon extends StatelessWidget {
|
2018-11-14 19:52:17 +02:00
|
|
|
|
|
|
|
final EdgeInsetsGeometry padding;
|
2019-02-21 16:32:55 +02:00
|
|
|
final double size;
|
|
|
|
final Color color;
|
2018-11-14 19:52:17 +02:00
|
|
|
|
2019-02-21 16:32:55 +02:00
|
|
|
const EntityIcon({Key key, this.color, this.size: Sizes.iconSize, this.padding: const EdgeInsets.fromLTRB(
|
2018-11-14 19:52:17 +02:00
|
|
|
Sizes.leftWidgetPadding, 0.0, 12.0, 0.0)}) : super(key: key);
|
|
|
|
|
2019-02-21 16:32:55 +02:00
|
|
|
int getDefaultIconByEntityId(String entityId, String deviceClass, String state) {
|
|
|
|
String domain = entityId.split(".")[0];
|
|
|
|
String iconNameByDomain = MaterialDesignIcons.defaultIconsByDomains["$domain.$state"] ?? MaterialDesignIcons.defaultIconsByDomains["$domain"];
|
|
|
|
String iconNameByDeviceClass;
|
|
|
|
if (deviceClass != null) {
|
|
|
|
iconNameByDeviceClass = MaterialDesignIcons.defaultIconsByDeviceClass["$domain.$deviceClass.$state"] ?? MaterialDesignIcons.defaultIconsByDeviceClass["$domain.$deviceClass"];
|
|
|
|
}
|
|
|
|
String iconName = iconNameByDeviceClass ?? iconNameByDomain;
|
|
|
|
if (iconName != null) {
|
|
|
|
return MaterialDesignIcons.iconsDataMap[iconName] ?? 0;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget buildIcon(EntityWrapper data, Color color) {
|
|
|
|
if (data == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (data.entity.entityPicture != null) {
|
|
|
|
return CircleAvatar(
|
|
|
|
radius: size/2,
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
backgroundImage: CachedNetworkImageProvider(
|
|
|
|
"$homeAssistantWebHost${data.entity.entityPicture}",
|
|
|
|
),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
String iconName = data.icon;
|
|
|
|
int iconCode = 0;
|
|
|
|
if (iconName.length > 0) {
|
|
|
|
iconCode = MaterialDesignIcons.getIconCodeByIconName(iconName);
|
|
|
|
} else {
|
|
|
|
iconCode = getDefaultIconByEntityId(data.entity.entityId,
|
|
|
|
data.entity.deviceClass, data.entity.state); //
|
|
|
|
}
|
|
|
|
return Icon(
|
|
|
|
IconData(iconCode, fontFamily: 'Material Design Icons'),
|
|
|
|
size: size,
|
|
|
|
color: color,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 14:27:41 +03:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2018-11-24 00:37:55 +02:00
|
|
|
final EntityWrapper entityWrapper = EntityModel.of(context).entityWrapper;
|
|
|
|
return Padding(
|
|
|
|
padding: padding,
|
2019-02-21 16:32:55 +02:00
|
|
|
child: buildIcon(
|
2018-11-24 00:37:55 +02:00
|
|
|
entityWrapper,
|
2019-02-21 16:32:55 +02:00
|
|
|
color ?? EntityColor.stateColor(entityWrapper.entity.state)
|
2018-10-27 14:27:41 +03:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|