This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues/pull-requests.
AriaNg/src/scripts/controllers/new.js

101 lines
3.1 KiB
JavaScript
Raw Normal View History

2016-06-18 18:11:19 +02:00
(function () {
'use strict';
2016-06-22 16:23:18 +02:00
angular.module('ariaNg').controller('NewTaskController', ['$rootScope', '$scope', '$location', '$timeout', 'aria2SettingService', 'aria2TaskService', function ($rootScope, $scope, $location, $timeout, aria2SettingService, aria2TaskService) {
2016-06-22 17:12:53 +02:00
var tabOrders = ['links', 'options'];
2016-06-18 18:11:19 +02:00
$scope.context = {
2016-06-22 17:12:53 +02:00
currentTab: 'links',
urls: '',
2016-06-20 18:20:30 +02:00
availableOptions: (function () {
var keys = aria2SettingService.getNewTaskOptionKeys();
return aria2SettingService.getSpecifiedOptions(keys);
})(),
globalOptions: null,
options: {}
};
2016-06-20 17:45:33 +02:00
$scope.changeTab = function (tabName) {
if (tabName == 'options') {
$scope.loadDefaultOption();
}
$scope.context.currentTab = tabName;
};
$rootScope.swipeActions.extentLeftSwipe = function () {
var tabIndex = tabOrders.indexOf($scope.context.currentTab);
if (tabIndex < tabOrders.length - 1) {
2016-06-20 17:45:33 +02:00
$scope.changeTab(tabOrders[tabIndex + 1]);
return true;
} else {
return false;
}
};
$rootScope.swipeActions.extentRightSwipe = function () {
var tabIndex = tabOrders.indexOf($scope.context.currentTab);
if (tabIndex > 0) {
2016-06-20 17:45:33 +02:00
$scope.changeTab(tabOrders[tabIndex - 1]);
return true;
} else {
return false;
}
};
$scope.loadDefaultOption = function () {
if ($scope.context.globalOptions) {
return;
}
$rootScope.loadPromise = aria2SettingService.getGlobalOption(function (response) {
if (response.success) {
$scope.context.globalOptions = response.data;
}
});
};
$scope.startDownload = function (pauseOnAdded) {
var urls = $scope.context.urls.split('\n');
var options = angular.copy($scope.context.options);
2016-06-18 18:11:19 +02:00
var tasks = [];
for (var i = 0; i < urls.length; i++) {
tasks.push({
urls: [urls[i].trim()],
options: options
2016-06-18 18:11:19 +02:00
});
}
2016-06-20 17:37:25 +02:00
$rootScope.loadPromise = aria2TaskService.newUriTasks(tasks, pauseOnAdded, function (response) {
2016-06-18 18:11:19 +02:00
if (!response.hasSuccess) {
return;
}
if (pauseOnAdded) {
$location.path('/waiting');
} else {
$location.path('/downloading');
}
2016-06-18 18:11:19 +02:00
});
};
$scope.setOption = function (key, value, optionStatus) {
if (value != '') {
$scope.context.options[key] = value;
} else {
delete $scope.context.options[key];
}
optionStatus.setReady();
};
2016-06-22 16:23:18 +02:00
$rootScope.loadPromise = $timeout(function () {
;//Do Nothing
}, 100);
2016-06-18 18:11:19 +02:00
}]);
})();