1
0
Форкнуть 0
vsts-extension-integer-control/scripts/errorView.ts

38 строки
1.2 KiB
TypeScript
Исходник Обычный вид История

2016-08-10 23:54:13 +03:00
/***************************************************************************
Purpose: This class is being used to get errors from an input parser and
a model. It takes all the errors and put them in an array in
order to be sent to a view to display them.
***************************************************************************/
// shows the errors in the control container rather than the control.
export class ErrorView {
constructor(error: string) {
// container div
var container = $("<div />");
container.addClass("container");
// create an icon and text for the error
var warning = $("<p />");
warning.text(error);
warning.attr("title", error);
container.append(warning);
// include documentation link for help.
var help = $("<p />");
help.text("See ");
var a = $("<a> </a>");
a.attr("href", "https://www.visualstudio.com/en-us/products/visual-studio-team-services-vs.aspx");
a.attr("target", "_blank");
a.text("Documentation.");
help.append(a);
container.append(help);
2016-12-16 03:53:23 +03:00
$("body").empty().append(container);
2016-08-10 23:54:13 +03:00
}
2016-12-16 03:53:23 +03:00
}