Files
EasySoft-ZenTaoPMS/module/task/js/create.ui.js
T
2023-07-11 09:41:12 +08:00

473 lines
14 KiB
JavaScript

$(function()
{
if(hideStory)
{
$("input[name='after'][value='toStoryList']").parent().hide();
$("input[name='after'][value='continueAdding']").parent().hide();
$("input[name='after'][value='toTaskList']").prop('checked', true);
}
$('#module').on('change', function()
{
loadExecutionStories();
});
})
/**
* 根据多人任务是否勾选展示团队。
* Show team menu box.
*
* @access public
* @return void
*/
function toggleTeam()
{
if($('[name^=multiple]').prop('checked'))
{
$('.add-team').removeClass('hidden');
$('#assignedTo').addClass('hidden');
$('.assignedToList').removeClass('hidden');
}
else
{
$('.add-team').addClass('hidden');
$('#assignedTo').removeClass('hidden');
$('.assignedToList').addClass('hidden');
}
}
/**
* 根据任务类型设置任务相关字段。
* Set task-related fields based on the task type.
*
* @param object e
* @access public
* @return void
*/
function typeChange(e)
{
const result = $(e.target).val();
/* Change assigned person to multiple selection, and hide multiple team box. */
if(result == 'affair')
{
$("#multipleBox").removeAttr("checked");
$('.team-group').addClass('hidden');
$('.modeBox').addClass('hidden');
$('#assignedTo, #assignedTo_chosen').removeClass('hidden');
$('#assignedTo').next('.picker').removeClass('hidden');
$('#assignedTo').attr('multiple', 'multiple');
$('.affair').hide();
$('.team-group').addClass('hidden');
$('.modeBox').addClass('hidden');
$('#selectAllUser').removeClass('hidden');
}
/* If assigned selection is multiple, remove multiple and hide the selection of select all members. */
else if($('#assignedTo').attr('multiple') == 'multiple')
{
$('#assignedTo').removeAttr('multiple');
$('.affair').show();
$('#selectAllUser').addClass('hidden');
}
/* If the execution has story list, toggle between hiding and displaying the selection of select test story box. */
if(lifetime != 'ops' && attribute != 'request' && attribute != 'review')
{
$('#selectTestStoryBox').toggleClass('hidden', result != 'test');
toggleSelectTestStory();
}
}
/**
* 根据选择研发需求是否勾选切换相关字段的展示与隐藏。
* Dynamically control whether task fields are hidden based on selection status of selectTestStory.
*
* @param int $execuitonID
* @access public
* @return void
*/
function toggleSelectTestStory(executionID)
{
executionID = parseInt(executionID);
if(!executionID) executionID = $('#execution').val();
$('#testStoryBox').load($.createLink('task', 'ajaxGetTestStories', 'executionID=' + executionID + '&taskID=' + taskID));
if(!$('#selectTestStoryBox').hasClass('hidden') && $('#selectTestStory').prop('checked'))
{
$('#module').closest('.form-group').addClass('hidden');
$('#multipleBox').closest('.form-group').addClass('hidden');
$('#story').closest('.form-row').addClass('hidden');
$('#estStarted').closest('.form-row').addClass('hidden');
$('#estimate').parent().prev().addClass('hidden');
$('#estimate').parent().addClass('hidden');
$('#testStoryBox').removeClass('hidden');
$('[name^=multiple]').prop('checked', false);
toggleTeam();
}
else
{
$('#module').closest('.form-group').removeClass('hidden');
$('#multipleBox').closest('.form-group').removeClass('hidden');
if(showFields.indexOf('story') != -1) $('#story').closest('.form-row').removeClass('hidden');
$('#estStarted').closest('.form-row').removeClass('hidden');
$('#estimate').parent().prev().removeClass('hidden');
$('#estimate').parent().removeClass('hidden');
$('#testStoryBox').addClass('hidden');
}
}
/**
* 根据执行ID加载模块、需求和团队成员。
* Load module, stories and members base on the execution id.
*
* @access public
* @return void
*/
function loadAll()
{
const executionID = $(this).val();
const fieldList = showFields + ',';
lifetime = lifetimeList[executionID];
attribute = attributeList[executionID];
/* If the execution doesn't have story list, hide the related fields.*/
if(lifetime == 'ops' || attribute == 'request' || attribute == 'review')
{
$('.storyBox').addClass('hidden');
$("input[name='after'][value='toStoryList']").parent().hide();
$("input[name='after'][value='continueAdding']").parent().hide();
$("input[name='after'][value='toTaskList']").prop('checked', true);
}
/* If story field is showed, show the story field. */
else if(fieldList.indexOf('story') >= 0)
{
$('.storyBox').removeClass('hidden');
if($('#selectTestStory').prop('checked')) $('#selectTestStory').removeClass('hidden');
$("input[name='after'][value='toStoryList']").parent().show();
$("input[name='after'][value='continueAdding']").parent().show();
}
/* Load modules, stories and members of the execution. */
loadModules(executionID);
loadExecutionStories();
loadExecutionMembers(executionID);
$('#selectTestStory').prop('checked', false);
toggleSelectTestStory(executionID);
}
/**
* 加载执行的模块。
* Load modules of the execution.
*
* @param int $executionID
* @access public
* @return void
*/
function loadModules(executionID)
{
const extra = $('#showAllModule').prop('checked') ? 'allModule' : '';
const getModuleLink = $.createLink('tree', 'ajaxGetOptionMenu', 'rootID=' + executionID + '&viewtype=task&branch=0&rootModuleID=0&returnType=html&fieldID=&needManage=0&extra=' + extra);
$.get(getModuleLink, function(data)
{
$('#module').replaceWith(data);
});
}
/**
* 加载执行的需求。
* Load stories of the execution
*
* @access public
* @return void
*/
function loadExecutionStories()
{
var storyID = $('#story').val();
const executionID = $('#execution').val();
const moduleID = $('#module').val();
const getStoryLink = $.createLink('story', 'ajaxGetExecutionStories', 'executionID=' + executionID + '&productID=0&branch=0&moduleID=' + moduleID + '&storyID=' + storyID + '&number=&type=full&status=active');
$.get(getStoryLink, function(stories)
{
if(!stories) stories = '<select id="story" name="story" class="form-control"></select>';
$('#story').replaceWith(stories);
$('#story').removeAttr('onchange');
if($('#story').length == 0 && $('#storyBox').length != 0) $('#storyBox').html(stories);
$('#story').val(storyID);
setPreview();
$('#story').next('.picker').remove();
/* If there is no story option, select will be hidden and text will be displayed; otherwise, the opposite is true */
if($('#story option').length > 1 || parseInt(hasProduct) == 0)
{
$('#story').closest('.form-group').removeClass('hidden');
$('.empty-story-tip').closest('.form-group').addClass('hidden');
$('#taskCreateForm').on('change', '#story', setStoryRelated);
}
else
{
$('#story').closest('.form-group').addClass('hidden');
$('.empty-story-tip').closest('.form-group').removeClass('hidden');
}
});
}
/**
* 加载执行的团队成员。
* Load team members of the execution.
*
* @param executionID $executionID
* @access public
* @return void
*/
function loadExecutionMembers(executionID)
{
$('#multipleBox').removeAttr('checked');
$('.team-group,.modeBox').addClass('hidden');
const getAssignedToLink = $.createLink('execution', 'ajaxGetMembers', 'executionID=' + executionID + '&assignedTo=' + $('#assignedTo').val());
$.get(getAssignedToLink, function(data)
{
$('#assignedTo').replaceWith(data);
$('#assignedTo').attr('name', 'assignedTo[]');
});
}
/**
* 加载区域对应泳道。
* Load lanes of the region.
*
* @access public
* @return void
*/
function loadLanes()
{
const regionID = $(this).val();
const getLaneLink = $.createLink('kanban', 'ajaxGetLanes', 'regionID=' + regionID + '&type=task&field=lane');
$.get(getLaneLink, function(data)
{
$('#lane').replaceWith(data);
});
}
/**
* 根据选择需求设置查看链接和所属模块。
* Set preview and module of story.
*
* @access public
* @return void
*/
function setStoryRelated()
{
setPreview();
setStoryModule();
setAfter();
}
/**
* 设置需求的查看链接。
* Set the story priview link.
*
* @access public
* @return void
*/
function setPreview()
{
if(!Number($('#story').val()))
{
$('#preview').addClass('hidden');
$('.title-group.required > div').removeAttr('id', 'copyStory-input').addClass('.required');
}
else
{
var storyLink = $.createLink('execution', 'storyView', "storyID=" + $('#story').val());
var concat = storyLink.indexOf('?') < 0 ? '?' : '&';
if(storyLink.indexOf("onlybody=yes") < 0) storyLink = storyLink + concat + 'onlybody=yes';
$('#preview').removeClass('hidden');
$('#preview .btn').attr('data-url', storyLink);
$('.title-group.required > div').attr('id', 'copyStory-input').removeClass('.required');
}
setAfter();
}
/**
* 根据需求设置任务的所属模块。
* Set the story module.
*
* @access public
* @return void
*/
function setStoryModule()
{
var storyID = $('#story').val();
if(storyID)
{
var link = $.createLink('story', 'ajaxGetInfo', 'storyID=' + storyID);
$.getJSON(link, function(storyInfo)
{
if(storyInfo)
{
$('#module').val(storyInfo.moduleID);
$("#module").trigger("chosen:updated");
$('#storyEstimate').val(storyInfo.estimate);
$('#storyPri').val(storyInfo.pri);
$('#storyDesc').val(storyInfo.spec);
}
});
}
}
/**
* 设置保存任务之后的选项。
* Set after locate.
*
* @access public
* @return void
*/
function setAfter()
{
if($("#story").length == 0 || $("#story").val() == '')
{
/* If the exeuction doesn't have stories, hide the selections of story. */
if($('input[value="continueAdding"]').attr('checked') == 'checked')
{
$('input[value="toTaskList"]').prop('checked', true);
}
$('input[value="continueAdding"]').attr('disabled', 'disabled');
$('input[value="toStoryList"]').attr('disabled', 'disabled');
}
else
{
/* If the exeuction has stories, show the selections of story. */
if(!toTaskList) $('input[value="continueAdding"]').prop('checked', true);
$('input[value="continueAdding"]').removeAttr('disabled');
$('input[value="toStoryList"]').removeAttr('disabled');
}
}
/**
* Add a row.
*
* @param object $obj
* @access public
* @return void
*/
window.addItem = function(obj)
{
let $tr = $(obj).closest('tr');
$tr.after($tr.clone());
}
/**
* Remove a row.
*
* @param object $obj
* @access public
* @return void
*/
window.removeItem = function(obj)
{
if($('#testStoryBox').find('tbody tr').length == 1) return false;
$(obj).closest('tr').remove();
}
$('#teamTable .team-saveBtn').on('click.team', '.btn', function()
{
$('div.assignedToList').html('');
let team = [];
let totalEstimate = 0;
let error = false;
let mode = $('[name="mode"]').val();
let assignedToList = '';
$(this).closest('form').find('select[name^="team"]').each(function(index)
{
if($(this).val() == '') return;
let selectObj = $(this)[0];
let realname = selectObj.options[selectObj.selectedIndex].text;
let account = selectObj.options[selectObj.selectedIndex].value;
if(!team.includes(realname)) team.push(realname);
let estimate = parseFloat($(this).closest('tr').find('[name^=teamEstimate]').val());
if(!isNaN(estimate) && estimate > 0) totalEstimate += estimate;
if(realname != '' && (isNaN(estimate) || estimate <= 0))
{
zui.Modal.alert(realname + ' ' + estimateNotEmpty);
error = true;
return false;
}
assignedToList += `<div class='picker-multi-selection' data-index=${index}><span class='text'>${realname}</span><div class="picker-deselect-btn btn size-xs ghost"><span class="close"></span></div></div>`;
assignedToList += '<i class="icon icon-arrow-right"></i>';
})
if(error) return false;
if(team.length < 2)
{
zui.Modal.alert(teamMemberError);
return false;
}
else
{
$('#estimate').val(totalEstimate);
}
/* 将选中的团队成员展示在指派给后面. */
const regex = /<i class="icon icon-arrow-right"><\/i>(?!.*<i class="icon icon-arrow-right"><\/i>)/;
assignedToList = assignedToList.replace(regex, '');
$('div.assignedToList').prepend(assignedToList);
zui.Modal.hide();
return false;
})
$('#taskCreateForm').on('click', '.assignedToList .picker-multi-selection', function()
{
/* 团队成员必须大于1人. */
if($(this).closest('.assignedToList').find('.picker-multi-selection').length == 2)
{
zui.Modal.alert(teamMemberError);
return false;
}
/* 删除人员前后的箭头. */
if($(this).next('.icon').length)
{
$(this).next('.icon').remove();
}
else if($(this).prev('.icon').length)
{
$(this).prev('.icon').remove();
}
$(this).remove();
/* 删除团队中,已经选中的人. */
let index = $(this).data('index') + 1;
$('#teamTable').find('tr').eq(index).remove();
let totalEstimate = 0;
$('#teamTable').find('select[name^="team"]').each(function(index)
{
let estimate = parseFloat($(this).closest('tr').find('[name^=teamEstimate]').val());
if(!isNaN(estimate) && estimate > 0) totalEstimate += estimate;
})
$('#estimate').val(totalEstimate);
})