ad6b606585
This patch adds "Post Messages" and "View Messages" actions. "delete" and "claim" actions for list messages dialog will be added by subsequent patches. Implement blueprint: post-get-messages Change-Id: I42f44e2d8ab9266ba8c21c853956ca69c62ecfce
144 lines
3.6 KiB
JavaScript
144 lines
3.6 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';
|
|
|
|
angular
|
|
.module('horizon.dashboard.project.queues')
|
|
.factory(
|
|
'horizon.dashboard.project.queues.actions.postMessageService', postMessageService);
|
|
|
|
postMessageService.$inject = [
|
|
'$q',
|
|
'horizon.dashboard.project.queues.basePath',
|
|
'horizon.app.core.openstack-service-api.policy',
|
|
'horizon.app.core.openstack-service-api.zaqar',
|
|
'horizon.dashboard.project.queues.events',
|
|
'horizon.framework.util.i18n.gettext',
|
|
'horizon.framework.util.q.extensions',
|
|
'horizon.framework.widgets.form.ModalFormService',
|
|
'horizon.framework.widgets.toast.service'
|
|
];
|
|
|
|
/**
|
|
* @ngdoc factory
|
|
* @name horizon.dashboard.project.queues.actions.postMessageService
|
|
* @param {Object} $q
|
|
* @param {String} basePath
|
|
* @param {Object} policy
|
|
* @param {Object} zaqar
|
|
* @param {Object} events
|
|
* @param {Object} gettext
|
|
* @param {Object} $qExtensions
|
|
* @param {Object} modal
|
|
* @param {Object} toast
|
|
* @returns {Object} post messages service
|
|
* @description Brings up the post messages modal dialog.
|
|
* On submit, post messages to given queues.
|
|
* On cancel, do nothing.
|
|
*/
|
|
function postMessageService(
|
|
$q, basePath, policy, zaqar, events, gettext, $qExtensions, modal, toast
|
|
) {
|
|
// schema
|
|
var schema = {
|
|
type: "object",
|
|
properties: {
|
|
postMessages: {
|
|
title: gettext("Post Messages"),
|
|
type: "string"
|
|
}
|
|
}
|
|
};
|
|
|
|
// form
|
|
var form = [
|
|
{
|
|
type: 'section',
|
|
htmlClass: 'row',
|
|
items: [
|
|
{
|
|
type: 'section',
|
|
htmlClass: 'col-sm-6',
|
|
items: [
|
|
{
|
|
key: 'messages',
|
|
type: 'textarea'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
type: 'template',
|
|
templateUrl: basePath + 'actions/post-message.help.html'
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
// model
|
|
var model = {};
|
|
|
|
var message = {
|
|
success: gettext('Messages has been posted to queue %s successfully.')
|
|
};
|
|
|
|
var service = {
|
|
initAction: initAction,
|
|
perform: perform,
|
|
allowed: allowed
|
|
};
|
|
|
|
var scope;
|
|
return service;
|
|
|
|
//////////////
|
|
|
|
function initAction() {
|
|
}
|
|
|
|
function allowed() {
|
|
return $qExtensions.booleanAsPromise(true);
|
|
}
|
|
|
|
function perform(selected, $scope) {
|
|
scope = $scope;
|
|
model = {
|
|
id: selected.id,
|
|
name: selected.name
|
|
};
|
|
// modal config
|
|
var config = {
|
|
"title": gettext('List Messages'),
|
|
"submitText": gettext('Post'),
|
|
"schema": schema,
|
|
"form": form,
|
|
"model": model
|
|
};
|
|
return modal.open(config).then(submit);
|
|
}
|
|
|
|
function submit(context) {
|
|
var id = context.model.id;
|
|
var name = context.model.name;
|
|
delete context.model.id;
|
|
delete context.model.name;
|
|
return zaqar.postMessages(id, context.model).then(function() {
|
|
toast.add('success', interpolate(message.success, [name]));
|
|
scope.$emit(events.POST_MESSAGE_SUCCESS, name);
|
|
});
|
|
}
|
|
}
|
|
})();
|