UNPKG

lucid-ui

Version:

A UI component library from Xandr.

169 lines 8.2 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ResponsiveGrid = void 0; var lodash_1 = __importStar(require("lodash")); var react_1 = __importDefault(require("react")); var prop_types_1 = __importDefault(require("prop-types")); var style_helpers_1 = require("../../util/style-helpers"); var component_types_1 = require("../../util/component-types"); var Resizer_1 = __importDefault(require("../Resizer/Resizer")); var cx = style_helpers_1.lucidClassNames.bind('&-ResponsiveGrid'); var string = prop_types_1.default.string, number = prop_types_1.default.number, arrayOf = prop_types_1.default.arrayOf; /** Cell */ var Cell = function (_props) { return null; }; Cell.displayName = 'ResponsiveGrid.Cell'; Cell.peek = { description: "Renders a `<article>` as the grid cell.", }; var defaultProps = { breakPoints: [960, 1430], }; var ResponsiveGrid = /** @class */ (function (_super) { __extends(ResponsiveGrid, _super); function ResponsiveGrid() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.getColumnLayout = function (numberOfColumns) { var cellProps = lodash_1.default.map((0, component_types_1.findTypes)(_this.props, ResponsiveGridWrapper.Cell), 'props'); var columns = lodash_1.default.reduce(lodash_1.default.map(cellProps, function (props, key) { return (react_1.default.createElement("article", { key: key, className: cx('&-Cell') }, props.children)); }), function (columns, cell, idx) { columns[idx % numberOfColumns].push(cell); return columns; }, lodash_1.default.times(numberOfColumns, function () { return []; })); return (react_1.default.createElement("div", { className: cx('&', { '&-one-column': numberOfColumns === 1, }) }, lodash_1.default.map(columns, function (col, index) { return (react_1.default.createElement("div", { key: index, className: cx('&-Column') }, col)); }))); }; return _this; } ResponsiveGrid.prototype.shouldComponentUpdate = function (nextProps) { var _a = this.props, width = _a.width, breakPoints = _a.breakPoints; var nextWidth = nextProps.width; var breakOne = breakPoints[0], breakTwo = breakPoints[1]; if (nextWidth < width) { return ((nextWidth < breakOne && width >= breakOne) || (nextWidth < breakTwo && width >= breakTwo)); } else if (nextWidth > width) { return ((nextWidth > breakOne && width <= breakOne) || (nextWidth > breakTwo && width <= breakTwo)); } return false; }; ResponsiveGrid.prototype.render = function () { var _a = this.props, width = _a.width, breakPoints = _a.breakPoints; var breakOne = breakPoints[0], breakTwo = breakPoints[1]; if (width < breakTwo) { if (width < breakOne) { return this.getColumnLayout(1); } return this.getColumnLayout(2); } return this.getColumnLayout(3); }; ResponsiveGrid.displayName = 'ResponsiveGrid'; ResponsiveGrid.propTypes = { /** Width of the grid. Note: this does not set the width of the grid, and should be provided by calculating the width of the parent element. */ width: number, /** Break points for the grid to switch column layouts. Break points should be provided in ascending order. Currently only two break points are used. Example: [960, 1430] */ breakPoints: arrayOf(number), /** Appended to the component-specific class names set on the root elements. */ className: string, }; return ResponsiveGrid; }(react_1.default.Component)); exports.ResponsiveGrid = ResponsiveGrid; var ResponsiveGridWrapper = function (props) { var breakPoints = props.breakPoints, children = props.children, className = props.className, passThroughs = __rest(props, ["breakPoints", "children", "className"]); return (react_1.default.createElement(Resizer_1.default, __assign({ className: cx('&', className) }, (0, lodash_1.omit)(passThroughs, ['breakPoints', 'initialState'])), function (width) { return (react_1.default.createElement(ResponsiveGrid, { width: width, breakPoints: breakPoints }, children)); })); }; ResponsiveGridWrapper.Cell = Cell; ResponsiveGridWrapper.defaultProps = defaultProps; ResponsiveGridWrapper.displayName = ResponsiveGrid.displayName; ResponsiveGridWrapper.propTypes = { /** Break points for the grid to switch column layouts. Break points should be provided in ascending order. Currently only two break points are used. Example: [960, 1430] */ breakPoints: arrayOf(number), /** Appended to the component-specific class names set on the root elements. */ className: string, }; ResponsiveGridWrapper.peek = { description: "A grid container that changes the number of grid columns in response to width changes. By default, the grid cells are displayed in a single column for widths less than `960px`, two columns for widths greater than `960px` and less than `1430px`, and three columns for widths greater than `1430px`. Custom break points can be provided through the `breakPoints` prop.", categories: ['utility'], madeFrom: ['Resizer'], }; exports.default = ResponsiveGridWrapper; //# sourceMappingURL=ResponsiveGrid.js.map