mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 10:30:03 -03:30
Add guard clause to loadMoreRows and style tweaks
This commit is contained in:
parent
033308de69
commit
2aa38e84dd
@ -71,7 +71,7 @@ const JobEventLineNumber = styled.div`
|
||||
text-align: right;
|
||||
vertical-align: top;
|
||||
padding-right: 5px;
|
||||
border-right: 1px solid #b7b7b7;
|
||||
border-right: 1px solid #d7d7d7;
|
||||
user-select: none;
|
||||
`;
|
||||
const JobEventLineText = styled.div`
|
||||
@ -132,10 +132,10 @@ function JobEvent({ counter, created, event, stdout, start_line, ...rest }) {
|
||||
<JobEventWrapper {...rest}>
|
||||
{getLineTextHtml({ created, event, start_line, stdout }).map(
|
||||
({ lineNumber, html }) =>
|
||||
lineNumber !== 0 && (
|
||||
lineNumber >= 0 && (
|
||||
<JobEventLine
|
||||
key={`${counter}-${lineNumber}`}
|
||||
isFirst={lineNumber === 1}
|
||||
isFirst={lineNumber === 0}
|
||||
>
|
||||
<JobEventLineToggle />
|
||||
<JobEventLineNumber>{lineNumber}</JobEventLineNumber>
|
||||
|
||||
@ -17,23 +17,26 @@ import JobEvent from './JobEvent';
|
||||
import JobEventSkeleton from './JobEventSkeleton';
|
||||
import MenuControls from './shared/MenuControls';
|
||||
|
||||
const OutputHeader = styled.div`
|
||||
font-weight: var(--pf-global--FontWeight--bold);
|
||||
`;
|
||||
const OutputToolbar = styled.div`
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
`;
|
||||
const OutputWrapper = styled.div`
|
||||
height: calc(100vh - 325px);
|
||||
height: calc(100vh - 350px);
|
||||
background-color: #fafafa;
|
||||
margin-top: 24px;
|
||||
font-family: monospace;
|
||||
font-size: 15px;
|
||||
border: 1px solid #b7b7b7;
|
||||
outline: 1px solid #d7d7d7;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
`;
|
||||
const OutputFooter = styled.div`
|
||||
background-color: #ebebeb;
|
||||
border-right: 1px solid #b7b7b7;
|
||||
border-right: 1px solid #d7d7d7;
|
||||
width: 75px;
|
||||
flex: 1;
|
||||
`;
|
||||
@ -160,6 +163,9 @@ class JobOutput extends Component {
|
||||
}
|
||||
|
||||
loadMoreRows({ startIndex, stopIndex }) {
|
||||
if (startIndex === 0 && stopIndex === 0) {
|
||||
return;
|
||||
}
|
||||
const { job } = this.props;
|
||||
|
||||
const loadRange = range(startIndex, stopIndex);
|
||||
@ -171,6 +177,7 @@ class JobOutput extends Component {
|
||||
counter__lte: stopIndex,
|
||||
order_by: 'start_line',
|
||||
};
|
||||
|
||||
return JobsAPI.readEvents(job.id, job.type, params).then(response => {
|
||||
this.setState(({ results, currentlyLoading }) => {
|
||||
response.data.results.forEach(jobEvent => {
|
||||
@ -229,7 +236,7 @@ class JobOutput extends Component {
|
||||
|
||||
return (
|
||||
<CardBody>
|
||||
<b>{job.name}</b>
|
||||
<OutputHeader>{job.name}</OutputHeader>
|
||||
<OutputToolbar>
|
||||
<MenuControls
|
||||
onScrollTop={this.handleScrollTop}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user