mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-05 17:48:44 +00:00
98_weekprofile: new attribute 'widgetEditOnNewPage'
git-svn-id: https://svn.fhem.de/fhem/trunk@10352 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
79eec35e6e
commit
274f46609c
@ -1,5 +1,7 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- feature: 98_weekprofile: new attribute 'widgetEditOnNewPage' to edit
|
||||
weekprofile on new web page
|
||||
- change: 89_HEATRONIC: new feature: set heating mode, set temperature
|
||||
new reading ch_code
|
||||
- bugfix: FB_CALLMONITOR: empty phonebooks will be recognized correctly,
|
||||
|
@ -310,7 +310,7 @@ sub weekprofile_Initialize($)
|
||||
$hash->{StateFn} = "weekprofile_State";
|
||||
$hash->{NotifyFn} = "weekprofile_Notify";
|
||||
$hash->{AttrFn} = "weekprofile_Attr";
|
||||
$hash->{AttrList} = "widgetWeekdays configFile ".$readingFnAttributes;
|
||||
$hash->{AttrList} = "widgetWeekdays widgetEditOnNewPage:0,1 configFile ".$readingFnAttributes;
|
||||
|
||||
$hash->{FW_summaryFn} = "weekprofile_SummaryFn";
|
||||
|
||||
@ -659,11 +659,13 @@ sub weekprofile_SummaryFn()
|
||||
my $html;
|
||||
|
||||
my $iconName = AttrVal($d, "icon", "edit_settings");
|
||||
my $icon = FW_iconName($iconName) ? FW_makeImage($iconName,$iconName,"icon") : "";
|
||||
$icon = "<a name=\"$d.edit\" onclick=\"weekprofile_DoEditWeek('$d')\" href=\"javascript:void(0)\">$icon</a>";
|
||||
my $editNewpage = AttrVal($d, "widgetEditOnNewPage", 0);
|
||||
|
||||
my $lnk = AttrVal($d, "alias", $d);
|
||||
$lnk = "<a name=\"$d.detail\" href=\"$FW_ME$FW_subdir?detail=$d\">$lnk</a>" if($show_links);
|
||||
my $editIcon = FW_iconName($iconName) ? FW_makeImage($iconName,$iconName,"icon") : "";
|
||||
$editIcon = "<a name=\"$d.edit\" onclick=\"weekprofile_DoEditWeek('$d','$editNewpage')\" href=\"javascript:void(0)\">$editIcon</a>";
|
||||
|
||||
my $lnkDetails = AttrVal($d, "alias", $d);
|
||||
$lnkDetails = "<a name=\"$d.detail\" href=\"$FW_ME$FW_subdir?detail=$d\">$lnkDetails</a>" if($show_links);
|
||||
|
||||
my $args = "weekprofile";
|
||||
my $curr = undef;
|
||||
@ -673,7 +675,7 @@ sub weekprofile_SummaryFn()
|
||||
$html .= "<tr><td>";
|
||||
$html .= "<div class=\"devType\" id=\"weekprofile.$d.header\">";
|
||||
$html .= "<div class=\"devType\" id=\"weekprofile.menu.base\">";
|
||||
$html .= $icon." ".$lnk;
|
||||
$html .= $editIcon." ".$lnkDetails;
|
||||
$html .= "</di></div></td></tr>";
|
||||
$html .= "<tr><td>";
|
||||
$html .= "<div class=\"fhemWidget\" informId=\"$d\" cmd=\"\" arg=\"$args\" current=\"$curr\" dev=\"$d\">"; # div tag to support inform updates
|
||||
@ -682,6 +684,30 @@ sub weekprofile_SummaryFn()
|
||||
$html .= "</table>";
|
||||
return $html;
|
||||
}
|
||||
##############################################
|
||||
sub weekprofile_editOnNewpage(@)
|
||||
{
|
||||
my ($device, $prf,$backurl) = @_;
|
||||
my $hash = $defs{$device};
|
||||
|
||||
$backurl="?" if(!defined($backurl));
|
||||
my $args = "weekprofile,EDIT,$backurl";
|
||||
|
||||
my $html;
|
||||
$html .= "<html>";
|
||||
$html .= "<table>";
|
||||
$html .= "<tr><td>";
|
||||
$html .= "<div class=\"devType\" id=\"weekprofile.$device.header\">";
|
||||
$html .= "<div class=\"devType\" id=\"weekprofile.menu.base\">";
|
||||
$html .= "</di></div></td></tr>";
|
||||
$html .= "<tr><td>";
|
||||
$html .= "<div class=\"fhemWidget\" informId=\"$device\" cmd=\"\" arg=\"$args\" current=\"$prf\" dev=\"$device\">"; # div tag to support inform updates
|
||||
$html .= "</div>";
|
||||
$html .= "</td></tr>";
|
||||
$html .= "</table>";
|
||||
$html .= "</html>";
|
||||
return $html;
|
||||
}
|
||||
1;
|
||||
|
||||
=pod
|
||||
@ -764,6 +790,9 @@ sub weekprofile_SummaryFn()
|
||||
Liste von Wochentagen getrennt durch ',' welche im Widget angzeigt werden.
|
||||
Beginnend bei Montag. z.B.
|
||||
<code>attr name widgetWeekdays Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag</code>
|
||||
</li>
|
||||
<li>widgetEditOnNewPage<br>
|
||||
Wenn gesetzt ('1'), dann wird die Bearbeitung auf einer separaten\neuen Webseite gestartet.
|
||||
</li>
|
||||
<li>configFile<br>
|
||||
Pfad und Dateiname wo die Profile gespeichert werden sollen.
|
||||
|
@ -39,14 +39,23 @@ function FW_weekprofileInputDialog(title,inp,parent, callback)
|
||||
});
|
||||
}
|
||||
|
||||
function weekprofile_DoEditWeek(devName)
|
||||
function weekprofile_DoEditWeek(devName,newPage)
|
||||
{
|
||||
var widget = $('div[informid="'+devName+'"]').get(0);
|
||||
widget.MODE = 'EDIT';
|
||||
|
||||
$(widget.MENU.BASE).hide();
|
||||
|
||||
widget.setValueFn("REUSEPRF");
|
||||
|
||||
if (newPage == 1) {
|
||||
var url = location.href;
|
||||
var pos = url.indexOf('?');
|
||||
if (pos >=0)
|
||||
url = url.substr(pos);
|
||||
else
|
||||
url='';
|
||||
window.location.assign(FW_root+'?cmd={weekprofile_editOnNewpage("'+widget.DEVICE+'","'+widget.CURPRF+'","'+url+'");;}');
|
||||
} else {
|
||||
widget.MODE = 'EDIT';
|
||||
$(widget.MENU.BASE).hide();
|
||||
widget.setValueFn("REUSEPRF");
|
||||
}
|
||||
}
|
||||
|
||||
function FW_weekprofilePRFChached(devName,select)
|
||||
@ -357,15 +366,24 @@ function FW_weekprofilePrepAndSendProf(devName)
|
||||
widget.PROFILE[day] = prf[day];
|
||||
}
|
||||
}
|
||||
widget.MODE = "SHOW";
|
||||
widget.setValueFn("REUSEPRF");
|
||||
FW_weekprofileBack(widget);
|
||||
}
|
||||
|
||||
function FW_weekprofileBack(widget)
|
||||
{
|
||||
if (widget.SHOWURL){
|
||||
window.location.assign(FW_root+widget.SHOWURL);
|
||||
}
|
||||
else {
|
||||
widget.MODE = "SHOW";
|
||||
widget.setValueFn("REUSEPRF");
|
||||
}
|
||||
}
|
||||
|
||||
function FW_weekprofileEditAbort(devName)
|
||||
{
|
||||
var widget = $('div[informid="'+devName+'"]').get(0);
|
||||
widget.MODE = "SHOW";
|
||||
widget.setValueFn("REUSEPRF");
|
||||
FW_weekprofileBack(widget);
|
||||
}
|
||||
|
||||
function FW_weekprofileSetValue(devName,data)
|
||||
@ -383,7 +401,7 @@ function FW_weekprofileSetValue(devName,data)
|
||||
}
|
||||
|
||||
widget.PROFILE = prf;
|
||||
if (widget.MODE == 'SHOW' || widget.MODE == 'CREATE')
|
||||
if (widget.MODE == 'SHOW')
|
||||
{
|
||||
FW_weekprofileShow(widget);
|
||||
}
|
||||
@ -416,14 +434,15 @@ function FW_weekprofileGetValues(devName,what,data)
|
||||
function
|
||||
FW_weekprofileCreate(elName, devName, vArr, currVal, set, params, cmd)
|
||||
{
|
||||
// called from FW_replaceWidget fhemweb.js
|
||||
if( 0 ) {
|
||||
console.log( "elName: "+elName );
|
||||
console.log( "devName: "+devName );
|
||||
console.log( "vArr: "+vArr );
|
||||
console.log( "currVal: "+currVal );
|
||||
console.log( "set: "+set );
|
||||
console.log( "params: "+params );
|
||||
console.log( "cmd: "+cmd );
|
||||
console.log( "elName: "+elName );
|
||||
console.log( "devName: "+devName ); // attr dev
|
||||
console.log( "vArr: "+vArr ); // attr arg split ','
|
||||
console.log( "currVal: "+currVal ); // attr current
|
||||
console.log( "set: "+set ); // attr cmd split ' ' first entry
|
||||
console.log( "params: "+params ); // attr cmd list split ' ' without first entry
|
||||
console.log( "cmd: "+cmd ); // function for ToDo
|
||||
}
|
||||
|
||||
if(!vArr.length || vArr[0] != "weekprofile")
|
||||
@ -451,7 +470,13 @@ FW_weekprofileCreate(elName, devName, vArr, currVal, set, params, cmd)
|
||||
}
|
||||
$(widget.HEADER).append(prfCnt);
|
||||
|
||||
widget.MODE = 'CREATE';
|
||||
widget.SHOWURL = null;
|
||||
widget.MODE = 'SHOW';
|
||||
if (vArr.length > 1) {
|
||||
widget.MODE = vArr[1];
|
||||
if (vArr.length > 2)
|
||||
widget.SHOWURL = vArr[2];
|
||||
}
|
||||
widget.DEVICE = devName;
|
||||
widget.WEEKDAYS = shortDays.slice();
|
||||
widget.CURPRF = currVal;
|
||||
|
Loading…
x
Reference in New Issue
Block a user