Merge "Use initAction() instead initScope()"

This commit is contained in:
Jenkins 2016-12-02 15:54:23 +00:00 committed by Gerrit Code Review
commit 7edfcd5f02
7 changed files with 20 additions and 25 deletions

View File

@ -41,14 +41,13 @@
function createService(
$location, policy, actionResult, gettext, $qExtensions, wizardModalService, toast, model, events, resourceType, createWorkflow
) {
var scope;
var message = {
success: gettext('Container %s was successfully created.')
};
var service = {
initScope: initScope,
initAction: initAction,
perform: perform,
allowed: allowed
};
@ -57,15 +56,13 @@
//////////////
function initScope($scope) {
scope = $scope;
scope.workflow = createWorkflow;
scope.model = model;
scope.$on('$destroy', function() {
});
function initAction() {
}
function perform(selected) {
function perform(selected, newScope) {
scope = newScope;
scope.workflow = createWorkflow;
scope.model = model;
scope.model.init();
// for creation according to selected item
scope.selected = selected;

View File

@ -51,7 +51,7 @@
successEvent: events.DELETE_SUCCESS
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -61,10 +61,7 @@
//////////////
// include this function in your service
// if you plan to emit events to the parent controller
function initScope($scope) {
scope = $scope;
function initAction() {
}
function allowed() {
@ -72,7 +69,8 @@
}
// delete selected resource objects
function perform(selected) {
function perform(selected, newScope) {
scope = newScope;
var selected = angular.isArray(selected) ? selected : [selected];
context.labels = labelize(selected.length);
return $qExtensions.allSettled(selected.map(checkPermission)).then(afterCheck);

View File

@ -39,7 +39,7 @@
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -50,7 +50,7 @@
// include this function in your service
// if you plan to emit events to the parent controller
function initScope() {
function initAction() {
}
function allowed() {

View File

@ -40,7 +40,7 @@
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -51,7 +51,7 @@
// include this function in your service
// if you plan to emit events to the parent controller
function initScope() {
function initAction() {
}
function allowed() {

View File

@ -40,7 +40,7 @@
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -51,7 +51,7 @@
// include this function in your service
// if you plan to emit events to the parent controller
function initScope() {
function initAction() {
}
function allowed() {

View File

@ -40,7 +40,7 @@
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -51,7 +51,7 @@
// include this function in your service
// if you plan to emit events to the parent controller
function initScope() {
function initAction() {
}
function allowed() {

View File

@ -40,7 +40,7 @@
};
var service = {
initScope: initScope,
initAction: initAction,
allowed: allowed,
perform: perform
};
@ -51,7 +51,7 @@
// include this function in your service
// if you plan to emit events to the parent controller
function initScope() {
function initAction() {
}
function allowed() {