UNPKG

gather-content-ui

Version:
51 lines (50 loc) 2.8 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Flat = Flat; exports["default"] = void 0; var _react = _interopRequireDefault(require("react")); var _index = require("../../index"); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; } function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } var _default = exports["default"] = { title: "Legacy/Windowing/Flat" }; function Flat() { var items = _toConsumableArray(new Array(1000)).map(function (i, index) { return { id: index + 1 }; }); return /*#__PURE__*/_react["default"].createElement(_index.Windowing, { itemHeight: 50, allIds: items, containerHeight: "800px" }, /*#__PURE__*/_react["default"].createElement(_index.Windowing.Scroller, null, /*#__PURE__*/_react["default"].createElement(_index.Windowing.List, null, function (_ref) { var inViewWindowingIds = _ref.inViewWindowingIds; return inViewWindowingIds.map(function (i, index) { return ( /*#__PURE__*/ // @ts-expect-error TS(2339): Property 'Item' does not exist on type '{ ({ child... Remove this comment to see the full error message _react["default"].createElement(_index.Windowing.Item, { key: i.id, index: index }, /*#__PURE__*/_react["default"].createElement(_index.ItemRow, { bordered: true }, /*#__PURE__*/_react["default"].createElement(_index.ItemRow.Name, null, "hello world ", i.id))) ); }); }))); } Flat.parameters = { controls: { hideNoControlsWarning: true } }; //# sourceMappingURL=FlatWindowing.stories.js.map