-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathEmptyTable.jsx
112 lines (106 loc) · 3.16 KB
/
EmptyTable.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
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 { EmptyStatePropTypes } from '../TablePropTypes';
import deprecate from '../../../internal/deprecate';
const { iotPrefix } = settings;
const propTypes = {
/** The unique id of the table */
id: PropTypes.string,
/** Empty state to render, either a custom element or an object */
emptyState: EmptyStatePropTypes.isRequired,
totalColumns: PropTypes.number.isRequired,
isFiltered: PropTypes.bool.isRequired,
onEmptyStateAction: PropTypes.func,
// 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,
/** icon to display while no data in table */
emptyStateIcon: PropTypes.oneOfType([
PropTypes.func,
PropTypes.oneOf(['error', 'error404', 'empty', 'not-authorized', 'no-result', 'success', '']),
]),
};
const defaultProps = {
id: 'EmptyTable',
onEmptyStateAction: null,
testId: '',
emptyStateIcon: '',
};
const EmptyTable = ({
id,
totalColumns,
isFiltered,
emptyState,
onEmptyStateAction,
emptyState: {
messageWithFilters,
message,
buttonLabel,
buttonLabelWithFilters,
messageBody,
messageWithFiltersBody,
},
// TODO: remove deprecated 'testID' in v3
testID,
testId,
emptyStateIcon,
}) => {
return (
<TableBody
id={`${id}-empty-table`}
// TODO: remove deprecated 'testID' in v3
data-testid={testID || testId}
>
<TableRow className={`${iotPrefix}--empty-table--table-row`}>
<TableCell colSpan={totalColumns}>
{React.isValidElement(emptyState) ? (
emptyState
) : (
<div className="empty-table-cell--default">
{isFiltered ? (
<EmptyState
icon="no-result"
title={messageWithFilters}
body={messageWithFiltersBody || ''}
action={
onEmptyStateAction
? {
label: buttonLabelWithFilters,
onClick: onEmptyStateAction,
kind: 'secondary',
}
: null
}
/>
) : (
<EmptyState
icon={emptyStateIcon !== '' ? emptyStateIcon : 'empty'}
title={message}
body={messageBody || ''}
action={
onEmptyStateAction
? {
label: buttonLabel,
onClick: onEmptyStateAction,
}
: null
}
/>
)}
</div>
)}
</TableCell>
</TableRow>
</TableBody>
);
};
EmptyTable.propTypes = propTypes;
EmptyTable.defaultProps = defaultProps;
export default EmptyTable;