optimizely-oui
Version:
Optimizely's Component Library.
47 lines (41 loc) • 2.59 kB
JavaScript
import _pt from "prop-types";
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import classNames from "classnames";
import React from "react";
/**
* @deprecated This component has been deprecated 2021-06-04. Use Grid or LayoutGrid instead.
*/
var Container = React.forwardRef(function (_ref, ref) {
var _ref$as = _ref.as,
Component = _ref$as === void 0 ? "div" : _ref$as,
fluid = _ref.fluid,
isFullHeight = _ref.isFullHeight,
outlineDebug = _ref.outlineDebug,
paddedContent = _ref.paddedContent,
pullRowPadding = _ref.pullRowPadding,
pushRowsTop = _ref.pushRowsTop,
props = _objectWithoutProperties(_ref, ["as", "fluid", "isFullHeight", "outlineDebug", "paddedContent", "pullRowPadding", "pushRowsTop"]);
var prefix = "container";
return React.createElement(Component, _extends({
ref: ref
}, props, {
className: classNames(fluid ? "".concat(prefix, "-fluid") : prefix, isFullHeight && "height--1-1", outlineDebug && "outline--debug", paddedContent && "padded-content--".concat(paddedContent), pullRowPadding && "container--pull", pushRowsTop && "push-rows--top")
}));
});
Container.propTypes = {
as: _pt.any,
fluid: _pt.bool,
isFullHeight: _pt.bool,
outlineDebug: _pt.bool,
paddedContent: _pt.oneOf(["none", "around", "sides", "ends", "remove"]),
pullRowPadding: _pt.bool,
pushRowsTop: _pt.bool
};
Container.displayName = "Container";
Container.defaultProps = {
fluid: false,
isFullHeight: false
};
export default Container;