mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
removing duplicate methoads
This commit is contained in:
parent
7b3db2bdd6
commit
7698c12d80
@ -41,22 +41,22 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
/* for device list sorting drop down */
|
/* for device list sorting drop down */
|
||||||
$(".ctrl-filter-type-switcher").popover({
|
$(".ctrl-filter-type-switcher").popover({
|
||||||
html : true,
|
html: true,
|
||||||
content : function () {
|
content: function () {
|
||||||
return $("#content-filter-types").html();
|
return $("#content-filter-types").html();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".ast-container").on("click", ".claim-btn", function(e){
|
$(".ast-container").on("click", ".claim-btn", function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
var deviceId = $(this).data("deviceid");
|
var deviceId = $(this).data("deviceid");
|
||||||
var deviceListing = $("#device-listing");
|
var deviceListing = $("#device-listing");
|
||||||
var currentUser = deviceListing.data("current-user");
|
var currentUser = deviceListing.data("current-user");
|
||||||
var serviceURL = "/temp-controller-agent/enrollment/claim?username=" + currentUser;
|
var serviceURL = "/temp-controller-agent/enrollment/claim?username=" + currentUser;
|
||||||
var deviceIdentifier = {id: deviceId, type: "TemperatureController"};
|
var deviceIdentifier = {id: deviceId, type: "TemperatureController"};
|
||||||
invokerUtil.put(serviceURL, deviceIdentifier, function(message){
|
invokerUtil.put(serviceURL, deviceIdentifier, function (message) {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
}, function(message){
|
}, function (message) {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -68,15 +68,15 @@ $(document).ready(function () {
|
|||||||
* @param button: Select All Device button
|
* @param button: Select All Device button
|
||||||
*/
|
*/
|
||||||
function selectAllDevices(button) {
|
function selectAllDevices(button) {
|
||||||
if(!$(button).data('select')){
|
if (!$(button).data('select')) {
|
||||||
$(deviceCheckbox).each(function(index){
|
$(deviceCheckbox).each(function (index) {
|
||||||
$(this).prop('checked', true);
|
$(this).prop('checked', true);
|
||||||
addDeviceSelectedClass(this);
|
addDeviceSelectedClass(this);
|
||||||
});
|
});
|
||||||
$(button).data('select', true);
|
$(button).data('select', true);
|
||||||
$(button).html('Deselect All Devices');
|
$(button).html('Deselect All Devices');
|
||||||
}else{
|
} else {
|
||||||
$(deviceCheckbox).each(function(index){
|
$(deviceCheckbox).each(function (index) {
|
||||||
$(this).prop('checked', false);
|
$(this).prop('checked', false);
|
||||||
addDeviceSelectedClass(this);
|
addDeviceSelectedClass(this);
|
||||||
});
|
});
|
||||||
@ -92,7 +92,7 @@ function selectAllDevices(button) {
|
|||||||
* @param selection: Selection button
|
* @param selection: Selection button
|
||||||
*/
|
*/
|
||||||
function changeDeviceView(view, selection) {
|
function changeDeviceView(view, selection) {
|
||||||
$(".view-toggle").each(function() {
|
$(".view-toggle").each(function () {
|
||||||
$(this).removeClass("selected");
|
$(this).removeClass("selected");
|
||||||
});
|
});
|
||||||
$(selection).addClass("selected");
|
$(selection).addClass("selected");
|
||||||
@ -117,27 +117,25 @@ function addDeviceSelectedClass(checkbox) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function toTitleCase(str) {
|
function toTitleCase(str) {
|
||||||
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
|
return str.replace(/\w\S*/g, function (txt) {
|
||||||
|
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var deviceTypeCount, compiledDeviceTypesCount = 0;
|
var deviceTypeCount, compiledDeviceTypesCount = 0;
|
||||||
|
|
||||||
function htmlspecialchars(text){
|
function htmlspecialchars(text) {
|
||||||
return jQuery('<div/>').text(text).html();
|
return jQuery('<div/>').text(text).html();
|
||||||
}
|
}
|
||||||
|
|
||||||
function htmlspecialchars(text){
|
function loadDevices(searchType, searchParam) {
|
||||||
return jQuery('<div/>').text(text).html();
|
|
||||||
}
|
|
||||||
|
|
||||||
function loadDevices(searchType, searchParam){
|
|
||||||
var deviceListing = $("#device-listing");
|
var deviceListing = $("#device-listing");
|
||||||
var deviceListingSrc = deviceListing.attr("src");
|
var deviceListingSrc = deviceListing.attr("src");
|
||||||
var currentUser = deviceListing.data("currentUser");
|
var currentUser = deviceListing.data("currentUser");
|
||||||
|
|
||||||
$('#ast-container').html("");
|
$('#ast-container').html("");
|
||||||
deviceTypeCount = deviceTypesList.length;
|
deviceTypeCount = deviceTypesList.length;
|
||||||
if(deviceTypesList.length > 0){
|
if (deviceTypesList.length > 0) {
|
||||||
for (var i = 0; i < deviceTypesList.length; i++) {
|
for (var i = 0; i < deviceTypesList.length; i++) {
|
||||||
var viewModel = {};
|
var viewModel = {};
|
||||||
viewModel.thumb = deviceTypesList[i].thumb;
|
viewModel.thumb = deviceTypesList[i].thumb;
|
||||||
@ -163,12 +161,12 @@ function loadDevices(searchType, searchParam){
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function compileTemplate(viewModel, templateSrc){
|
function compileTemplate(viewModel, templateSrc) {
|
||||||
$.template("device-listing", templateSrc, function (template) {
|
$.template("device-listing", templateSrc, function (template) {
|
||||||
$("#ast-container").html($("#ast-container").html() + template(viewModel));
|
$("#ast-container").html($("#ast-container").html() + template(viewModel));
|
||||||
compiledDeviceTypesCount++;
|
compiledDeviceTypesCount++;
|
||||||
if(deviceTypeCount == compiledDeviceTypesCount){
|
if (deviceTypeCount == compiledDeviceTypesCount) {
|
||||||
$('#device-type-grid').datatables_extended({"bFilter": false, "order": [[ 1, "asc" ]]});
|
$('#device-type-grid').datatables_extended({"bFilter": false, "order": [[1, "asc"]]});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -179,17 +177,16 @@ function compileTemplate(viewModel, templateSrc){
|
|||||||
var deviceCheckbox = "#ast-container .ctrl-wr-asset .itm-select input[type='checkbox']";
|
var deviceCheckbox = "#ast-container .ctrl-wr-asset .itm-select input[type='checkbox']";
|
||||||
var assetContainer = "#ast-container";
|
var assetContainer = "#ast-container";
|
||||||
|
|
||||||
function openCollapsedNav(){
|
function openCollapsedNav() {
|
||||||
$('.wr-hidden-nav-toggle-btn').addClass('active');
|
$('.wr-hidden-nav-toggle-btn').addClass('active');
|
||||||
$('#hiddenNav').slideToggle('slideDown', function(){
|
$('#hiddenNav').slideToggle('slideDown', function () {
|
||||||
if($(this).css('display') == 'none'){
|
if ($(this).css('display') == 'none') {
|
||||||
$('.wr-hidden-nav-toggle-btn').removeClass('active');
|
$('.wr-hidden-nav-toggle-btn').removeClass('active');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* DOM ready functions.
|
* DOM ready functions.
|
||||||
*/
|
*/
|
||||||
@ -204,22 +201,22 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
/* for device list sorting drop down */
|
/* for device list sorting drop down */
|
||||||
$(".ctrl-filter-type-switcher").popover({
|
$(".ctrl-filter-type-switcher").popover({
|
||||||
html : true,
|
html: true,
|
||||||
content : function () {
|
content: function () {
|
||||||
return $("#content-filter-types").html();
|
return $("#content-filter-types").html();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".ast-container").on("click", ".claim-btn", function(e){
|
$(".ast-container").on("click", ".claim-btn", function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
var deviceId = $(this).data("deviceid");
|
var deviceId = $(this).data("deviceid");
|
||||||
var deviceListing = $("#device-listing");
|
var deviceListing = $("#device-listing");
|
||||||
var currentUser = deviceListing.data("current-user");
|
var currentUser = deviceListing.data("current-user");
|
||||||
var serviceURL = "/temp-controller-agent/enrollment/claim?username=" + currentUser;
|
var serviceURL = "/temp-controller-agent/enrollment/claim?username=" + currentUser;
|
||||||
var deviceIdentifier = {id: deviceId, type: "TemperatureController"};
|
var deviceIdentifier = {id: deviceId, type: "TemperatureController"};
|
||||||
invokerUtil.put(serviceURL, deviceIdentifier, function(message){
|
invokerUtil.put(serviceURL, deviceIdentifier, function (message) {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
}, function(message){
|
}, function (message) {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -230,20 +227,20 @@ $(document).ready(function () {
|
|||||||
$("[data-toggle=popover]").popover();
|
$("[data-toggle=popover]").popover();
|
||||||
|
|
||||||
$(".ctrl-filter-type-switcher").popover({
|
$(".ctrl-filter-type-switcher").popover({
|
||||||
html : true,
|
html: true,
|
||||||
content: function() {
|
content: function () {
|
||||||
return $('#content-filter-types').html();
|
return $('#content-filter-types').html();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#nav').affix({
|
$('#nav').affix({
|
||||||
offset: {
|
offset: {
|
||||||
top: $('header').height()
|
top: $('header').height()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$(document).on("click", "tr.clickable-row", function(){
|
$(document).on("click", "tr.clickable-row", function () {
|
||||||
window.document.location = $(this).data('href');
|
window.document.location = $(this).data('href');
|
||||||
})
|
})
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user