Cell.js
1.71 KB
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
import _defineProperty from "@babel/runtime/helpers/defineProperty";
import * as React from 'react';
import classNames from 'classnames';
function notEmpty(val) {
return val !== undefined && val !== null;
}
var Cell = function Cell(_ref) {
var itemPrefixCls = _ref.itemPrefixCls,
component = _ref.component,
span = _ref.span,
className = _ref.className,
style = _ref.style,
labelStyle = _ref.labelStyle,
contentStyle = _ref.contentStyle,
bordered = _ref.bordered,
label = _ref.label,
content = _ref.content,
colon = _ref.colon;
var Component = component;
if (bordered) {
var _classNames;
return /*#__PURE__*/React.createElement(Component, {
className: classNames((_classNames = {}, _defineProperty(_classNames, "".concat(itemPrefixCls, "-item-label"), notEmpty(label)), _defineProperty(_classNames, "".concat(itemPrefixCls, "-item-content"), notEmpty(content)), _classNames), className),
style: style,
colSpan: span
}, notEmpty(label) ? label : content);
}
return /*#__PURE__*/React.createElement(Component, {
className: classNames("".concat(itemPrefixCls, "-item"), className),
style: style,
colSpan: span
}, /*#__PURE__*/React.createElement("div", {
className: "".concat(itemPrefixCls, "-item-container")
}, label && /*#__PURE__*/React.createElement("span", {
className: classNames("".concat(itemPrefixCls, "-item-label"), _defineProperty({}, "".concat(itemPrefixCls, "-item-no-colon"), !colon)),
style: labelStyle
}, label), content && /*#__PURE__*/React.createElement("span", {
className: classNames("".concat(itemPrefixCls, "-item-content")),
style: contentStyle
}, content)));
};
export default Cell;