/*
* Copyright 2023 Anyware Services
*
* 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.
*/
/**
* This class controls the ribbon button to create workflow action
* @private
*/
Ext.define('Ametys.plugins.workflow.controllers.CreateTransitionController', {
extend: 'Ametys.plugins.workflow.controllers.WorkflowController',
_getStatus: function (targets)
{
var description = this.getInitialConfig("description") || this.getInitialConfig("default-description") || '';
if (targets.length > 0)
{
// Multiselection is currently not supported
var matchingTarget = targets[0];
this._errorDescription = "";
if (!matchingTarget.getParameters().canWrite)
{
this._errorDescription = "{{i18n PLUGINS_WORKFLOW_CANT_WRITE_DESCRIPTION}}";
this._handleErrors(description);
}
else
{
var stepTarget = matchingTarget.getSubtarget(function(target){return target.getId() == Ametys.message.MessageTarget.WORKFLOW_STEP});
if (stepTarget)
{
Ametys.plugins.workflow.dao.WorkflowStepDAO.hasSteps([stepTarget.getParameters().workflowId], Ext.bind(this._hasStepsCB, this, [description], 1));
}
}
}
else
{
this.stopRefreshing();
this.setDescription (description);
}
},
/**
* @private
* Callback of hasSteps, set an error message if there are no step beside the initial step
* @param {Boolean} hasSteps true if workflow has at least one true step
* @param {String} description the button's description
*/
_hasStepsCB: function(hasSteps, description)
{
this._errorDescription = hasSteps
? ""
: this.getConfig("no-available-result-description");
this._handleErrors(description);
},
/**
* @private
* Handle the error message if there is one, else enable button
* @param {String} description the button's description
*/
_handleErrors(description)
{
if (this._errorDescription == '')
{
this.enable();
}
else
{
if (description != '')
{
description += "<br/><br/>";
}
description += this._errorDescription;
this.disable();
}
this.stopRefreshing();
this.setDescription (description);
}
});