Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
eee8f21e76 | |||
8ce3560d8d | |||
9e97bac85b | |||
4a0b447f00 | |||
bc4969dae8 | |||
5025b3d384 |
@ -1,486 +0,0 @@
|
|||||||
part of 'main.dart';
|
|
||||||
|
|
||||||
class Entity {
|
|
||||||
static const STATE_ICONS_COLORS = {
|
|
||||||
"on": Colors.amber,
|
|
||||||
"off": Color.fromRGBO(68, 115, 158, 1.0),
|
|
||||||
"unavailable": Colors.black12,
|
|
||||||
"unknown": Colors.black12,
|
|
||||||
"playing": Colors.amber
|
|
||||||
};
|
|
||||||
static const RIGHT_WIDGET_PADDING = 14.0;
|
|
||||||
static const LEFT_WIDGET_PADDING = 8.0;
|
|
||||||
static const EXTENDED_WIDGET_HEIGHT = 50.0;
|
|
||||||
static const WIDGET_HEIGHT = 34.0;
|
|
||||||
static const ICON_SIZE = 28.0;
|
|
||||||
static const STATE_FONT_SIZE = 16.0;
|
|
||||||
static const NAME_FONT_SIZE = 16.0;
|
|
||||||
static const SMALL_FONT_SIZE = 14.0;
|
|
||||||
static const INPUT_WIDTH = 160.0;
|
|
||||||
|
|
||||||
Map _attributes;
|
|
||||||
String _domain;
|
|
||||||
String _entityId;
|
|
||||||
String _state;
|
|
||||||
DateTime _lastUpdated;
|
|
||||||
|
|
||||||
String get displayName =>
|
|
||||||
_attributes["friendly_name"] ?? (_attributes["name"] ?? "_");
|
|
||||||
String get domain => _domain;
|
|
||||||
String get entityId => _entityId;
|
|
||||||
String get state => _state;
|
|
||||||
set state(value) => _state = value;
|
|
||||||
|
|
||||||
String get deviceClass => _attributes["device_class"] ?? null;
|
|
||||||
bool get isView =>
|
|
||||||
(_domain == "group") &&
|
|
||||||
(_attributes != null ? _attributes["view"] ?? false : false);
|
|
||||||
bool get isGroup => _domain == "group";
|
|
||||||
String get icon => _attributes["icon"] ?? "";
|
|
||||||
bool get isOn => state == "on";
|
|
||||||
String get entityPicture => _attributes["entity_picture"];
|
|
||||||
String get unitOfMeasurement => _attributes["unit_of_measurement"] ?? "";
|
|
||||||
List get childEntities => _attributes["entity_id"] ?? [];
|
|
||||||
String get lastUpdated => _getLastUpdatedFormatted();
|
|
||||||
|
|
||||||
Entity(Map rawData) {
|
|
||||||
update(rawData);
|
|
||||||
}
|
|
||||||
|
|
||||||
void update(Map rawData) {
|
|
||||||
_attributes = rawData["attributes"] ?? {};
|
|
||||||
_domain = rawData["entity_id"].split(".")[0];
|
|
||||||
_entityId = rawData["entity_id"];
|
|
||||||
_state = rawData["state"];
|
|
||||||
_lastUpdated = DateTime.tryParse(rawData["last_updated"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
String _getLastUpdatedFormatted() {
|
|
||||||
if (_lastUpdated == null) {
|
|
||||||
return "-";
|
|
||||||
} else {
|
|
||||||
DateTime now = DateTime.now();
|
|
||||||
Duration d = now.difference(_lastUpdated);
|
|
||||||
String text;
|
|
||||||
int v;
|
|
||||||
if (d.inDays == 0) {
|
|
||||||
if (d.inHours == 0) {
|
|
||||||
if (d.inMinutes == 0) {
|
|
||||||
text = "seconds ago";
|
|
||||||
v = d.inSeconds;
|
|
||||||
} else {
|
|
||||||
text = "minutes ago";
|
|
||||||
v = d.inMinutes;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
text = "hours ago";
|
|
||||||
v = d.inHours;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
text = "days ago";
|
|
||||||
v = d.inDays;
|
|
||||||
}
|
|
||||||
return "$v $text";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void openEntityPage() {
|
|
||||||
eventBus.fire(new ShowEntityPageEvent(this));
|
|
||||||
}
|
|
||||||
|
|
||||||
void sendNewState(newState) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget buildWidget(bool inCard, BuildContext context) {
|
|
||||||
return SizedBox(
|
|
||||||
height: Entity.WIDGET_HEIGHT,
|
|
||||||
child: Row(
|
|
||||||
children: <Widget>[
|
|
||||||
GestureDetector(
|
|
||||||
child: _buildIconWidget(),
|
|
||||||
onTap: inCard ? openEntityPage : null,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: GestureDetector(
|
|
||||||
child: _buildNameWidget(),
|
|
||||||
onTap: inCard ? openEntityPage : null,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
_buildActionWidget(inCard, context)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget buildAdditionalWidget() {
|
|
||||||
return _buildLastUpdatedWidget();
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildIconWidget() {
|
|
||||||
return Padding(
|
|
||||||
padding: EdgeInsets.fromLTRB(Entity.LEFT_WIDGET_PADDING, 0.0, 12.0, 0.0),
|
|
||||||
child: MaterialDesignIcons.createIconWidgetFromEntityData(
|
|
||||||
this,
|
|
||||||
Entity.ICON_SIZE,
|
|
||||||
Entity.STATE_ICONS_COLORS[_state] ?? Colors.blueGrey),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildLastUpdatedWidget() {
|
|
||||||
return Padding(
|
|
||||||
padding: EdgeInsets.fromLTRB(
|
|
||||||
Entity.LEFT_WIDGET_PADDING, Entity.SMALL_FONT_SIZE, 0.0, 0.0),
|
|
||||||
child: Text(
|
|
||||||
'${this.lastUpdated}',
|
|
||||||
textAlign: TextAlign.left,
|
|
||||||
style:
|
|
||||||
TextStyle(fontSize: Entity.SMALL_FONT_SIZE, color: Colors.black26),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildNameWidget() {
|
|
||||||
return Padding(
|
|
||||||
padding: EdgeInsets.only(right: 10.0),
|
|
||||||
child: Text(
|
|
||||||
"${this.displayName}",
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
softWrap: false,
|
|
||||||
style: TextStyle(fontSize: Entity.NAME_FONT_SIZE),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return Padding(
|
|
||||||
padding:
|
|
||||||
EdgeInsets.fromLTRB(0.0, 0.0, Entity.RIGHT_WIDGET_PADDING, 0.0),
|
|
||||||
child: GestureDetector(
|
|
||||||
child: Text(
|
|
||||||
"$_state${this.unitOfMeasurement}",
|
|
||||||
textAlign: TextAlign.right,
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: Entity.STATE_FONT_SIZE,
|
|
||||||
)),
|
|
||||||
onTap: openEntityPage,
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class SwitchEntity extends Entity {
|
|
||||||
SwitchEntity(Map rawData) : super(rawData);
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(
|
|
||||||
_domain, (newValue as bool) ? "turn_on" : "turn_off", entityId, null));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return Switch(
|
|
||||||
value: this.isOn,
|
|
||||||
onChanged: ((switchState) {
|
|
||||||
sendNewState(switchState);
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class ButtonEntity extends Entity {
|
|
||||||
ButtonEntity(Map rawData) : super(rawData);
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_domain, "turn_on", _entityId, null));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return FlatButton(
|
|
||||||
onPressed: (() {
|
|
||||||
sendNewState(null);
|
|
||||||
}),
|
|
||||||
child: Text(
|
|
||||||
"EXECUTE",
|
|
||||||
textAlign: TextAlign.right,
|
|
||||||
style:
|
|
||||||
new TextStyle(fontSize: Entity.STATE_FONT_SIZE, color: Colors.blue),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
// SLIDER
|
|
||||||
//
|
|
||||||
class SliderEntity extends Entity {
|
|
||||||
int _multiplier = 1;
|
|
||||||
|
|
||||||
double get minValue => _attributes["min"] ?? 0.0;
|
|
||||||
double get maxValue => _attributes["max"] ?? 100.0;
|
|
||||||
double get valueStep => _attributes["step"] ?? 1.0;
|
|
||||||
double get doubleState => double.tryParse(_state) ?? 0.0;
|
|
||||||
|
|
||||||
SliderEntity(Map rawData) : super(rawData) {
|
|
||||||
if (valueStep < 1) {
|
|
||||||
_multiplier = 10;
|
|
||||||
} else if (valueStep < 0.1) {
|
|
||||||
_multiplier = 100;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_domain, "set_value", _entityId,
|
|
||||||
{"value": "${newValue.toString()}"}));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return Container(
|
|
||||||
width: 200.0,
|
|
||||||
child: Row(
|
|
||||||
children: <Widget>[
|
|
||||||
Expanded(
|
|
||||||
child: Slider(
|
|
||||||
min: this.minValue * _multiplier,
|
|
||||||
max: this.maxValue * _multiplier,
|
|
||||||
value: (this.doubleState <= this.maxValue) &&
|
|
||||||
(this.doubleState >= this.minValue)
|
|
||||||
? this.doubleState * _multiplier
|
|
||||||
: this.minValue * _multiplier,
|
|
||||||
onChanged: (value) {
|
|
||||||
eventBus.fire(new StateChangedEvent(_entityId,
|
|
||||||
(value.roundToDouble() / _multiplier).toString(), true));
|
|
||||||
},
|
|
||||||
onChangeEnd: (value) {
|
|
||||||
sendNewState(value.roundToDouble() / _multiplier);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(right: Entity.RIGHT_WIDGET_PADDING),
|
|
||||||
child: Text("$_state${this.unitOfMeasurement}",
|
|
||||||
textAlign: TextAlign.right,
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: Entity.STATE_FONT_SIZE,
|
|
||||||
)),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
// DATETIME
|
|
||||||
//
|
|
||||||
|
|
||||||
class DateTimeEntity extends Entity {
|
|
||||||
bool get hasDate => _attributes["has_date"] ?? false;
|
|
||||||
bool get hasTime => _attributes["has_time"] ?? false;
|
|
||||||
int get year => _attributes["year"] ?? 1970;
|
|
||||||
int get month => _attributes["month"] ?? 1;
|
|
||||||
int get day => _attributes["day"] ?? 1;
|
|
||||||
int get hour => _attributes["hour"] ?? 0;
|
|
||||||
int get minute => _attributes["minute"] ?? 0;
|
|
||||||
int get second => _attributes["second"] ?? 0;
|
|
||||||
String get formattedState => _getFormattedState();
|
|
||||||
DateTime get dateTimeState => _getDateTimeState();
|
|
||||||
|
|
||||||
DateTimeEntity(Map rawData) : super(rawData);
|
|
||||||
|
|
||||||
DateTime _getDateTimeState() {
|
|
||||||
return DateTime(this.year, this.month, this.day, this.hour, this.minute, this.second);
|
|
||||||
}
|
|
||||||
|
|
||||||
String _getFormattedState() {
|
|
||||||
String formattedState = "";
|
|
||||||
if (this.hasDate) {
|
|
||||||
formattedState += formatDate(dateTimeState, [M, ' ', d, ', ', yyyy]);
|
|
||||||
}
|
|
||||||
if (this.hasTime) {
|
|
||||||
formattedState += " "+formatDate(dateTimeState, [HH, ':', nn]);
|
|
||||||
}
|
|
||||||
return formattedState;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_domain, "set_datetime", _entityId,
|
|
||||||
newValue));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return Padding(
|
|
||||||
padding:
|
|
||||||
EdgeInsets.fromLTRB(0.0, 0.0, Entity.RIGHT_WIDGET_PADDING, 0.0),
|
|
||||||
child: GestureDetector(
|
|
||||||
child: Text(
|
|
||||||
"$formattedState",
|
|
||||||
textAlign: TextAlign.right,
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: Entity.STATE_FONT_SIZE,
|
|
||||||
)),
|
|
||||||
onTap: () => _handleStateTap(context),
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
void _handleStateTap(BuildContext context) {
|
|
||||||
if (hasDate) {
|
|
||||||
_showDatePicker(context).then((date) {
|
|
||||||
if (date != null) {
|
|
||||||
if (hasTime) {
|
|
||||||
_showTimePicker(context).then((time){
|
|
||||||
sendNewState({"date": "${formatDate(date, [yyyy, '-', mm, '-', dd])}", "time": "${formatDate(DateTime(1970, 1, 1, time.hour, time.minute), [HH, ':', nn])}"});
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
sendNewState({"date": "${formatDate(date, [yyyy, '-', mm, '-', dd])}"});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else if (hasTime) {
|
|
||||||
_showTimePicker(context).then((time){
|
|
||||||
if (time != null) {
|
|
||||||
sendNewState({"time": "${formatDate(DateTime(1970, 1, 1, time.hour, time.minute), [HH, ':', nn])}"});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
TheLogger.log("Warning", "$entityId has no date and no time");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Future _showDatePicker(BuildContext context) {
|
|
||||||
return showDatePicker(
|
|
||||||
context: context,
|
|
||||||
initialDate: dateTimeState,
|
|
||||||
firstDate: DateTime(1970),
|
|
||||||
lastDate: DateTime(2037) //Unix timestamp will finish at Jan 19, 2038
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future _showTimePicker(BuildContext context) {
|
|
||||||
return showTimePicker(
|
|
||||||
context: context,
|
|
||||||
initialTime: TimeOfDay.fromDateTime(dateTimeState)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class SelectEntity extends Entity {
|
|
||||||
List<String> _listOptions = [];
|
|
||||||
String get initialValue => _attributes["initial"] ?? null;
|
|
||||||
|
|
||||||
SelectEntity(Map rawData) : super(rawData) {
|
|
||||||
if (_attributes["options"] != null) {
|
|
||||||
_attributes["options"].forEach((value){
|
|
||||||
_listOptions.add(value.toString());
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_domain, "select_option", _entityId,
|
|
||||||
{"option": "$newValue"}));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
return Container(
|
|
||||||
width: Entity.INPUT_WIDTH,
|
|
||||||
child: DropdownButton<String>(
|
|
||||||
value: _state,
|
|
||||||
items: this._listOptions.map((String value) {
|
|
||||||
return new DropdownMenuItem<String>(
|
|
||||||
value: value,
|
|
||||||
child: new Text(value),
|
|
||||||
);
|
|
||||||
}).toList(),
|
|
||||||
onChanged: (_) {
|
|
||||||
sendNewState(_);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class TextEntity extends Entity {
|
|
||||||
String tmpState;
|
|
||||||
FocusNode _focusNode;
|
|
||||||
bool validValue = false;
|
|
||||||
|
|
||||||
int get valueMinLength => _attributes["min"] ?? -1;
|
|
||||||
int get valueMaxLength => _attributes["max"] ?? -1;
|
|
||||||
String get valuePattern => _attributes["pattern"] ?? null;
|
|
||||||
bool get isTextField => _attributes["mode"] == "text";
|
|
||||||
bool get isPasswordField => _attributes["mode"] == "password";
|
|
||||||
|
|
||||||
TextEntity(Map rawData) : super(rawData) {
|
|
||||||
_focusNode = FocusNode();
|
|
||||||
//TODO possible memory leak generator
|
|
||||||
_focusNode.addListener(_focusListener);
|
|
||||||
//tmpState = state;
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void sendNewState(newValue) {
|
|
||||||
if (validate(newValue)) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_domain, "set_value", _entityId,
|
|
||||||
{"value": "{newValue"}));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void update(Map rawData) {
|
|
||||||
super.update(rawData);
|
|
||||||
tmpState = _state;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool validate(newValue) {
|
|
||||||
if (newValue is String) {
|
|
||||||
//TODO add pattern support
|
|
||||||
validValue = (newValue.length >= this.valueMinLength) &&
|
|
||||||
(this.valueMaxLength == -1 ||
|
|
||||||
(newValue.length <= this.valueMaxLength));
|
|
||||||
} else {
|
|
||||||
validValue = true;
|
|
||||||
}
|
|
||||||
return validValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
void _focusListener() {
|
|
||||||
if (!_focusNode.hasFocus && (tmpState != state)) {
|
|
||||||
sendNewState(tmpState);
|
|
||||||
tmpState = state;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
|
||||||
if (this.isTextField || this.isPasswordField) {
|
|
||||||
return Container(
|
|
||||||
width: Entity.INPUT_WIDTH,
|
|
||||||
child: TextField(
|
|
||||||
focusNode: inCard ? _focusNode : null,
|
|
||||||
obscureText: this.isPasswordField,
|
|
||||||
controller: new TextEditingController.fromValue(
|
|
||||||
new TextEditingValue(
|
|
||||||
text: tmpState,
|
|
||||||
selection:
|
|
||||||
new TextSelection.collapsed(offset: tmpState.length))),
|
|
||||||
onChanged: (value) {
|
|
||||||
tmpState = value;
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
TheLogger.log("Warning", "Unsupported input mode for $entityId");
|
|
||||||
return super._buildActionWidget(inCard, context);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -3,7 +3,7 @@ part of 'main.dart';
|
|||||||
class EntityViewPage extends StatefulWidget {
|
class EntityViewPage extends StatefulWidget {
|
||||||
EntityViewPage({Key key, this.entity}) : super(key: key);
|
EntityViewPage({Key key, this.entity}) : super(key: key);
|
||||||
|
|
||||||
Entity entity;
|
final Entity entity;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
_EntityViewPageState createState() => new _EntityViewPageState();
|
_EntityViewPageState createState() => new _EntityViewPageState();
|
||||||
@ -44,22 +44,13 @@ class _EntityViewPageState extends State<EntityViewPage> {
|
|||||||
),
|
),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: EdgeInsets.all(10.0),
|
padding: EdgeInsets.all(10.0),
|
||||||
child: ListView(
|
child: _entity.buildWidget(context, false)
|
||||||
children: <Widget>[
|
|
||||||
_entity.buildWidget(false, context),
|
|
||||||
_entity.buildAdditionalWidget()
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void dispose(){
|
void dispose(){
|
||||||
if (_entity is TextEntity && (_entity as TextEntity).tmpState != _entity.state) {
|
|
||||||
eventBus.fire(new ServiceCallEvent(_entity.domain, "set_value", _entity.entityId, {"value": "${(_entity as TextEntity).tmpState}"}));
|
|
||||||
TheLogger.log("Debug", "Saving changed input value for ${_entity.entityId}");
|
|
||||||
}
|
|
||||||
if (_stateSubscription != null) _stateSubscription.cancel();
|
if (_stateSubscription != null) _stateSubscription.cancel();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
24
lib/entity_class/button_entity.class.dart
Normal file
24
lib/entity_class/button_entity.class.dart
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _ButtonEntityWidgetState extends _EntityWidgetState {
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(widget.entity.domain, "turn_on", widget.entity.entityId, null));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
return FlatButton(
|
||||||
|
onPressed: (() {
|
||||||
|
sendNewState(null);
|
||||||
|
}),
|
||||||
|
child: Text(
|
||||||
|
"EXECUTE",
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
style:
|
||||||
|
new TextStyle(fontSize: Entity.STATE_FONT_SIZE, color: Colors.blue),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
92
lib/entity_class/datetime_entity.class.dart
Normal file
92
lib/entity_class/datetime_entity.class.dart
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _DateTimeEntityWidgetState extends _EntityWidgetState {
|
||||||
|
bool get hasDate => widget.entity._attributes["has_date"] ?? false;
|
||||||
|
bool get hasTime => widget.entity._attributes["has_time"] ?? false;
|
||||||
|
int get year => widget.entity._attributes["year"] ?? 1970;
|
||||||
|
int get month => widget.entity._attributes["month"] ?? 1;
|
||||||
|
int get day => widget.entity._attributes["day"] ?? 1;
|
||||||
|
int get hour => widget.entity._attributes["hour"] ?? 0;
|
||||||
|
int get minute => widget.entity._attributes["minute"] ?? 0;
|
||||||
|
int get second => widget.entity._attributes["second"] ?? 0;
|
||||||
|
String get formattedState => _getFormattedState();
|
||||||
|
DateTime get dateTimeState => _getDateTimeState();
|
||||||
|
|
||||||
|
DateTime _getDateTimeState() {
|
||||||
|
return DateTime(this.year, this.month, this.day, this.hour, this.minute, this.second);
|
||||||
|
}
|
||||||
|
|
||||||
|
String _getFormattedState() {
|
||||||
|
String formattedState = "";
|
||||||
|
if (this.hasDate) {
|
||||||
|
formattedState += formatDate(dateTimeState, [M, ' ', d, ', ', yyyy]);
|
||||||
|
}
|
||||||
|
if (this.hasTime) {
|
||||||
|
formattedState += " "+formatDate(dateTimeState, [HH, ':', nn]);
|
||||||
|
}
|
||||||
|
return formattedState;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(widget.entity.domain, "set_datetime", widget.entity.entityId,
|
||||||
|
newValue));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
return Padding(
|
||||||
|
padding:
|
||||||
|
EdgeInsets.fromLTRB(0.0, 0.0, Entity.RIGHT_WIDGET_PADDING, 0.0),
|
||||||
|
child: GestureDetector(
|
||||||
|
child: Text(
|
||||||
|
"$formattedState",
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: Entity.STATE_FONT_SIZE,
|
||||||
|
)),
|
||||||
|
onTap: () => _handleStateTap(context),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void _handleStateTap(BuildContext context) {
|
||||||
|
if (hasDate) {
|
||||||
|
_showDatePicker(context).then((date) {
|
||||||
|
if (date != null) {
|
||||||
|
if (hasTime) {
|
||||||
|
_showTimePicker(context).then((time){
|
||||||
|
sendNewState({"date": "${formatDate(date, [yyyy, '-', mm, '-', dd])}", "time": "${formatDate(DateTime(1970, 1, 1, time.hour, time.minute), [HH, ':', nn])}"});
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
sendNewState({"date": "${formatDate(date, [yyyy, '-', mm, '-', dd])}"});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if (hasTime) {
|
||||||
|
_showTimePicker(context).then((time){
|
||||||
|
if (time != null) {
|
||||||
|
sendNewState({"time": "${formatDate(DateTime(1970, 1, 1, time.hour, time.minute), [HH, ':', nn])}"});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
TheLogger.log("Warning", "${widget.entity.entityId} has no date and no time");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future _showDatePicker(BuildContext context) {
|
||||||
|
return showDatePicker(
|
||||||
|
context: context,
|
||||||
|
initialDate: dateTimeState,
|
||||||
|
firstDate: DateTime(1970),
|
||||||
|
lastDate: DateTime(2037) //Unix timestamp will finish at Jan 19, 2038
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future _showTimePicker(BuildContext context) {
|
||||||
|
return showTimePicker(
|
||||||
|
context: context,
|
||||||
|
initialTime: TimeOfDay.fromDateTime(dateTimeState)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
240
lib/entity_class/entity.class.dart
Normal file
240
lib/entity_class/entity.class.dart
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class Entity {
|
||||||
|
static const STATE_ICONS_COLORS = {
|
||||||
|
"on": Colors.amber,
|
||||||
|
"off": Color.fromRGBO(68, 115, 158, 1.0),
|
||||||
|
"unavailable": Colors.black12,
|
||||||
|
"unknown": Colors.black12,
|
||||||
|
"playing": Colors.amber
|
||||||
|
};
|
||||||
|
static const RIGHT_WIDGET_PADDING = 14.0;
|
||||||
|
static const LEFT_WIDGET_PADDING = 8.0;
|
||||||
|
static const EXTENDED_WIDGET_HEIGHT = 50.0;
|
||||||
|
static const WIDGET_HEIGHT = 34.0;
|
||||||
|
static const ICON_SIZE = 28.0;
|
||||||
|
static const STATE_FONT_SIZE = 16.0;
|
||||||
|
static const NAME_FONT_SIZE = 16.0;
|
||||||
|
static const SMALL_FONT_SIZE = 14.0;
|
||||||
|
static const INPUT_WIDTH = 160.0;
|
||||||
|
|
||||||
|
Map _attributes;
|
||||||
|
String _domain;
|
||||||
|
String _entityId;
|
||||||
|
String _state;
|
||||||
|
DateTime _lastUpdated;
|
||||||
|
|
||||||
|
String get displayName =>
|
||||||
|
_attributes["friendly_name"] ?? (_attributes["name"] ?? "_");
|
||||||
|
String get domain => _domain;
|
||||||
|
String get entityId => _entityId;
|
||||||
|
String get state => _state;
|
||||||
|
set state(value) => _state = value;
|
||||||
|
|
||||||
|
String get deviceClass => _attributes["device_class"] ?? null;
|
||||||
|
bool get isView =>
|
||||||
|
(_domain == "group") &&
|
||||||
|
(_attributes != null ? _attributes["view"] ?? false : false);
|
||||||
|
bool get isGroup => _domain == "group";
|
||||||
|
String get icon => _attributes["icon"] ?? "";
|
||||||
|
bool get isOn => state == "on";
|
||||||
|
String get entityPicture => _attributes["entity_picture"];
|
||||||
|
String get unitOfMeasurement => _attributes["unit_of_measurement"] ?? "";
|
||||||
|
List get childEntities => _attributes["entity_id"] ?? [];
|
||||||
|
String get lastUpdated => _getLastUpdatedFormatted();
|
||||||
|
|
||||||
|
Entity(Map rawData) {
|
||||||
|
update(rawData);
|
||||||
|
}
|
||||||
|
|
||||||
|
void update(Map rawData) {
|
||||||
|
_attributes = rawData["attributes"] ?? {};
|
||||||
|
_domain = rawData["entity_id"].split(".")[0];
|
||||||
|
_entityId = rawData["entity_id"];
|
||||||
|
_state = rawData["state"];
|
||||||
|
_lastUpdated = DateTime.tryParse(rawData["last_updated"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
EntityWidget buildWidget(BuildContext context, bool inCard) {
|
||||||
|
return EntityWidget(
|
||||||
|
entity: this,
|
||||||
|
inCard: inCard,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String _getLastUpdatedFormatted() {
|
||||||
|
if (_lastUpdated == null) {
|
||||||
|
return "-";
|
||||||
|
} else {
|
||||||
|
DateTime now = DateTime.now();
|
||||||
|
Duration d = now.difference(_lastUpdated);
|
||||||
|
String text;
|
||||||
|
int v;
|
||||||
|
if (d.inDays == 0) {
|
||||||
|
if (d.inHours == 0) {
|
||||||
|
if (d.inMinutes == 0) {
|
||||||
|
text = "seconds ago";
|
||||||
|
v = d.inSeconds;
|
||||||
|
} else {
|
||||||
|
text = "minutes ago";
|
||||||
|
v = d.inMinutes;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
text = "hours ago";
|
||||||
|
v = d.inHours;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
text = "days ago";
|
||||||
|
v = d.inDays;
|
||||||
|
}
|
||||||
|
return "$v $text";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
class EntityWidget extends StatefulWidget {
|
||||||
|
EntityWidget({Key key, this.entity, this.inCard}) : super(key: key);
|
||||||
|
|
||||||
|
final Entity entity;
|
||||||
|
final bool inCard;
|
||||||
|
|
||||||
|
@override
|
||||||
|
_EntityWidgetState createState() {
|
||||||
|
switch (entity.domain) {
|
||||||
|
case "automation":
|
||||||
|
case "input_boolean ":
|
||||||
|
case "switch":
|
||||||
|
case "light": {
|
||||||
|
return _SwitchEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
case "script":
|
||||||
|
case "scene": {
|
||||||
|
return _ButtonEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
case "input_datetime": {
|
||||||
|
return _DateTimeEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
case "input_select": {
|
||||||
|
return _SelectEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
case "input_number": {
|
||||||
|
return _SliderEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
case "input_text": {
|
||||||
|
return _TextEntityWidgetState();
|
||||||
|
}
|
||||||
|
|
||||||
|
default: {
|
||||||
|
return _EntityWidgetState();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _EntityWidgetState extends State<EntityWidget> {
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
if (widget.inCard) {
|
||||||
|
return _buildMainWidget(context);
|
||||||
|
} else {
|
||||||
|
return ListView(
|
||||||
|
children: <Widget>[
|
||||||
|
_buildMainWidget(context),
|
||||||
|
_buildLastUpdatedWidget()
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildMainWidget(BuildContext context) {
|
||||||
|
return SizedBox(
|
||||||
|
height: Entity.WIDGET_HEIGHT,
|
||||||
|
child: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
GestureDetector(
|
||||||
|
child: _buildIconWidget(),
|
||||||
|
onTap: widget.inCard ? openEntityPage : null,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: GestureDetector(
|
||||||
|
child: _buildNameWidget(),
|
||||||
|
onTap: widget.inCard ? openEntityPage : null,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
_buildActionWidget(widget.inCard, context)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void openEntityPage() {
|
||||||
|
eventBus.fire(new ShowEntityPageEvent(widget.entity));
|
||||||
|
}
|
||||||
|
|
||||||
|
void sendNewState(newState) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget buildAdditionalWidget() {
|
||||||
|
return _buildLastUpdatedWidget();
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildIconWidget() {
|
||||||
|
return Padding(
|
||||||
|
padding: EdgeInsets.fromLTRB(Entity.LEFT_WIDGET_PADDING, 0.0, 12.0, 0.0),
|
||||||
|
child: MaterialDesignIcons.createIconWidgetFromEntityData(
|
||||||
|
widget.entity,
|
||||||
|
Entity.ICON_SIZE,
|
||||||
|
Entity.STATE_ICONS_COLORS[widget.entity.state] ?? Colors.blueGrey),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildLastUpdatedWidget() {
|
||||||
|
return Padding(
|
||||||
|
padding: EdgeInsets.fromLTRB(
|
||||||
|
Entity.LEFT_WIDGET_PADDING, Entity.SMALL_FONT_SIZE, 0.0, 0.0),
|
||||||
|
child: Text(
|
||||||
|
'${widget.entity.lastUpdated}',
|
||||||
|
textAlign: TextAlign.left,
|
||||||
|
style:
|
||||||
|
TextStyle(fontSize: Entity.SMALL_FONT_SIZE, color: Colors.black26),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildNameWidget() {
|
||||||
|
return Padding(
|
||||||
|
padding: EdgeInsets.only(right: 10.0),
|
||||||
|
child: Text(
|
||||||
|
"${widget.entity.displayName}",
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
softWrap: false,
|
||||||
|
style: TextStyle(fontSize: Entity.NAME_FONT_SIZE),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
return Padding(
|
||||||
|
padding:
|
||||||
|
EdgeInsets.fromLTRB(0.0, 0.0, Entity.RIGHT_WIDGET_PADDING, 0.0),
|
||||||
|
child: GestureDetector(
|
||||||
|
child: Text(
|
||||||
|
"${widget.entity.state}${widget.entity.unitOfMeasurement}",
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: Entity.STATE_FONT_SIZE,
|
||||||
|
)),
|
||||||
|
onTap: openEntityPage,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
36
lib/entity_class/select_entity.class.dart
Normal file
36
lib/entity_class/select_entity.class.dart
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _SelectEntityWidgetState extends _EntityWidgetState {
|
||||||
|
List<String> _listOptions = [];
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(widget.entity.domain, "select_option", widget.entity.entityId,
|
||||||
|
{"option": "$newValue"}));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
_listOptions.clear();
|
||||||
|
if (widget.entity._attributes["options"] != null) {
|
||||||
|
widget.entity._attributes["options"].forEach((value){
|
||||||
|
_listOptions.add(value.toString());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return Container(
|
||||||
|
width: Entity.INPUT_WIDTH,
|
||||||
|
child: DropdownButton<String>(
|
||||||
|
value: widget.entity.state,
|
||||||
|
items: this._listOptions.map((String value) {
|
||||||
|
return new DropdownMenuItem<String>(
|
||||||
|
value: value,
|
||||||
|
child: new Text(value),
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
onChanged: (_) {
|
||||||
|
sendNewState(_);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
65
lib/entity_class/slider_entity.class.dart
Normal file
65
lib/entity_class/slider_entity.class.dart
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _SliderEntityWidgetState extends _EntityWidgetState {
|
||||||
|
int _multiplier = 1;
|
||||||
|
|
||||||
|
double get minValue => widget.entity._attributes["min"] ?? 0.0;
|
||||||
|
double get maxValue => widget.entity._attributes["max"] ?? 100.0;
|
||||||
|
double get valueStep => widget.entity._attributes["step"] ?? 1.0;
|
||||||
|
double get doubleState => double.tryParse(widget.entity.state) ?? 0.0;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(widget.entity.domain, "set_value", widget.entity.entityId,
|
||||||
|
{"value": "${newValue.toString()}"}));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
if (valueStep < 1) {
|
||||||
|
_multiplier = 10;
|
||||||
|
} else if (valueStep < 0.1) {
|
||||||
|
_multiplier = 100;
|
||||||
|
}
|
||||||
|
return Container(
|
||||||
|
width: 200.0,
|
||||||
|
child: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Expanded(
|
||||||
|
child: Slider(
|
||||||
|
min: this.minValue * _multiplier,
|
||||||
|
max: this.maxValue * _multiplier,
|
||||||
|
value: (doubleState <= this.maxValue) &&
|
||||||
|
(doubleState >= this.minValue)
|
||||||
|
? doubleState * _multiplier
|
||||||
|
: this.minValue * _multiplier,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
widget.entity.state = (value.roundToDouble() / _multiplier).toString();
|
||||||
|
});
|
||||||
|
/*eventBus.fire(new StateChangedEvent(widget.entity.entityId,
|
||||||
|
(value.roundToDouble() / _multiplier).toString(), true));*/
|
||||||
|
},
|
||||||
|
onChangeEnd: (value) {
|
||||||
|
sendNewState(value.roundToDouble() / _multiplier);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.only(right: Entity.RIGHT_WIDGET_PADDING),
|
||||||
|
child: Text("${widget.entity.state}${widget.entity.unitOfMeasurement}",
|
||||||
|
textAlign: TextAlign.right,
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: Entity.STATE_FONT_SIZE,
|
||||||
|
)),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
26
lib/entity_class/switch_entity.class.dart
Normal file
26
lib/entity_class/switch_entity.class.dart
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _SwitchEntityWidgetState extends _EntityWidgetState {
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(
|
||||||
|
widget.entity.domain, (newValue as bool) ? "turn_on" : "turn_off", widget.entity.entityId, null));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
return Switch(
|
||||||
|
value: widget.entity.isOn,
|
||||||
|
onChanged: ((switchState) {
|
||||||
|
sendNewState(switchState);
|
||||||
|
widget.entity.state = switchState ? 'on' : 'off';
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
83
lib/entity_class/text_entity.class.dart
Normal file
83
lib/entity_class/text_entity.class.dart
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
part of '../main.dart';
|
||||||
|
|
||||||
|
class _TextEntityWidgetState extends _EntityWidgetState {
|
||||||
|
String _tmpValue;
|
||||||
|
FocusNode _focusNode = FocusNode();
|
||||||
|
bool validValue = false;
|
||||||
|
|
||||||
|
int get valueMinLength => widget.entity._attributes["min"] ?? -1;
|
||||||
|
int get valueMaxLength => widget.entity._attributes["max"] ?? -1;
|
||||||
|
String get valuePattern => widget.entity._attributes["pattern"] ?? null;
|
||||||
|
bool get isTextField => widget.entity._attributes["mode"] == "text";
|
||||||
|
bool get isPasswordField => widget.entity._attributes["mode"] == "password";
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_focusNode.addListener(_focusListener);
|
||||||
|
_tmpValue = widget.entity.state;
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void sendNewState(newValue) {
|
||||||
|
if (validate(newValue)) {
|
||||||
|
eventBus.fire(new ServiceCallEvent(widget.entity.domain, "set_value", widget.entity.entityId,
|
||||||
|
{"value": "$newValue"}));
|
||||||
|
} else {
|
||||||
|
setState(() {
|
||||||
|
_tmpValue = widget.entity.state;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool validate(newValue) {
|
||||||
|
if (newValue is String) {
|
||||||
|
validValue = (newValue.length >= this.valueMinLength) &&
|
||||||
|
(this.valueMaxLength == -1 ||
|
||||||
|
(newValue.length <= this.valueMaxLength));
|
||||||
|
} else {
|
||||||
|
validValue = true;
|
||||||
|
}
|
||||||
|
return validValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
void _focusListener() {
|
||||||
|
if (!_focusNode.hasFocus && (_tmpValue != widget.entity.state)) {
|
||||||
|
sendNewState(_tmpValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget _buildActionWidget(bool inCard, BuildContext context) {
|
||||||
|
if (!_focusNode.hasFocus && (_tmpValue != widget.entity.state)) {
|
||||||
|
_tmpValue = widget.entity.state;
|
||||||
|
}
|
||||||
|
if (this.isTextField || this.isPasswordField) {
|
||||||
|
return Container(
|
||||||
|
width: Entity.INPUT_WIDTH,
|
||||||
|
child: TextField(
|
||||||
|
focusNode: _focusNode,
|
||||||
|
obscureText: this.isPasswordField,
|
||||||
|
controller: new TextEditingController.fromValue(
|
||||||
|
new TextEditingValue(
|
||||||
|
text: _tmpValue,
|
||||||
|
selection:
|
||||||
|
new TextSelection.collapsed(offset: _tmpValue.length))),
|
||||||
|
onChanged: (value) {
|
||||||
|
_tmpValue = value;
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
TheLogger.log("Warning", "Unsupported input mode for ${widget.entity.entityId}");
|
||||||
|
return super._buildActionWidget(inCard, context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_focusNode.removeListener(_focusListener);
|
||||||
|
_focusNode.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -27,40 +27,8 @@ class EntityCollection {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Entity _createEntityInstance(rawEntityData) {
|
Entity _createEntityInstance(rawEntityData) {
|
||||||
switch (rawEntityData["entity_id"].split(".")[0]) {
|
|
||||||
case "automation":
|
|
||||||
case "input_boolean ":
|
|
||||||
case "switch":
|
|
||||||
case "light": {
|
|
||||||
return SwitchEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
case "script":
|
|
||||||
case "scene": {
|
|
||||||
return ButtonEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
case "input_datetime": {
|
|
||||||
return DateTimeEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
case "input_select": {
|
|
||||||
return SelectEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
case "input_number": {
|
|
||||||
return SliderEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
case "input_text": {
|
|
||||||
return TextEntity(rawEntityData);
|
|
||||||
}
|
|
||||||
|
|
||||||
default: {
|
|
||||||
return Entity(rawEntityData);
|
return Entity(rawEntityData);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void updateState(Map rawStateData) {
|
void updateState(Map rawStateData) {
|
||||||
if (isExist(rawStateData["entity_id"])) {
|
if (isExist(rawStateData["entity_id"])) {
|
||||||
|
@ -44,7 +44,7 @@ class _LogViewPageState extends State<LogViewPage> {
|
|||||||
onPressed: () {
|
onPressed: () {
|
||||||
String body = "```\n$_logData```";
|
String body = "```\n$_logData```";
|
||||||
String encodedBody = "${Uri.encodeFull(body)}";
|
String encodedBody = "${Uri.encodeFull(body)}";
|
||||||
haUtils.launchURL("https://github.com/estevez-dev/ha_client_pub/issues/new?body=$encodedBody");
|
HAUtils.launchURL("https://github.com/estevez-dev/ha_client_pub/issues/new?body=$encodedBody");
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
@ -12,13 +12,20 @@ import 'package:url_launcher/url_launcher.dart';
|
|||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:date_format/date_format.dart';
|
import 'package:date_format/date_format.dart';
|
||||||
|
|
||||||
|
part 'entity_class/entity.class.dart';
|
||||||
|
part 'entity_class/button_entity.class.dart';
|
||||||
|
part 'entity_class/datetime_entity.class.dart';
|
||||||
|
part 'entity_class/select_entity.class.dart';
|
||||||
|
part 'entity_class/slider_entity.class.dart';
|
||||||
|
part 'entity_class/switch_entity.class.dart';
|
||||||
|
part 'entity_class/text_entity.class.dart';
|
||||||
|
|
||||||
part 'settings.page.dart';
|
part 'settings.page.dart';
|
||||||
part 'home_assistant.class.dart';
|
part 'home_assistant.class.dart';
|
||||||
part 'log.page.dart';
|
part 'log.page.dart';
|
||||||
part 'entity.page.dart';
|
part 'entity.page.dart';
|
||||||
part 'utils.class.dart';
|
part 'utils.class.dart';
|
||||||
part 'mdi.class.dart';
|
part 'mdi.class.dart';
|
||||||
part 'entity.class.dart';
|
|
||||||
part 'entity_collection.class.dart';
|
part 'entity_collection.class.dart';
|
||||||
part 'ui_builder_class.dart';
|
part 'ui_builder_class.dart';
|
||||||
part 'view_class.dart';
|
part 'view_class.dart';
|
||||||
@ -27,7 +34,7 @@ part 'badge_class.dart';
|
|||||||
|
|
||||||
EventBus eventBus = new EventBus();
|
EventBus eventBus = new EventBus();
|
||||||
const String appName = "HA Client";
|
const String appName = "HA Client";
|
||||||
const appVersion = "0.2.1";
|
const appVersion = "0.2.2";
|
||||||
|
|
||||||
String homeAssistantWebHost;
|
String homeAssistantWebHost;
|
||||||
|
|
||||||
@ -60,7 +67,7 @@ class HAClientApp extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
initialRoute: "/",
|
initialRoute: "/",
|
||||||
routes: {
|
routes: {
|
||||||
"/": (context) => MainPage(title: 'Hass Client'),
|
"/": (context) => MainPage(title: 'HA Client'),
|
||||||
"/connection-settings": (context) => ConnectionSettingsPage(title: "Connection Settings"),
|
"/connection-settings": (context) => ConnectionSettingsPage(title: "Connection Settings"),
|
||||||
"/log-view": (context) => LogViewPage(title: "Log")
|
"/log-view": (context) => LogViewPage(title: "Log")
|
||||||
},
|
},
|
||||||
@ -409,7 +416,7 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
|
|||||||
entities.add(
|
entities.add(
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),
|
padding: EdgeInsets.fromLTRB(0.0, 10.0, 0.0, 10.0),
|
||||||
child: entity.buildWidget(true, context),
|
child: entity.buildWidget(context, true),
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -480,7 +487,7 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver {
|
|||||||
title: Text("Report an issue"),
|
title: Text("Report an issue"),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
haUtils.launchURL("https://github.com/estevez-dev/ha_client_pub/issues/new");
|
HAUtils.launchURL("https://github.com/estevez-dev/ha_client_pub/issues/new");
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
new AboutListTile(
|
new AboutListTile(
|
||||||
|
@ -32,7 +32,7 @@ class TheLogger {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class haUtils {
|
class HAUtils {
|
||||||
static void launchURL(String url) async {
|
static void launchURL(String url) async {
|
||||||
if (await canLaunch(url)) {
|
if (await canLaunch(url)) {
|
||||||
await launch(url);
|
await launch(url);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: hass_client
|
name: hass_client
|
||||||
description: Home Assistant Android Client
|
description: Home Assistant Android Client
|
||||||
|
|
||||||
version: 0.2.1+23
|
version: 0.2.2+24
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.0.0-dev.68.0 <3.0.0"
|
sdk: ">=2.0.0-dev.68.0 <3.0.0"
|
||||||
|
Reference in New Issue
Block a user