scripts.views.sonar-technicaldept-view.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-gadgets Show documentation
Show all versions of sonar-gadgets Show documentation
Sonar Gadgets for Atlassian products like JIRA and Bamboo
/*
* Licensed to Marvelution under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Marvelution licenses this file to you 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.
*/
AJS.$.namespace("AJS.sonar.views.technicaldept");
AJS.sonar.views.technicaldept.VIEW_NAME = "technicaldept";
AJS.sonar.views.technicaldept.METRICS = 'technical_debt_repart,technical_debt_days,technical_debt_ratio,technical_debt';
/**
* Generate the Sonar Technical Dept view
*
* @param baseUrl the base url of the system displaying the view
* @param server the Sonar server object
* @param measureData the measure data of a project on Sonar
* @param metricsDetails the details of the coverage measures
* @return the jQuery wrapped view object
*/
AJS.sonar.views.technicaldept.generateView = function(baseUrl, server, measureData, metricsDetails) {
AJS.sonar.text.load(baseUrl);
var view = AJS.sonar.views.createViewContainer();
var leftView = AJS.sonar.views.createColumn(true);
leftView.append(AJS.sonar.views.createHeader("sonar.views.technicaldept"));
AJS.sonar.views.createMeasureRow(server.host, AJS.sonar.views.technicaldept.VIEW_NAME, measureData.id,
AJS.sonar.utils.getMeasureFromResource(measureData, "technical_debt_ratio"),
AJS.sonar.utils.getMetricFromMetricsArray(metricsDetails, "technical_debt_ratio"), true).appendTo(leftView);
AJS.sonar.views.createMeasureRow(server.host, AJS.sonar.views.technicaldept.VIEW_NAME, measureData.id,
AJS.sonar.utils.getMeasureFromResource(measureData, "technical_debt"),
AJS.sonar.utils.getMetricFromMetricsArray(metricsDetails, "technical_debt"), false
).prepend(AJS.$("").text("$ ")).appendTo(leftView);
AJS.sonar.views.createMeasureRow(server.host, AJS.sonar.views.technicaldept.VIEW_NAME, measureData.id,
AJS.sonar.utils.getMeasureFromResource(measureData, "technical_debt_days"),
AJS.sonar.utils.getMetricFromMetricsArray(metricsDetails, "technical_debt_days"), false).appendTo(leftView);
leftView.appendTo(view);
var rightView = AJS.sonar.views.createColumn(false);
AJS.sonar.views.createMetricChart(server.host,
AJS.sonar.utils.getMeasureFromResource(measureData, "technical_debt_repart")
).appendTo(rightView);
rightView.appendTo(view);
AJS.sonar.views.addViewFooter(view, server.host);
return view;
}