// 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 { Panel } from 'react-bootstrap' import { Icon, ListView, } from 'patternfly-react' class BuildOutput extends React.Component { static propTypes = { output: PropTypes.object, } renderHosts (hosts) { return ( {Object.entries(hosts).map(([host, values]) => ( {values.ok} , {values.changed} , {values.failures} ]} /> ))} ) } renderFailedTask (host, task) { return ( {host}: {task.name} {task.invocation && task.invocation.module_args && task.invocation.module_args._raw_params && ( {task.invocation.module_args._raw_params}
)} {task.msg && (
{task.msg}
)} {task.exception && (
{task.exception}
)} {task.stdout_lines && task.stdout_lines.length > 0 && ( {task.stdout_lines.slice(-42).map((line, idx) => ( {line}
))}
)} {task.stderr_lines && task.stderr_lines.length > 0 && ( {task.stderr_lines.slice(-42).map((line, idx) => ( {line}
))}
)}
) } render () { const { output } = this.props return (
{Object.entries(output) .filter(([, values]) => values.failed.length > 0) .map(([host, values]) => (values.failed.map(failed => ( this.renderFailedTask(host, failed)))))}
{this.renderHosts(output)}
) } } export default BuildOutput