mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #759 from GDLMadushanka/master
Redirecting to respective analytics pages depending on the device type
This commit is contained in:
commit
6776771fc7
@ -519,8 +519,8 @@
|
||||
{{/zone}}
|
||||
|
||||
{{#zone "bottomJs"}}
|
||||
<script id="device-listing" data-analitics-url="{{analyticsURL}}" data-current-user="{{@user.username}}" data-device-types="{{deviceTypes}}"
|
||||
type="text/x-handlebars-template"></script>
|
||||
<script id="device-listing" data-server-url="{{serverUrl}}" data-current-user="{{@user.username}}" data-device-types="{{deviceTypes}}"
|
||||
data-portal-url="{{portalUrl}}" data-user-domain="{{userDomain}}" type="text/x-handlebars-template"></script>
|
||||
{{js "js/listing.js"}}
|
||||
{{/zone}}
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ function onRequest(context) {
|
||||
var userModule = require("/app/modules/business-controllers/user.js")["userModule"];
|
||||
var deviceModule = require("/app/modules/business-controllers/device.js")["deviceModule"];
|
||||
var groupModule = require("/app/modules/business-controllers/group.js")["groupModule"];
|
||||
|
||||
|
||||
var groupId = request.getParameter("groupId");
|
||||
|
||||
var viewModel = {};
|
||||
@ -60,6 +60,8 @@ function onRequest(context) {
|
||||
if (data) {
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
var config = utility.getDeviceTypeConfig(data[i]);
|
||||
var log = new Log("devices.js");
|
||||
|
||||
if (!config) {
|
||||
continue;
|
||||
}
|
||||
@ -70,7 +72,8 @@ function onRequest(context) {
|
||||
"label": deviceType.label,
|
||||
"thumb": utility.getDeviceThumb(data[i]),
|
||||
"analyticsEnabled": deviceType.analyticsEnabled,
|
||||
"groupingEnabled": deviceType.groupingEnabled
|
||||
"groupingEnabled": deviceType.groupingEnabled,
|
||||
"analyticsView" : deviceType.analyticsView
|
||||
});
|
||||
}
|
||||
}
|
||||
@ -80,9 +83,11 @@ function onRequest(context) {
|
||||
}
|
||||
|
||||
var mdmProps = require("/app/modules/conf-reader/main.js")["conf"];
|
||||
var analyticsServer = mdmProps["dashboardServerURL"];
|
||||
var analyticsURL = analyticsServer + "/portal/t/" + context.user.userDomain + "/dashboards/android-iot/battery?owner=" + context.user.username + "&deviceId=";
|
||||
viewModel.analyticsURL = analyticsURL;
|
||||
|
||||
var serverUrl = mdmProps["httpsURL"];
|
||||
var portalUrl = mdmProps["portalURL"];
|
||||
var userDomain = context.user.domain;
|
||||
viewModel.serverUrl = serverUrl;
|
||||
viewModel.portalUrl = portalUrl;
|
||||
viewModel.userDomain = userDomain;
|
||||
return viewModel;
|
||||
}
|
||||
|
||||
@ -224,6 +224,22 @@ function loadDevices(searchType, searchParam) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Read "analyticsView" from config.json and return value if exists
|
||||
function getAnalyticsView(type) {
|
||||
var deviceTypes = deviceListing.data("deviceTypes");
|
||||
for (var i = 0; i < deviceTypes.length; i++) {
|
||||
if (deviceTypes[i].type == type) {
|
||||
var analyticsView = deviceTypes[i].analyticsView;
|
||||
if (analyticsEnabled == undefined) {
|
||||
// if undefined go to default analytics view
|
||||
return "none";
|
||||
}
|
||||
return analyticsView;
|
||||
}
|
||||
}
|
||||
return "none";
|
||||
}
|
||||
|
||||
function groupingEnabled(type) {
|
||||
var deviceTypes = deviceListing.data("deviceTypes");
|
||||
for (var i = 0; i < deviceTypes.length; i++) {
|
||||
@ -323,12 +339,20 @@ function loadDevices(searchType, searchParam) {
|
||||
var deviceType = row.deviceType;
|
||||
var deviceIdentifier = row.deviceIdentifier;
|
||||
var html = '<span></span>';
|
||||
var statURL = $("#device-listing").data("analitics-url");
|
||||
var portalUrl = $("#device-listing").data("portal-url");
|
||||
var serverUrl = $("#device-listing").data("server-url");
|
||||
var userDomain = $("#device-listing").data("userDomain");
|
||||
var statURL;
|
||||
if (status != 'REMOVED') {
|
||||
html = '';
|
||||
|
||||
if (analyticsEnabled(row.deviceType)) {
|
||||
|
||||
// redirecting to respective analytics view depending on device configs
|
||||
switch (getAnalyticsView(deviceType)) {
|
||||
case "DAS" : { statURL =portalUrl + "/portal/t/"+ userDomain+ "/dashboards/android-iot/battery?owner=" +currentUser+"&deviceId=";break;}
|
||||
default : {statURL=context+ "/device/" + row.deviceType +"/analytics?deviceId="}
|
||||
}
|
||||
|
||||
html += '<a href="' + statURL +
|
||||
deviceIdentifier + '&deviceName=' + row.name + '" ' + 'data-click-event="remove-form"' +
|
||||
|
||||
Loading…
Reference in New Issue
Block a user