2023-04-28 12:22:26 +08:00

140 lines
7.3 KiB
JavaScript

define(['modules/templates/addtemplate', 'common'], function (AddTemplate, Common) {
var q = function (tp, template, index) {
this.template = template;
this.templatemodule = tp;
this.index = index
};
q.prototype.description = "Template Module";
q.prototype.version = "1.0.0.0";
var newnamecontrol = undefined;
var dialog = null;
q.prototype.createContent = function () {
var holder = $('<div class="question-holder"></div>');
if (this.index % 2 == 1)
holder.addClass('holder-even');
holder.append('<div class="question-icon template-packages" style="width:30px;padding-left:10px; "><em class="fa icon-menu icon-packages"></em></div>');
holder.append('<div class="question-cell template-name" style="width:390px;padding-left:10px;"><span></span></div>');
//holder.append('<div class="question-cell template-display" style="width: 280px;"><span></span></div>');
holder.append('<div class="question-cell template-notes" style="width:400px;"></div>');
holder.append('<div class="question-cell template-createdby" style="width:200px;"><span></span></div>');
var funcs = $('<div class="question-cell template-func" style="width:110px;padding-right:20px;"></div>');
holder.append(funcs);
var _this = this;
holder.find('.template-name span').click(function () {
var aq = new AddTemplate(_this.templatemodule, _this.template);
$('#right_popup').empty().append(aq.createContent());
showRightPopup(true);
});
if (!templatereadonly) {
funcs.append($('<em class="spanbtn iconedit"></em>').click(function () {
var aq = new AddTemplate(_this.templatemodule, _this.template);
$('#right_popup').empty().append(aq.createContent());
showRightPopup(true);
}).attr('title', GetTextByKey("P_IPT_EDITTEMPLATE", 'Edit Template')));
if (templatestatus == 0) {
funcs.append($('<em class="spanbtn iconshare"></em>').click(function () {
_this.publish();
}).attr('title', GetTextByKey("P_IPT_PUBLISHTEMPLATE", 'Publish Template')));
}
funcs.append($('<em class="spanbtn icondelete"></em>').click(function () {
_this.delete();
}).attr('title', GetTextByKey("P_IPT_DELETETEMPLATE", 'Delete Template')));
if (!_this.template.IssueId || _this.template.IssueId == "") {
funcs.append($('<em class="spanbtn iconcopy"></em>').click(function () {
_this.openSaveAs();
}).attr('title', GetTextByKey("P_IPT_SAVEAS", 'Save As')));
}
}
this.holder = holder;
if (this.template != null) {
this.updateContent(this.template);
}
return holder;
};
q.prototype.updateContent = function (template) {
if (this.template != template) {
this.template = template;
}
if (!template.IssueId || template.IssueId == "")
this.holder.find('.template-packages em').hide();
else
this.holder.find('.template-packages em').show();
this.holder.find('.template-name span').text(template.Name);
this.holder.find('.template-name span').attr('title', template.Name);
this.holder.find('.template-display span').text(template.DisplayText);
this.holder.find('.template-display span').attr('title', template.DisplayText);
this.holder.children('.template-notes').html(replaceHtmlText(template.Notes));
this.holder.children('.template-notes').attr('title', replaceHtmlText(template.Notes));
this.holder.find('.template-createdby span').text(template.IssueName);
this.holder.find('.template-createdby span').attr('title', template.IssueName);
};
q.prototype.delete = function () {
var _this = this;
showConfirm(GetTextByKey("P_IPT_AREYOUSUREYOUWANTTODELETETHISTEMPLATE", 'Are you sure you want to delete this template?'), GetTextByKey("P_IPT_DELETETEMPLATE", 'Delete Template'), function () {
var p = JSON.stringify([teamintelligence, htmlencode(_this.template.Id)]);
inspectionrequest("DeleteTemplate", p, function (data) {
if (data !== 'OK')
showAlert(data, GetTextByKey("P_IPT_DELETETEMPLATE", 'Delete Template'));
else if (_this.templatemodule && typeof _this.templatemodule.refresh === "function")
_this.templatemodule.refresh();
}, function (err) {
showAlert(GetTextByKey("P_IPT_FAILEDTODELETETEMPLATE", 'Failed to delete template.'), GetTextByKey("P_IPT_DELETETEMPLATE", 'Delete Template'));
});
});
};
q.prototype.publish = function () {
var _this = this;
showConfirm(GetTextByKey("P_IPT_AREYOUSUREYOUWANTTOPUBLISHTHISTEMPLATE", 'Are you sure you want to publish the template?'), GetTextByKey("P_IPT_PUBLISHTEMPLATE", 'Publish Template'), function () {
var p = JSON.stringify([teamintelligence, htmlencode(_this.template.Id)]);
inspectionrequest("PublishTemplate", p, function (data) {
if (data !== 'OK')
showAlert(data, GetTextByKey("P_IPT_PUBLISHTEMPLATE", 'Publish Template'));
else if (_this.templatemodule && typeof _this.templatemodule.refresh === "function")
_this.templatemodule.refresh();
}, function (err) {
showAlert(GetTextByKey("P_IPT_FAILEDTOPUBLISHTEMPLATE", 'Failed to publish template.'), GetTextByKey("P_IPT_PUBLISHTEMPLATE", 'Publish Template'));
});
});
};
q.prototype.openSaveAs = function () {
var _this = this;
var tb = $('<table style="line-height:40px;"></table>');
var tr = $('<tr></tr>');
tb.append(tr);
tr.append('<td class="label" style="vertical-align:middle;">' + GetTextByKey("P_IPT_TEMPLATENAME_COLON", "Template Name:") + '<span class="redasterisk">*</span></td>');
newnamecontrol = $('<input type="text" maxlength="100"/>');
tr.append($('<td></td>').append(newnamecontrol));
dialog = Common.createDialog(GetTextByKey("P_IPT_SAVEAS", 'Save As'), tb, function () {
_this.onSaveAs();
});
dialog.showDialog();
};
q.prototype.onSaveAs = function () {
var _this = this;
var name = newnamecontrol.val();
if (!name || name.length == 0) {
showAlert(GetTextByKey("P_IPT_TEMPLATENAMENOTBEEMPTY", 'Template name cannot be empty.'), GetTextByKey("P_IPT_SAVEAS", 'Save As'));
return;
}
name = htmlencode(name);
var p = JSON.stringify([teamintelligence, _this.template.Id, name]);
inspectionrequest("TemplateSaveAs", htmlencode(p), function (data) {
if (data !== 'OK')
showAlert(data, GetTextByKey("P_IPT_SAVEAS", 'Save As'));
else if (_this.templatemodule && typeof _this.templatemodule.refresh === "function")
_this.templatemodule.refresh();
dialog.hideDialog();
}, function (err) {
showAlert(GetTextByKey("P_IPT_FAILEDTOSAVEAS", 'Failed to save as.'), GetTextByKey("P_IPT_SAVEAS", 'Save As'));
});
};
return q;
});