Initial setup of mycontroller
This commit is contained in:
631
www/controllers/firmwares.js
Normal file
631
www/controllers/firmwares.js
Normal file
@@ -0,0 +1,631 @@
|
||||
/*
|
||||
* Copyright 2015-2018 Jeeva Kandasamy (jkandasa@gmail.com)
|
||||
* and other contributors as indicated by the @author tags.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/* Firmwares type */
|
||||
myControllerModule.controller('FirmwaresTypeController', function(
|
||||
alertService, $scope, $filter, FirmwaresFactory, $state, $uibModal, displayRestError, mchelper, CommonServices, $stateParams) {
|
||||
|
||||
//GUI page settings
|
||||
$scope.headerStringList = $filter('translate')('FIRMWARE_TYPES_DETAIL');
|
||||
$scope.noItemsSystemMsg = $filter('translate')('NO_FIRMWARE_TYPES_SETUP');
|
||||
$scope.noItemsSystemIcon = "fa fa-file-code-o";
|
||||
|
||||
//load empty, configuration, etc.,
|
||||
$scope.mchelper = mchelper;
|
||||
$scope.filteredList=[];
|
||||
|
||||
//data query details
|
||||
$scope.currentPage = 1;
|
||||
$scope.query = CommonServices.getQuery();
|
||||
$scope.queryResponse = {};
|
||||
|
||||
//Get min number
|
||||
$scope.getMin = function(item1, item2){
|
||||
return CommonServices.getMin(item1, item2);
|
||||
};
|
||||
|
||||
//get all items
|
||||
$scope.getAllItems = function(){
|
||||
FirmwaresFactory.getAllFirmwareTypes($scope.query, function(response) {
|
||||
$scope.queryResponse = response;
|
||||
$scope.filteredList = $scope.queryResponse.data;
|
||||
$scope.filterConfig.resultsCount = $scope.queryResponse.query.filteredCount;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
//Hold all the selected item ids
|
||||
$scope.itemIds = [];
|
||||
|
||||
$scope.selectAllItems = function(){
|
||||
CommonServices.selectAllItems($scope);
|
||||
};
|
||||
|
||||
$scope.selectItem = function(item){
|
||||
CommonServices.selectItem($scope, item);
|
||||
};
|
||||
|
||||
//On page change
|
||||
$scope.pageChanged = function(newPage){
|
||||
CommonServices.updatePageChange($scope, newPage);
|
||||
};
|
||||
|
||||
//Filter change method
|
||||
var filterChange = function (filters) {
|
||||
//Reset filter fields and update items
|
||||
CommonServices.updateFiltersChange($scope, filters);
|
||||
};
|
||||
|
||||
$scope.filterConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'name',
|
||||
title: $filter('translate')('NAME'),
|
||||
placeholder: $filter('translate')('FILTER_BY_NAME'),
|
||||
filterType: 'text'
|
||||
},{
|
||||
id: 'id',
|
||||
title: $filter('translate')('TYPE_ID'),
|
||||
placeholder: $filter('translate')('FILTER_BY_TYPE_ID'),
|
||||
filterType: 'text'
|
||||
}
|
||||
],
|
||||
resultsCount: $scope.filteredList.length,
|
||||
appliedFilters: [],
|
||||
onFilterChange: filterChange
|
||||
};
|
||||
|
||||
//Sort columns
|
||||
var sortChange = function (sortId, isAscending) {
|
||||
//Reset sort type and update items
|
||||
CommonServices.updateSortChange($scope, sortId, isAscending);
|
||||
};
|
||||
|
||||
$scope.sortConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'name',
|
||||
title: $filter('translate')('NAME'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'id',
|
||||
title: $filter('translate')('TYPE_ID'),
|
||||
sortType: 'text'
|
||||
}
|
||||
],
|
||||
onSortChange: sortChange
|
||||
};
|
||||
|
||||
//Edit item
|
||||
$scope.edit = function () {
|
||||
if($scope.itemIds.length == 1){
|
||||
$state.go("firmwaresTypeAddEdit", {'id': $scope.itemIds[0]});
|
||||
}
|
||||
};
|
||||
|
||||
//Delete item(s)
|
||||
$scope.delete = function (size) {
|
||||
var modalInstance = $uibModal.open({
|
||||
templateUrl: 'partials/common-html/delete-modal.html',
|
||||
controller: 'ControllerDeleteModal',
|
||||
size: size,
|
||||
resolve: {}
|
||||
});
|
||||
|
||||
modalInstance.result.then(function () {
|
||||
FirmwaresFactory.deleteFirmwareTypes($scope.itemIds, function(response) {
|
||||
alertService.success($filter('translate')('ITEMS_DELETED_SUCCESSFULLY'));
|
||||
//Update display table
|
||||
$scope.getAllItems();
|
||||
$scope.itemIds = [];
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}),
|
||||
function () {
|
||||
//console.log('Modal dismissed at: ' + new Date());
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
|
||||
//add edit item
|
||||
myControllerModule.controller('FirmwaresTypeControllerAddEdit', function ($scope, CommonServices, alertService, FirmwaresFactory, mchelper, $stateParams, $filter, $state) {
|
||||
//GUI page settings
|
||||
$scope.showHeaderUpdate = $stateParams.id;
|
||||
$scope.headerStringAdd = $filter('translate')('ADD_FIRMWARE_TYPE');
|
||||
$scope.headerStringUpdate = $filter('translate')('UPDATE_FIRMWARE_TYPE');
|
||||
$scope.cancelButtonState = "firmwaresTypeList"; //Cancel button state
|
||||
$scope.saveProgress = false;
|
||||
//$scope.isSettingChange = false;
|
||||
|
||||
$scope.cs = CommonServices;
|
||||
|
||||
$scope.firmwareType = {};
|
||||
$scope.ftypeId = $stateParams.id;
|
||||
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.getFirmwareType({"refId":$stateParams.id},function(response) {
|
||||
$scope.firmwareType = response;
|
||||
$scope.firmwareType.newId = $scope.firmwareType.id;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
//Save data
|
||||
$scope.save = function(){
|
||||
$scope.saveProgress = true;
|
||||
if($scope.firmwareType.id === undefined){
|
||||
$scope.firmwareType.id = $scope.firmwareType.newId;
|
||||
}
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.updateFirmwareType($scope.firmwareType,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_UPDATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresTypeList");
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
$scope.saveProgress = false;
|
||||
});
|
||||
}else{
|
||||
FirmwaresFactory.createFirmwareType($scope.firmwareType,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_CREATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresTypeList");
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
$scope.saveProgress = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
//type over
|
||||
|
||||
/* Firmwares version */
|
||||
myControllerModule.controller('FirmwaresVersionController', function(
|
||||
alertService, $scope, $filter, FirmwaresFactory, $state, $uibModal, displayRestError, mchelper, CommonServices, $stateParams) {
|
||||
|
||||
//GUI page settings
|
||||
$scope.headerStringList = $filter('translate')('FIRMWARE_VERSIONS_DETAIL');
|
||||
$scope.noItemsSystemMsg = $filter('translate')('NO_FIRMWARE_VERSIONS_SETUP');
|
||||
$scope.noItemsSystemIcon = "fa fa-file-code-o";
|
||||
|
||||
//load empty, configuration, etc.,
|
||||
$scope.mchelper = mchelper;
|
||||
$scope.filteredList=[];
|
||||
|
||||
//data query details
|
||||
$scope.currentPage = 1;
|
||||
$scope.query = CommonServices.getQuery();
|
||||
$scope.queryResponse = {};
|
||||
|
||||
//Get min number
|
||||
$scope.getMin = function(item1, item2){
|
||||
return CommonServices.getMin(item1, item2);
|
||||
};
|
||||
|
||||
//get all items
|
||||
$scope.getAllItems = function(){
|
||||
FirmwaresFactory.getAllFirmwareVersions($scope.query, function(response) {
|
||||
$scope.queryResponse = response;
|
||||
$scope.filteredList = $scope.queryResponse.data;
|
||||
$scope.filterConfig.resultsCount = $scope.queryResponse.query.filteredCount;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
//Hold all the selected item ids
|
||||
$scope.itemIds = [];
|
||||
|
||||
$scope.selectAllItems = function(){
|
||||
CommonServices.selectAllItems($scope);
|
||||
};
|
||||
|
||||
$scope.selectItem = function(item){
|
||||
CommonServices.selectItem($scope, item);
|
||||
};
|
||||
|
||||
//On page change
|
||||
$scope.pageChanged = function(newPage){
|
||||
CommonServices.updatePageChange($scope, newPage);
|
||||
};
|
||||
|
||||
//Filter change method
|
||||
var filterChange = function (filters) {
|
||||
//Reset filter fields and update items
|
||||
CommonServices.updateFiltersChange($scope, filters);
|
||||
};
|
||||
|
||||
$scope.filterConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'version',
|
||||
title: $filter('translate')('VERSION'),
|
||||
placeholder: $filter('translate')('FILTER_BY_VERSION'),
|
||||
filterType: 'text'
|
||||
},{
|
||||
id: 'id',
|
||||
title: $filter('translate')('VERSION_ID'),
|
||||
placeholder: $filter('translate')('FILTER_BY_VERSION_ID'),
|
||||
filterType: 'text'
|
||||
}
|
||||
],
|
||||
resultsCount: $scope.filteredList.length,
|
||||
appliedFilters: [],
|
||||
onFilterChange: filterChange
|
||||
};
|
||||
|
||||
//Sort columns
|
||||
var sortChange = function (sortId, isAscending) {
|
||||
//Reset sort type and update items
|
||||
CommonServices.updateSortChange($scope, sortId, isAscending);
|
||||
};
|
||||
|
||||
$scope.sortConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'version',
|
||||
title: $filter('translate')('VERSION'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'id',
|
||||
title: $filter('translate')('VERSION_ID'),
|
||||
sortType: 'text'
|
||||
}
|
||||
],
|
||||
onSortChange: sortChange
|
||||
};
|
||||
|
||||
//Edit item
|
||||
$scope.edit = function () {
|
||||
if($scope.itemIds.length == 1){
|
||||
$state.go("firmwaresVersionAddEdit", {'id':$scope.itemIds[0]});
|
||||
}
|
||||
};
|
||||
|
||||
//Delete item(s)
|
||||
$scope.delete = function (size) {
|
||||
var modalInstance = $uibModal.open({
|
||||
templateUrl: 'partials/common-html/delete-modal.html',
|
||||
controller: 'ControllerDeleteModal',
|
||||
size: size,
|
||||
resolve: {}
|
||||
});
|
||||
|
||||
modalInstance.result.then(function () {
|
||||
FirmwaresFactory.deleteFirmwareVersions($scope.itemIds, function(response) {
|
||||
alertService.success($filter('translate')('ITEMS_DELETED_SUCCESSFULLY'));
|
||||
//Update display table
|
||||
$scope.getAllItems();
|
||||
$scope.itemIds = [];
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}),
|
||||
function () {
|
||||
//console.log('Modal dismissed at: ' + new Date());
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
//add edit item
|
||||
myControllerModule.controller('FirmwaresVersionControllerAddEdit', function ($scope, CommonServices, alertService, FirmwaresFactory, mchelper, $stateParams, $filter, $state, CommonServices) {
|
||||
|
||||
//GUI page settings
|
||||
$scope.showHeaderUpdate = $stateParams.id;
|
||||
$scope.headerStringAdd = $filter('translate')('ADD_FIRMWARE_VERSION');
|
||||
$scope.headerStringUpdate = $filter('translate')('UPDATE_FIRMWARE_VERSION');
|
||||
$scope.cancelButtonState = "firmwaresVersionList"; //Cancel button state
|
||||
$scope.saveProgress = false;
|
||||
//$scope.isSettingChange = false;
|
||||
|
||||
$scope.item = {};
|
||||
$scope.itemId = $stateParams.id;
|
||||
$scope.cs = CommonServices;
|
||||
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.getFirmwareVersion({"refId":$stateParams.id},function(response) {
|
||||
$scope.item = response;
|
||||
$scope.item.newId = $scope.item.id;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
//Save data
|
||||
$scope.save = function(){
|
||||
$scope.saveProgress = true;
|
||||
if($scope.item.id === undefined){
|
||||
$scope.item.id = $scope.item.newId;
|
||||
}
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.updateFirmwareVersion($scope.item,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_UPDATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresVersionList");
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
$scope.saveProgress = false;
|
||||
});
|
||||
}else{
|
||||
FirmwaresFactory.createFirmwareVersion($scope.item,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_CREATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresVersionList");
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
$scope.saveProgress = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
//Version over
|
||||
|
||||
|
||||
|
||||
/* Firmware controller */
|
||||
myControllerModule.controller('FirmwaresController', function(
|
||||
alertService, $scope, $filter, FirmwaresFactory, $state, $uibModal, displayRestError, mchelper, CommonServices, $stateParams) {
|
||||
|
||||
//GUI page settings
|
||||
$scope.headerStringList = $filter('translate')('FIRMWARES_DETAIL');
|
||||
$scope.noItemsSystemMsg = $filter('translate')('NO_FIRMWARES_SETUP');
|
||||
$scope.noItemsSystemIcon = "fa fa-file-code-o";
|
||||
|
||||
//load empty, configuration, etc.,
|
||||
$scope.mchelper = mchelper;
|
||||
$scope.filteredList=[];
|
||||
|
||||
//data query details
|
||||
$scope.currentPage = 1;
|
||||
$scope.query = CommonServices.getQuery();
|
||||
$scope.queryResponse = {};
|
||||
|
||||
//Get min number
|
||||
$scope.getMin = function(item1, item2){
|
||||
return CommonServices.getMin(item1, item2);
|
||||
};
|
||||
|
||||
if($stateParams.sensorId){
|
||||
$scope.sensorId = $stateParams.sensorId;
|
||||
}
|
||||
|
||||
//get all items
|
||||
$scope.getAllItems = function(){
|
||||
FirmwaresFactory.getAllFirmwares($scope.query, function(response) {
|
||||
$scope.queryResponse = response;
|
||||
$scope.filteredList = $scope.queryResponse.data;
|
||||
$scope.filterConfig.resultsCount = $scope.queryResponse.query.filteredCount;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
//Hold all the selected item ids
|
||||
$scope.itemIds = [];
|
||||
|
||||
$scope.selectAllItems = function(){
|
||||
CommonServices.selectAllItems($scope);
|
||||
};
|
||||
|
||||
$scope.selectItem = function(item){
|
||||
CommonServices.selectItem($scope, item);
|
||||
};
|
||||
|
||||
//On page change
|
||||
$scope.pageChanged = function(newPage){
|
||||
CommonServices.updatePageChange($scope, newPage);
|
||||
};
|
||||
|
||||
//Filter change method
|
||||
var filterChange = function (filters) {
|
||||
//Reset filter fields and update items
|
||||
CommonServices.updateFiltersChange($scope, filters);
|
||||
};
|
||||
|
||||
$scope.filterConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'typeId',
|
||||
title: $filter('translate')('TYPE_ID'),
|
||||
placeholder: $filter('translate')('FILTER_BY_TYPE_ID'),
|
||||
filterType: 'text'
|
||||
},{
|
||||
id: 'versionId',
|
||||
title: $filter('translate')('VERSION_ID'),
|
||||
placeholder: $filter('translate')('FILTER_BY_VERSION_ID'),
|
||||
filterType: 'text'
|
||||
},{
|
||||
id: 'blocks',
|
||||
title: $filter('translate')('BLOCKS'),
|
||||
placeholder: $filter('translate')('FILTER_BY_BLOCKS'),
|
||||
filterType: 'text'
|
||||
}
|
||||
],
|
||||
resultsCount: $scope.filteredList.length,
|
||||
appliedFilters: [],
|
||||
onFilterChange: filterChange
|
||||
};
|
||||
|
||||
//Sort columns
|
||||
var sortChange = function (sortId, isAscending) {
|
||||
//Reset sort type and update items
|
||||
CommonServices.updateSortChange($scope, sortId, isAscending);
|
||||
};
|
||||
|
||||
$scope.sortConfig = {
|
||||
fields: [
|
||||
{
|
||||
id: 'typeId',
|
||||
title: $filter('translate')('TYPE_ID'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'versionId',
|
||||
title: $filter('translate')('VERSION_ID'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'blocks',
|
||||
title: $filter('translate')('BLOCKS'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'timestamp',
|
||||
title: $filter('translate')('UPLOADED_ON'),
|
||||
sortType: 'text'
|
||||
},{
|
||||
id: 'crc',
|
||||
title: $filter('translate')('CRC'),
|
||||
sortType: 'text'
|
||||
},
|
||||
],
|
||||
onSortChange: sortChange
|
||||
};
|
||||
|
||||
|
||||
//Edit item
|
||||
$scope.edit = function () {
|
||||
if($scope.itemIds.length == 1){
|
||||
$state.go("firmwaresAddEdit", {'id':$scope.itemIds[0]});
|
||||
}
|
||||
};
|
||||
|
||||
//Delete item(s)
|
||||
$scope.delete = function (size) {
|
||||
var modalInstance = $uibModal.open({
|
||||
templateUrl: 'partials/common-html/delete-modal.html',
|
||||
controller: 'ControllerDeleteModal',
|
||||
size: size,
|
||||
resolve: {}
|
||||
});
|
||||
|
||||
modalInstance.result.then(function () {
|
||||
FirmwaresFactory.deleteFirmwares($scope.itemIds, function(response) {
|
||||
alertService.success($filter('translate')('ITEMS_DELETED_SUCCESSFULLY'));
|
||||
//Update display table
|
||||
$scope.getAllItems();
|
||||
$scope.itemIds = [];
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}),
|
||||
function () {
|
||||
//console.log('Modal dismissed at: ' + new Date());
|
||||
}
|
||||
};
|
||||
|
||||
});
|
||||
|
||||
|
||||
//add edit item
|
||||
myControllerModule.controller('FirmwaresControllerAddEdit', function ($scope, CommonServices, displayRestError, alertService, FirmwaresFactory, mchelper, $stateParams, $state, $filter, TypesFactory) {
|
||||
$scope.item = {};
|
||||
|
||||
//GUI page settings
|
||||
$scope.showHeaderUpdate = $stateParams.id;
|
||||
$scope.headerStringAdd = $filter('translate')('ADD_FIRMWARE');
|
||||
$scope.headerStringUpdate = $filter('translate')('UPDATE_FIRMWARE');
|
||||
$scope.cancelButtonState = "firmwaresList"; //Cancel button state
|
||||
$scope.saveProgress = false;
|
||||
//$scope.isSettingChange = false;
|
||||
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.getFirmware({"refId":$stateParams.id},function(response) {
|
||||
$scope.item = response;
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
|
||||
//Pre load
|
||||
$scope.firmwareTypes = TypesFactory.getFirmwareTypes();
|
||||
$scope.firmwareVersions = TypesFactory.getFirmwareVersions();
|
||||
|
||||
//Read File and put it in textarea
|
||||
$scope.displayFileContents = function(contents, fileExtension) {
|
||||
if(fileExtension === 'bin'){
|
||||
$scope.item.fileBytes = Array.from(new Uint8Array(contents));
|
||||
$scope.item.fileType = 'Bin';
|
||||
}else if(fileExtension === 'hex'){
|
||||
$scope.item.fileType = 'Hex';
|
||||
$scope.item.fileString = contents;
|
||||
}else{
|
||||
$scope.item.fileType = 'Hex';
|
||||
$scope.item.fileString = contents;
|
||||
}
|
||||
};
|
||||
|
||||
//Save data
|
||||
$scope.save = function(){
|
||||
$scope.saveProgress = true;
|
||||
if($stateParams.id){
|
||||
FirmwaresFactory.updateFirmware($scope.item,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_UPDATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresList");
|
||||
},function(error){
|
||||
displayRestError.display(error);
|
||||
$scope.saveProgress = false;
|
||||
});
|
||||
}else{
|
||||
FirmwaresFactory.createFirmware($scope.item,function(response) {
|
||||
alertService.success($filter('translate')('ITEM_CREATED_SUCCESSFULLY'));
|
||||
$state.go("firmwaresList");
|
||||
},function(error){
|
||||
$scope.saveProgress = false;
|
||||
displayRestError.display(error);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
}).directive('onReadFile', function ($parse) {
|
||||
return {
|
||||
restrict: 'A',
|
||||
scope: false,
|
||||
link: function(scope, element, attrs) {
|
||||
element.bind('change', function(e) {
|
||||
var onFileReadFn = $parse(attrs.onReadFile);
|
||||
var reader = new FileReader();
|
||||
var fileExtension = element[0].files[0].name.split('.').pop().toLowerCase();
|
||||
reader.onload = function() {
|
||||
var fileContents = reader.result;
|
||||
// invoke parsed function on scope
|
||||
// special syntax for passing in data
|
||||
// to named parameters
|
||||
// in the parsed function
|
||||
// we are providing a value for the property 'contents'
|
||||
// in the scope we pass in to the function
|
||||
scope.$apply(function() {
|
||||
onFileReadFn(scope, {
|
||||
'contents' : fileContents,
|
||||
'fileExtension': fileExtension
|
||||
});
|
||||
});
|
||||
};
|
||||
if(fileExtension === 'bin'){
|
||||
reader.readAsArrayBuffer(element[0].files[0]);
|
||||
}else if(fileExtension === 'hex'){
|
||||
reader.readAsText(element[0].files[0]);
|
||||
}else{
|
||||
reader.readAsText(element[0].files[0]);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user