var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__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; }; import * as React from 'react'; import { Dragact } from '../lib/dragact'; import { Words } from './largedata'; import './index.css'; var fakeData = function () { var Y = 0; return Words.map(function (item, index) { if (index % 4 === 0) Y++; return __assign({}, item, { GridX: index % 4 * 4, GridY: Y * 4, w: 4, h: 3, key: index + '', canResize: false }); }); }; var Card = function (props) { var item = props.item; var isDragging = props.isDragging; return (React.createElement("div", { className: 'layout-Item', style: { background: "" + (isDragging ? '#eaff8f' : 'white') } }, React.createElement("div", { style: { padding: 5, textAlign: 'center', color: '#595959' } }, React.createElement("span", null, "title"), React.createElement("div", { style: { borderBottom: '1px solid rgba(120,120,120,0.1)' } }), item.content))); }; var Mobile = /** @class */ (function (_super) { __extends(Mobile, _super); function Mobile() { return _super !== null && _super.apply(this, arguments) || this; } Mobile.prototype.render = function () { var margin = [5, 5]; var dragactInit = { width: 500, col: 16, rowHeight: 45, margin: margin, className: 'normal-layout', layout: fakeData() }; return (React.createElement("div", { style: { display: 'flex', justifyContent: 'center' } }, React.createElement("div", null, React.createElement("h1", { style: { textAlign: 'center' } }, "\u624B\u673A\u666E\u901A\u5E03\u5C40demo"), React.createElement(Dragact, __assign({}, dragactInit, { placeholder: true, style: { background: '#003A8C' } }), function (item, isDragging) { return React.createElement(Card, { item: item, isDragging: isDragging }); })))); }; return Mobile; }(React.Component)); export { Mobile };