forked from community/product-iots
parent
7481505342
commit
ec9e54a3b3
@ -1,13 +1,18 @@
|
|||||||
function onRequest(context){
|
function onRequest(context){
|
||||||
context.sketchPath = "api/device/sketch";
|
|
||||||
var groupId = request.getParameter("groupId");
|
var groupId = request.getParameter("groupId");
|
||||||
|
var title;
|
||||||
if (groupId){
|
if (groupId){
|
||||||
context.groupId = groupId;
|
context.groupId = groupId;
|
||||||
context.title = "Group Analytics";
|
title = request.getParameter("name");
|
||||||
}else{
|
}else{
|
||||||
context.groupId = 0;
|
context.groupId = 0;
|
||||||
context.title = "Device Analytics";
|
var deviceModule = require("/modules/device.js").deviceModule;
|
||||||
|
var deviceId = request.getParameter("deviceId");
|
||||||
|
var deviceType = request.getParameter("deviceType");
|
||||||
|
|
||||||
|
title = deviceModule.getDevice(deviceType, deviceId).name;
|
||||||
}
|
}
|
||||||
|
context.title = title + " Analytics";
|
||||||
|
|
||||||
return context;
|
return context;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue