From c9dbcfe57d7183478b0b90e49593ea907835e325 Mon Sep 17 00:00:00 2001 From: marcproe <> Date: Sat, 20 Jul 2013 13:57:54 +0000 Subject: [PATCH] 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 --- fhem/contrib/YAF/CHANGED | 1 + .../YAF/FHEM/YAF/widgets/fht80/fht80.pm | 234 ++++++++++++++++++ .../YAF/FHEM/YAF/widgets/fht80/www/.gitkeep | 0 .../contrib/YAF/FHEM/YAF/www/js/yaf-basics.js | 4 +- .../YAF/FHEM/YAF/www/js/yaf-dialogs.js | 2 +- 5 files changed, 238 insertions(+), 3 deletions(-) create mode 100644 fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm create mode 100644 fhem/contrib/YAF/FHEM/YAF/widgets/fht80/www/.gitkeep diff --git a/fhem/contrib/YAF/CHANGED b/fhem/contrib/YAF/CHANGED index 1b5aa242e..4d08cc329 100644 --- a/fhem/contrib/YAF/CHANGED +++ b/fhem/contrib/YAF/CHANGED @@ -1 +1,2 @@ +- Added widget fht80 (marcproe) - Added control_yaf.txt to support update \ No newline at end of file diff --git a/fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm b/fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm new file mode 100644 index 000000000..9647a49f5 --- /dev/null +++ b/fhem/contrib/YAF/FHEM/YAF/widgets/fht80/fht80.pm @@ -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 . +# +######################################################################################## +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 = " + "; + + $output .= "
+ + "; + + 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 = " "; + } else { + $mode = " "; + } + + if($desi ne "off") { + $desi .= " °C"; + } + + if($battery ne "ok") { + $battery = "Check Battery: " . $battery . "
"; + } else { + $battery = ""; + } + + $ret = "" . $label . "
" . $battery; + $ret .= "" . $temp . "" . " °C" . $mode; + $ret .= "" . $desi . ""; + + return $ret; +} +1; diff --git a/fhem/contrib/YAF/FHEM/YAF/widgets/fht80/www/.gitkeep b/fhem/contrib/YAF/FHEM/YAF/widgets/fht80/www/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-basics.js b/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-basics.js index c53887893..895b96dd4 100644 --- a/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-basics.js +++ b/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-basics.js @@ -416,12 +416,12 @@ function init_handlers() { }); $("#widget_menue_delete").click(function () { - $("#label_deletewidget").html("xy"); + $("#label_deletewidget").html(get_current_widget_id()); $("#dialog_deletewidget").dialog("open"); }); $("#widget_menue_edit").click(function () { - $("#label_editwidget").html("xy"); + $("#label_editwidget").html(get_current_widget_id()); $("#dialog_editwidget").dialog("open"); $("#widget_menue").hide(); close_widget_menue = true; diff --git a/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-dialogs.js b/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-dialogs.js index 5e6732364..324e96c0e 100644 --- a/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-dialogs.js +++ b/fhem/contrib/YAF/FHEM/YAF/www/js/yaf-dialogs.js @@ -245,7 +245,7 @@ function init_dialogs() { type: "GET", async: false, 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, success: function (jsondata) { console.log("widget deleted");