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 = $('
');
if (this.index % 2 == 1)
holder.addClass('holder-even');
holder.append('');
holder.append('
');
//holder.append('
');
holder.append('');
holder.append('
');
var funcs = $('');
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($('').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($('').click(function () {
_this.publish();
}).attr('title', GetTextByKey("P_IPT_PUBLISHTEMPLATE", 'Publish Template')));
}
funcs.append($('').click(function () {
_this.delete();
}).attr('title', GetTextByKey("P_IPT_DELETETEMPLATE", 'Delete Template')));
if (!_this.template.IssueId || _this.template.IssueId == "") {
funcs.append($('').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 = $('');
var tr = $('
');
tb.append(tr);
tr.append('' + GetTextByKey("P_IPT_TEMPLATENAME_COLON", "Template Name:") + '* | ');
newnamecontrol = $('');
tr.append($(' | ').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;
});