mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 12:18:46 +00:00
YAF
- added widget fht80 - Bugfix: delete widget not working - show widget id in delete and edit dialogs git-svn-id: https://svn.fhem.de/fhem/trunk@3460 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
acc7fb491a
commit
c9dbcfe57d
@ -1 +1,2 @@
|
|||||||
|
- Added widget fht80 (marcproe)
|
||||||
- Added control_yaf.txt to support update
|
- Added control_yaf.txt to support update
|
234
fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm
Normal file
234
fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm
Normal file
@ -0,0 +1,234 @@
|
|||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80.pm
|
||||||
|
#
|
||||||
|
# YAF - Yet Another Floorplan
|
||||||
|
# FHEM Projektgruppe Hochschule Karlsruhe, 2013
|
||||||
|
# Markus Mangei, Daniel Weisensee, Prof. Dr. Peter A. Henning
|
||||||
|
#
|
||||||
|
# fht80 Widget: Marc Pro
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
package main;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use warnings;
|
||||||
|
|
||||||
|
my $yaf_version = 0.41;
|
||||||
|
|
||||||
|
use vars qw(%_GET);
|
||||||
|
use vars qw(%defs);
|
||||||
|
|
||||||
|
#######################################################################################
|
||||||
|
#
|
||||||
|
# fht80_get_widgetcss - Create the CSS code for this widget
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_widgetcss() {
|
||||||
|
my $output = "
|
||||||
|
.widget_fht80 {
|
||||||
|
width: 175px;
|
||||||
|
height: 33px;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-position:center center;
|
||||||
|
opacity:1 !important;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.widget_fht80_alias {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
";
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80_get_widgetjs - Create the javascript code for this widget
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_widgetjs() {
|
||||||
|
|
||||||
|
my $output = '
|
||||||
|
function fht80_update_widget(view_id, widget_id) {
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
async: true,
|
||||||
|
url: "../../ajax/widget/fht80/get_temp",
|
||||||
|
data: "view_id="+view_id+"&widget_id="+widget_id,
|
||||||
|
context: document.body,
|
||||||
|
success: function(get_temp) {
|
||||||
|
var widget = $("#widget_"+view_id+"_"+widget_id);
|
||||||
|
widget.html(get_temp);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
';
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80t_getwidgethtml - HTML code for this widget
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_widgethtml() {
|
||||||
|
my $output = "-###-";
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80t_get_addwidget_setup_html - Create the selection of devices for this widget
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_addwidget_setup_html() {
|
||||||
|
my $output = "<script src='js/combobox.js'></script>
|
||||||
|
<select name='fht80_combobox' id='combobox'>";
|
||||||
|
my @list = (keys %defs);
|
||||||
|
|
||||||
|
foreach my $d (sort @list) {
|
||||||
|
my $type = $defs{$d}{TYPE};
|
||||||
|
my $name = $defs{$d}{NAME};
|
||||||
|
|
||||||
|
if( $type eq "FHT"){
|
||||||
|
|
||||||
|
$output = $output."<option value='$name'>$name</option>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$output = $output."</select>";
|
||||||
|
|
||||||
|
$output .= "<br /><label>Label:</label>
|
||||||
|
<script src='js/combobox.js'></script>
|
||||||
|
<select name='fht80_combobox_label' id='combobox_label'>";
|
||||||
|
$output .= "<option value='Name'>Name</option>";
|
||||||
|
$output .= "<option value='Alias'>Alias</option>";
|
||||||
|
$output .= "<option value='Comment'>Comment</option>";
|
||||||
|
$output .= "</select>";
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80t_get_addwidget_prepare_attributes -
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_addwidget_prepare_attributes() {
|
||||||
|
my $output = '
|
||||||
|
var temp_array = new Array();
|
||||||
|
temp_array[0] = "fhemname";
|
||||||
|
temp_array[1] = $("#combobox option:selected").val()
|
||||||
|
attributes_array[0] = temp_array;
|
||||||
|
var temp_array2 = new Array();
|
||||||
|
temp_array2[0] = "labeltype";
|
||||||
|
temp_array2[1] = $("#combobox_label option:selected").val()
|
||||||
|
attributes_array[1] = temp_array2;
|
||||||
|
';
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80t_getwidget_html - HTML code for this widget. DO WE NEED THIS ? SEE ABOVE
|
||||||
|
# DO WE NEED IT? WHO KNOWS. (It looks like this one fills the initial html of the
|
||||||
|
# widget, so let's keep it for science.)
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_getwidget_html() {
|
||||||
|
my $output = "###";
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
#
|
||||||
|
# fht80t_get_lamp_status - return the state of the lamp
|
||||||
|
#
|
||||||
|
# no parameter
|
||||||
|
#
|
||||||
|
########################################################################################
|
||||||
|
|
||||||
|
sub fht80_get_temp() {
|
||||||
|
my $attribute = YAF_getWidgetAttribute($_GET{"view_id"}, $_GET{"widget_id"}, "fhemname");
|
||||||
|
if(!($attribute)) {
|
||||||
|
return("Widget not found ".$_GET{"view_id"}." ".$_GET{"widget_id"});
|
||||||
|
}
|
||||||
|
|
||||||
|
my $labeltype = YAF_getWidgetAttribute($_GET{"view_id"}, $_GET{"widget_id"}, "labeltype");
|
||||||
|
|
||||||
|
my $d = $defs{$attribute};
|
||||||
|
my $ret = "";
|
||||||
|
|
||||||
|
my $temp = $defs{$attribute}{READINGS}{temperature}{VAL};
|
||||||
|
my $temptimestamp = $defs{$attribute}{READINGS}{temperature}{TIME};
|
||||||
|
my $actuator = $defs{$attribute}{READINGS}{actuator}{VAL};
|
||||||
|
my $label = "";
|
||||||
|
if($labeltype eq "Comment") {
|
||||||
|
$label = AttrVal($attribute,"comment",$d->{NAME});
|
||||||
|
} elsif ($labeltype eq "Alias") {
|
||||||
|
$label = AttrVal($attribute,"alias",$d->{NAME});
|
||||||
|
} else {
|
||||||
|
$label = $d->{NAME}
|
||||||
|
}
|
||||||
|
$label =~ s/(_)/ /g;
|
||||||
|
my $mode = $defs{$attribute}{READINGS}{mode}{VAL};
|
||||||
|
my $desi = $defs{$attribute}{READINGS}{"desired-temp"}{VAL};
|
||||||
|
my $battery = $defs{$attribute}{READINGS}{battery}{VAL};
|
||||||
|
|
||||||
|
if($mode eq "manual") {
|
||||||
|
$mode = " <span title='manual'>⊕</span> ";
|
||||||
|
} else {
|
||||||
|
$mode = " <span title='$mode'>⊗</span> ";
|
||||||
|
}
|
||||||
|
|
||||||
|
if($desi ne "off") {
|
||||||
|
$desi .= " °C";
|
||||||
|
}
|
||||||
|
|
||||||
|
if($battery ne "ok") {
|
||||||
|
$battery = "Check Battery: " . $battery . "<br />";
|
||||||
|
} else {
|
||||||
|
$battery = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
$ret = "<span class='widget_fht80_alias'>" . $label . "</span><br />" . $battery;
|
||||||
|
$ret .= "<span title='$temptimestamp'>" . $temp . "</span>" . " °C" . $mode;
|
||||||
|
$ret .= "<span title='Actuator: $actuator'>" . $desi . "</span>";
|
||||||
|
|
||||||
|
return $ret;
|
||||||
|
}
|
||||||
|
1;
|
@ -416,12 +416,12 @@ function init_handlers() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#widget_menue_delete").click(function () {
|
$("#widget_menue_delete").click(function () {
|
||||||
$("#label_deletewidget").html("xy");
|
$("#label_deletewidget").html(get_current_widget_id());
|
||||||
$("#dialog_deletewidget").dialog("open");
|
$("#dialog_deletewidget").dialog("open");
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#widget_menue_edit").click(function () {
|
$("#widget_menue_edit").click(function () {
|
||||||
$("#label_editwidget").html("xy");
|
$("#label_editwidget").html(get_current_widget_id());
|
||||||
$("#dialog_editwidget").dialog("open");
|
$("#dialog_editwidget").dialog("open");
|
||||||
$("#widget_menue").hide();
|
$("#widget_menue").hide();
|
||||||
close_widget_menue = true;
|
close_widget_menue = true;
|
||||||
|
@ -245,7 +245,7 @@ function init_dialogs() {
|
|||||||
type: "GET",
|
type: "GET",
|
||||||
async: false,
|
async: false,
|
||||||
url: "../../ajax/global/deleteWidget",
|
url: "../../ajax/global/deleteWidget",
|
||||||
data: "view_id=" + view_id + "&widget_id" + widget_id,
|
data: "view_id=" + view_id + "&widget_id=" + widget_id,
|
||||||
context: document.body,
|
context: document.body,
|
||||||
success: function (jsondata) {
|
success: function (jsondata) {
|
||||||
console.log("widget deleted");
|
console.log("widget deleted");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user