@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
53 lines (52 loc) • 4.57 kB
JavaScript
'use client';
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
var _excluded = ["className", "gap", "rows", "children", "maxItemWidth"];
var _templateObject;
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
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; }
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
import { createStyles } from 'antd-style';
import { isString } from 'lodash-es';
import { forwardRef } from 'react';
import { Flexbox } from 'react-layout-kit';
import { jsx as _jsx } from "react/jsx-runtime";
export var useStyles = createStyles(function (_ref, _ref2) {
var css = _ref.css;
var rows = _ref2.rows,
maxItemWidth = _ref2.maxItemWidth,
gap = _ref2.gap;
return {
container: css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n --rows: ", ";\n --max-item-width: ", ";\n --gap: ", ";\n\n display: grid !important;\n grid-template-columns: repeat(\n auto-fill,\n minmax(\n max(var(--max-item-width), calc((100% - var(--gap) * (var(--rows) - 1)) / var(--rows))),\n 1fr\n )\n );\n "])), rows, isString(maxItemWidth) ? maxItemWidth : "".concat(maxItemWidth, "px"), isString(gap) ? gap : "".concat(gap, "px"))
};
});
var Grid = /*#__PURE__*/forwardRef(function (_ref3, ref) {
var className = _ref3.className,
_ref3$gap = _ref3.gap,
gap = _ref3$gap === void 0 ? '1em' : _ref3$gap,
_ref3$rows = _ref3.rows,
rows = _ref3$rows === void 0 ? 3 : _ref3$rows,
children = _ref3.children,
_ref3$maxItemWidth = _ref3.maxItemWidth,
maxItemWidth = _ref3$maxItemWidth === void 0 ? 240 : _ref3$maxItemWidth,
rest = _objectWithoutProperties(_ref3, _excluded);
var _useStyles = useStyles({
gap: gap,
maxItemWidth: maxItemWidth,
rows: rows
}),
cx = _useStyles.cx,
styles = _useStyles.styles;
return /*#__PURE__*/_jsx(Flexbox, _objectSpread(_objectSpread({
className: cx(styles.container, className),
gap: gap,
ref: ref
}, rest), {}, {
children: children
}));
});
export default Grid;