2020-04-25 20:38:21 +03:00
|
|
|
part of '../main.dart';
|
|
|
|
|
|
|
|
class EntitiesCard extends StatelessWidget {
|
2020-04-27 01:46:37 +03:00
|
|
|
final EntitiesCardData card;
|
2020-04-25 20:38:21 +03:00
|
|
|
|
|
|
|
const EntitiesCard({Key key, this.card}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
List<EntityWrapper> entitiesToShow = card.getEntitiesToShow();
|
|
|
|
if (entitiesToShow.isEmpty && !card.showEmpty) {
|
|
|
|
return Container(height: 0.0, width: 0.0,);
|
|
|
|
}
|
|
|
|
List<Widget> body = [];
|
|
|
|
Widget headerSwitch;
|
|
|
|
if (card.showHeaderToggle) {
|
|
|
|
bool headerToggleVal = entitiesToShow.any((EntityWrapper en){ return en.entity.state == EntityState.on; });
|
|
|
|
List<String> entitiesToToggle = entitiesToShow.where((EntityWrapper enw) {
|
|
|
|
return <String>["switch", "light", "automation", "input_boolean"].contains(enw.entity.domain);
|
|
|
|
}).map((EntityWrapper en) {
|
|
|
|
return en.entity.entityId;
|
|
|
|
}).toList();
|
|
|
|
headerSwitch = Switch(
|
2020-04-25 21:23:26 +03:00
|
|
|
value: headerToggleVal,
|
|
|
|
onChanged: (val) {
|
|
|
|
if (entitiesToToggle.isNotEmpty) {
|
|
|
|
ConnectionManager().callService(
|
|
|
|
domain: "homeassistant",
|
|
|
|
service: val ? "turn_on" : "turn_off",
|
|
|
|
entityId: entitiesToToggle
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2020-04-25 20:38:21 +03:00
|
|
|
}
|
|
|
|
body.add(
|
|
|
|
CardHeader(
|
2020-04-27 01:46:37 +03:00
|
|
|
name: card.title,
|
2020-04-25 20:38:21 +03:00
|
|
|
trailing: headerSwitch,
|
2020-04-25 21:23:26 +03:00
|
|
|
emptyPadding: Sizes.rowPadding,
|
|
|
|
leading: card.icon != null ? Icon(
|
|
|
|
MaterialDesignIcons.getIconDataFromIconName(card.icon),
|
|
|
|
size: Sizes.iconSize,
|
|
|
|
color: Theme.of(context).textTheme.headline.color
|
|
|
|
) : null,
|
2020-04-25 20:38:21 +03:00
|
|
|
)
|
|
|
|
);
|
|
|
|
body.addAll(
|
|
|
|
entitiesToShow.map((EntityWrapper entity) {
|
|
|
|
return Padding(
|
|
|
|
padding: EdgeInsets.fromLTRB(0.0, 4.0, 0.0, 4.0),
|
|
|
|
child: EntityModel(
|
|
|
|
entityWrapper: entity,
|
|
|
|
handleTap: true,
|
|
|
|
child: entity.entity.buildDefaultWidget(context)
|
|
|
|
),
|
|
|
|
);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
return CardWrapper(
|
|
|
|
child: Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
right: Sizes.rightWidgetPadding,
|
|
|
|
left: Sizes.leftWidgetPadding,
|
|
|
|
bottom: Sizes.rowPadding,
|
|
|
|
),
|
2020-04-27 01:46:37 +03:00
|
|
|
child: Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
children: body
|
|
|
|
)
|
2020-04-25 20:38:21 +03:00
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|