mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #827 from rasika/filter-features
Adding filter out features
This commit is contained in:
commit
c3d3975a8c
@ -79,18 +79,19 @@ var operationModule = function () {
|
|||||||
return featuresList;
|
return featuresList;
|
||||||
};
|
};
|
||||||
|
|
||||||
publicMethods.getControlOperations = function (deviceType) {
|
publicMethods.getControlOperations = function (device) {
|
||||||
|
var deviceType = device.type;
|
||||||
var operations = privateMethods.getOperationsFromFeatures(deviceType, "operation");
|
var operations = privateMethods.getOperationsFromFeatures(deviceType, "operation");
|
||||||
var features = utility.getDeviceTypeConfig(deviceType).deviceType.features;
|
var features = utility.getDeviceTypeConfig(deviceType).deviceType.features;
|
||||||
for (var op in operations) {
|
for (var op in operations) {
|
||||||
var iconIdentifier = operations[op].operation;
|
var iconIdentifier = operations[op].operation;
|
||||||
if (features && features[iconIdentifier]) {
|
if (features && features[iconIdentifier]) {
|
||||||
var icon = features[iconIdentifier].icon;
|
var icon = features[iconIdentifier].icon;
|
||||||
var isCloud = devicemgtProps["isCloud"];
|
//TODO: need improve this check to get feature availability from agent side
|
||||||
//TODO: remove isCloud check once able to verify features from the device agent
|
var filter = features[iconIdentifier].filter;
|
||||||
var isDisabled = features[iconIdentifier].isDisabled;
|
if (device && filter && filter.property && device[filter.property] !== filter.value) {
|
||||||
if (isDisabled && isCloud) {
|
operations[op]["isDisabled"] = true;
|
||||||
operations[op]["isDisabled"] = isDisabled;
|
operations[op]["disabledText"] = filter.text;
|
||||||
} else {
|
} else {
|
||||||
operations[op]["isDisabled"] = false;
|
operations[op]["isDisabled"] = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,7 +22,7 @@ function onRequest(context) {
|
|||||||
var device = context.unit.params.device;
|
var device = context.unit.params.device;
|
||||||
var autoCompleteParams = context.unit.params.autoCompleteParams;
|
var autoCompleteParams = context.unit.params.autoCompleteParams;
|
||||||
var encodedFeaturePayloads=context.unit.params.encodedFeaturePayloads;
|
var encodedFeaturePayloads=context.unit.params.encodedFeaturePayloads;
|
||||||
var controlOperations = operationModule.getControlOperations(device.type);
|
var controlOperations = operationModule.getControlOperations(device);
|
||||||
var queryParams = [];
|
var queryParams = [];
|
||||||
var formParams = [];
|
var formParams = [];
|
||||||
var pathParams = [];
|
var pathParams = [];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user