Files
zuul/web/src/containers/build/Build.jsx
T
Tristan Cacqueray 2f8a1be7c9 web: add errors from the job-output to the build page
This change updates the build page to fetch the job-output.json file
and display the failed tasks. Logserver needs to enables CORS
header for the zuul-web service.

Change-Id: Ied9d1bb6489f608bc5402a98c8ae3a24b37b91e2
2018-12-14 08:33:48 +00:00

93 lines
2.6 KiB
React

// Copyright 2018 Red Hat, Inc
//
// Licensed 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.
import * as React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { Link } from 'react-router-dom'
import { Panel } from 'react-bootstrap'
import BuildOutput from './BuildOutput'
class Build extends React.Component {
static propTypes = {
build: PropTypes.object,
tenant: PropTypes.object,
}
render () {
const { build } = this.props
const rows = []
const myColumns = [
'job_name', 'result', 'voting',
'pipeline', 'start_time', 'end_time', 'duration',
'project', 'branch', 'change', 'patchset', 'oldrev', 'newrev',
'ref', 'new_rev', 'ref_url', 'log_url']
myColumns.forEach(column => {
let label = column
let value = build[column]
if (column === 'job_name') {
label = 'job'
value = (
<Link to={this.props.tenant.linkPrefix + '/job/' + value}>
{value}
</Link>
)
}
if (column === 'voting') {
if (value) {
value = 'true'
} else {
value = 'false'
}
}
if (value && (column === 'log_url' || column === 'ref_url')) {
value = <a href={value}>{value}</a>
}
if (column === 'log_url') {
label = 'log url'
}
if (column === 'ref_url') {
label = 'ref url'
}
if (value) {
rows.push({key: label, value: value})
}
})
return (
<Panel>
<Panel.Heading>Build result {build.uuid}</Panel.Heading>
<Panel.Body>
<table className="table table-striped table-bordered">
<tbody>
{rows.map(item => (
<tr key={item.key}>
<td>{item.key}</td>
<td>{item.value}</td>
</tr>
))}
</tbody>
</table>
{build.output && <BuildOutput output={build.output}/>}
</Panel.Body>
</Panel>
)
}
}
export default connect(state => ({tenant: state.tenant}))(Build)