diff --git a/refstack-ui/app/components/results/results.html b/refstack-ui/app/components/results/results.html index 1f0c3b9c..2a43cd1e 100644 --- a/refstack-ui/app/components/results/results.html +++ b/refstack-ui/app/components/results/results.html @@ -49,6 +49,11 @@ Upload Date Test Run ID + Vendor + Product (version) + Target Program + Guideline + Verified Shared @@ -66,7 +71,25 @@ {{result.created_at}} - {{result.id}} + + {{result.id.slice(0, 8)}}...{{result.id.slice(-8)}} + + + + {{ctrl.vendors[result.product_version.product_info.organization_id].name || '-'}} + + {{result.product_version.product_info.name || '-'}} + + ({{result.product_version.version}}) + + + {{ctrl.targetMappings[result.meta.target] || '-'}} + {{result.meta.guideline.slice(0, -5) || '-'}} + + + - + + diff --git a/refstack-ui/app/components/results/resultsController.js b/refstack-ui/app/components/results/resultsController.js index 747e59de..7b4aed11 100644 --- a/refstack-ui/app/components/results/resultsController.js +++ b/refstack-ui/app/components/results/resultsController.js @@ -38,6 +38,7 @@ ctrl.associateMeta = associateMeta; ctrl.getVersionList = getVersionList; ctrl.getUserProducts = getUserProducts; + ctrl.getVendors = getVendors; ctrl.associateProductVersion = associateProductVersion; ctrl.getProductVersions = getProductVersions; ctrl.prepVersionEdit = prepVersionEdit; @@ -99,6 +100,8 @@ ctrl.update(); } + ctrl.getVendors(); + /** * This will contact the Refstack API to get a listing of test run * results. @@ -244,6 +247,27 @@ }); } + /** + * This will contact the Refstack API to get a listing of + * vendors. + */ + function getVendors() { + var contentUrl = refstackApiUrl + '/vendors'; + ctrl.vendorsRequest = + $http.get(contentUrl).success(function (data) { + ctrl.vendors = {}; + data.vendors.forEach(function(vendor) { + ctrl.vendors[vendor.id] = vendor; + }); + }).error(function (error) { + ctrl.vendors = null; + ctrl.showError = true; + ctrl.error = + 'Error retrieving vendor listing from server: ' + + angular.toJson(error); + }); + } + /** * Send a PUT request to the API server to associate a product with * a test result. diff --git a/refstack-ui/app/shared/header/header.html b/refstack-ui/app/shared/header/header.html index aa6984fd..797ab859 100644 --- a/refstack-ui/app/shared/header/header.html +++ b/refstack-ui/app/shared/header/header.html @@ -19,6 +19,7 @@ RefStack
  • About
  • DefCore Guidelines
  • Community Results
  • +