antd
Version:
An enterprise-class UI design language and React components implementation
53 lines (52 loc) • 1.44 kB
JavaScript
;
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Item;
var React = _interopRequireWildcard(require("react"));
var _context = require("./context");
function Item(_ref) {
let {
className,
direction,
index,
marginDirection,
children,
split,
wrap,
style: customStyle
} = _ref;
const {
horizontalSize,
verticalSize,
latestIndex,
supportFlexGap
} = React.useContext(_context.SpaceContext);
let style = {};
if (!supportFlexGap) {
if (direction === 'vertical') {
if (index < latestIndex) {
style = {
marginBottom: horizontalSize / (split ? 2 : 1)
};
}
} else {
style = Object.assign(Object.assign({}, index < latestIndex && {
[marginDirection]: horizontalSize / (split ? 2 : 1)
}), wrap && {
paddingBottom: verticalSize
});
}
}
if (children === null || children === undefined) {
return null;
}
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
className: className,
style: Object.assign(Object.assign({}, style), customStyle)
}, children), index < latestIndex && split && /*#__PURE__*/React.createElement("span", {
className: `${className}-split`,
style: style
}, split));
}