![Shu Muto](/assets/img/avatar_default.png)
This patch adds capsule panel that includes capsule list view. Other views and actions will be implemented in subsequent patches. To enable this panel, copy enabled file[1] to horizon enabled directory[2] and restart horizon. [1] zun_ui/enabled/_1332_project_container_capsules_panel.py [2] openstack_dashboard/local/enabled/ Change-Id: I6d89704a8fe4fa32cee52bbf2c38e0b10cd01f1a Partial-Implements: blueprint capsule
69 lines
1.8 KiB
JavaScript
69 lines
1.8 KiB
JavaScript
/**
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use self 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.
|
|
*/
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
/**
|
|
* @ngDoc factory
|
|
* @name horizon.dashboard.container.capsules.refresh.service
|
|
* @Description
|
|
* refresh container.
|
|
*/
|
|
angular
|
|
.module('horizon.dashboard.container.capsules.actions')
|
|
.factory('horizon.dashboard.container.capsules.actions.refresh.service', refreshService);
|
|
|
|
refreshService.$inject = [
|
|
'horizon.app.core.openstack-service-api.zun',
|
|
'horizon.dashboard.container.capsules.resourceType',
|
|
'horizon.framework.util.actions.action-result.service',
|
|
'horizon.framework.util.q.extensions'
|
|
];
|
|
|
|
function refreshService(
|
|
zun, resourceType, actionResult, $qExtensions
|
|
) {
|
|
|
|
var service = {
|
|
initAction: initAction,
|
|
allowed: allowed,
|
|
perform: perform
|
|
};
|
|
|
|
return service;
|
|
|
|
//////////////
|
|
|
|
// include this function in your service
|
|
// if you plan to emit events to the parent controller
|
|
function initAction() {
|
|
}
|
|
|
|
function allowed() {
|
|
return $qExtensions.booleanAsPromise(true);
|
|
}
|
|
|
|
function perform(selected) {
|
|
// refresh selected capsule
|
|
return $qExtensions.booleanAsPromise(true).then(success);
|
|
|
|
function success() {
|
|
var result = actionResult.getActionResult().updated(resourceType, selected.id);
|
|
return result.result;
|
|
}
|
|
}
|
|
}
|
|
})();
|