-
Notifications
You must be signed in to change notification settings - Fork 991
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #37718 - BuildModal error message not copyable
- Replace TreeView component with Tree-Table - Remove unneeded active element management from tree component
- Loading branch information
Showing
6 changed files
with
248 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
...k/assets/javascripts/react_app/components/HostDetails/ActionsBar/ErrorsTree/ErrorsTree.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
import React from 'react'; | ||
import { TableComposable, Tbody } from '@patternfly/react-table'; | ||
import PropTypes from 'prop-types'; | ||
import { ErrorsTreePrimaryRow } from './components/ErrorsTreePrimaryRow'; | ||
import { ErrorsTreeSecondaryRow } from './components/ErrorsTreeSecondaryRow'; | ||
|
||
export const ErrorsTree = props => { | ||
const [expandedNodeNames, setExpandedNodeNames] = React.useState([]); | ||
const [ | ||
expandedDetailsNodeNames, | ||
setExpandedDetailsNodeNames, | ||
] = React.useState([]); | ||
|
||
const renderPrimaryRows = ( | ||
[node, ...remainingNodes], | ||
level = 1, | ||
posinset = 1, | ||
rowIndex = 0, | ||
isHidden = false | ||
) => { | ||
if (!node) { | ||
return []; | ||
} | ||
const isExpanded = expandedNodeNames.includes(node.id); | ||
const isDetailsExpanded = expandedDetailsNodeNames.includes(node.id); | ||
|
||
const childRows = | ||
node.children && node.children.length | ||
? renderSecondaryRows( | ||
node.children, | ||
level + 1, | ||
1, | ||
rowIndex + 1, | ||
!isExpanded || isHidden | ||
) | ||
: []; | ||
return [ | ||
<ErrorsTreePrimaryRow | ||
posinset={posinset} | ||
key={node.id} | ||
node={node} | ||
isExpanded={isExpanded} | ||
isDetailsExpanded={isDetailsExpanded} | ||
setExpandedNodeNames={setExpandedNodeNames} | ||
setExpandedDetailsNodeNames={setExpandedDetailsNodeNames} | ||
/>, | ||
|
||
...childRows, | ||
...renderPrimaryRows( | ||
remainingNodes, | ||
level, | ||
posinset + 1, | ||
rowIndex + 1 + childRows.length, | ||
isHidden | ||
), | ||
]; | ||
}; | ||
|
||
const renderSecondaryRows = ( | ||
[node, ...remainingNodes], | ||
level, | ||
posinset, | ||
rowIndex, | ||
isHidden = false | ||
) => { | ||
if (!node) { | ||
return []; | ||
} | ||
|
||
return [ | ||
<ErrorsTreeSecondaryRow | ||
posinset={posinset} | ||
key={rowIndex} | ||
node={node} | ||
isHidden={isHidden} | ||
/>, | ||
|
||
...renderSecondaryRows( | ||
remainingNodes, | ||
level, | ||
posinset + 1, | ||
rowIndex + 1, | ||
isHidden | ||
), | ||
]; | ||
}; | ||
|
||
return ( | ||
<TableComposable | ||
ouiaId="errorsTreeTable" | ||
isTreeTable | ||
aria-label="Tree table" | ||
variant="compact" | ||
> | ||
<Tbody>{renderPrimaryRows(props.data)}</Tbody> | ||
</TableComposable> | ||
); | ||
}; | ||
|
||
ErrorsTree.propTypes = { | ||
data: PropTypes.array, | ||
}; | ||
|
||
ErrorsTree.defaultProps = { | ||
data: [], | ||
}; |
24 changes: 24 additions & 0 deletions
24
...ripts/react_app/components/HostDetails/ActionsBar/ErrorsTree/components/ErrorPresenter.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { ClipboardCopy } from '@patternfly/react-core'; | ||
import { translate as __ } from '../../../../../../react_app/common/I18n'; | ||
|
||
export const ErrorPresenter = props => ( | ||
<ClipboardCopy | ||
isReadOnly | ||
isBlock | ||
hoverTip={__('Copy')} | ||
clickTip={__('Copied!')} | ||
variant="inline-compact" | ||
> | ||
{props.errorMessage} | ||
</ClipboardCopy> | ||
); | ||
|
||
ErrorPresenter.propTypes = { | ||
errorMessage: PropTypes.string, | ||
}; | ||
|
||
ErrorPresenter.defaultProps = { | ||
errorMessage: '', | ||
}; |
72 changes: 72 additions & 0 deletions
72
...react_app/components/HostDetails/ActionsBar/ErrorsTree/components/ErrorsTreePrimaryRow.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import React from 'react'; | ||
import { Td, TreeRowWrapper } from '@patternfly/react-table'; | ||
import { Badge } from '@patternfly/react-core'; | ||
import PropTypes from 'prop-types'; | ||
|
||
export const ErrorsTreePrimaryRow = props => { | ||
const { isExpanded } = props; | ||
const { isDetailsExpanded } = props; | ||
|
||
const treeRow = { | ||
onCollapse: () => | ||
props.setExpandedNodeNames(prevExpanded => { | ||
const otherExpandedNodeNames = prevExpanded.filter( | ||
name => name !== props.node.id | ||
); | ||
return props.isExpanded | ||
? otherExpandedNodeNames | ||
: [...otherExpandedNodeNames, props.node.id]; | ||
}), | ||
onToggleRowDetails: () => | ||
props.setExpandedDetailsNodeNames(prevDetailsExpanded => { | ||
const otherDetailsExpandedNodeNames = prevDetailsExpanded.filter( | ||
name => name !== props.node.id | ||
); | ||
return isDetailsExpanded | ||
? otherDetailsExpandedNodeNames | ||
: [...otherDetailsExpandedNodeNames, props.node.id]; | ||
}), | ||
props: { | ||
isExpanded, | ||
isDetailsExpanded, | ||
'aria-level': 1, | ||
'aria-posinset': props.posinset, | ||
'aria-setsize': props.node.children ? props.node.children.length : 0, | ||
}, | ||
}; | ||
|
||
return ( | ||
<TreeRowWrapper | ||
row={{ | ||
props: treeRow.props, | ||
}} | ||
> | ||
<Td treeRow={treeRow}> | ||
<> | ||
{props.node.name}{' '} | ||
<Badge key={`${props.node.name}_badge`} isRead> | ||
{props.node.children.length} | ||
</Badge> | ||
</> | ||
</Td> | ||
</TreeRowWrapper> | ||
); | ||
}; | ||
|
||
ErrorsTreePrimaryRow.propTypes = { | ||
posinset: PropTypes.number, | ||
isExpanded: PropTypes.bool, | ||
isDetailsExpanded: PropTypes.bool, | ||
setExpandedNodeNames: PropTypes.func, | ||
setExpandedDetailsNodeNames: PropTypes.func, | ||
node: PropTypes.object, | ||
}; | ||
|
||
ErrorsTreePrimaryRow.defaultProps = { | ||
posinset: 0, | ||
isExpanded: false, | ||
isDetailsExpanded: false, | ||
setExpandedNodeNames: () => {}, | ||
setExpandedDetailsNodeNames: () => {}, | ||
node: {}, | ||
}; |
41 changes: 41 additions & 0 deletions
41
...act_app/components/HostDetails/ActionsBar/ErrorsTree/components/ErrorsTreeSecondaryRow.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import React from 'react'; | ||
import { Td, TreeRowWrapper } from '@patternfly/react-table'; | ||
import PropTypes from 'prop-types'; | ||
import { ErrorPresenter } from './ErrorPresenter'; | ||
|
||
export const ErrorsTreeSecondaryRow = props => { | ||
const { isHidden } = props; | ||
|
||
const treeRow = { | ||
props: { | ||
isHidden, | ||
'aria-level': 2, | ||
'aria-posinset': props.posinset, | ||
'aria-setsize': 0, | ||
}, | ||
}; | ||
|
||
return ( | ||
<TreeRowWrapper | ||
row={{ | ||
props: treeRow.props, | ||
}} | ||
> | ||
<Td dataLabel="Variable" treeRow={treeRow}> | ||
<ErrorPresenter errorMessage={props.node?.name} /> | ||
</Td> | ||
</TreeRowWrapper> | ||
); | ||
}; | ||
|
||
ErrorsTreeSecondaryRow.propTypes = { | ||
posinset: PropTypes.number, | ||
isHidden: PropTypes.bool, | ||
node: PropTypes.object, | ||
}; | ||
|
||
ErrorsTreeSecondaryRow.defaultProps = { | ||
posinset: 0, | ||
isHidden: false, | ||
node: {}, | ||
}; |