-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathErrorTable.jsx
81 lines (74 loc) · 2.13 KB
/
ErrorTable.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import React from 'react';
import PropTypes from 'prop-types';
import { TableBody, TableCell, TableRow } from '@carbon/react';
import EmptyState from '../../EmptyState';
import { settings } from '../../../constants/Settings';
import deprecate from '../../../internal/deprecate';
const { iotPrefix } = settings;
const propTypes = {
/** The unique id of the table */
id: PropTypes.string,
// TODO: remove deprecated 'testID' in v3
// eslint-disable-next-line react/require-default-props
testID: deprecate(
PropTypes.string,
`The 'testID' prop has been deprecated. Please use 'testId' instead.`
),
testId: PropTypes.string,
/** set of internationalized labels */
i18n: PropTypes.objectOf(
PropTypes.oneOfType([PropTypes.string, PropTypes.func, PropTypes.element])
).isRequired,
totalColumns: PropTypes.number.isRequired,
/** Empty error state to render */
errorState: PropTypes.element,
error: PropTypes.string,
onErrorStateAction: PropTypes.func,
};
const defaultProps = {
id: 'ErrorTable',
testId: 'ErrorTable',
error: null,
errorState: null,
onErrorStateAction: null,
};
const ErrorTable = ({
id,
testID,
testId,
i18n,
totalColumns,
error,
errorState,
onErrorStateAction,
}) => (
<TableBody id={id} data-testid={testID || testId}>
<TableRow className={`${iotPrefix}--empty-table--table-row`}>
<TableCell colSpan={totalColumns}>
<div className="empty-table-cell--default">
{React.isValidElement(errorState) ? (
errorState
) : (
<EmptyState
icon="error"
title={i18n.tableErrorStateTitle}
body={error || ''}
action={
onErrorStateAction
? {
label: i18n.buttonLabelOnTableError,
onClick: onErrorStateAction,
kind: 'secondary',
}
: null
}
/>
)}
</div>
</TableCell>
</TableRow>
</TableBody>
);
ErrorTable.propTypes = propTypes;
ErrorTable.defaultProps = defaultProps;
export default ErrorTable;