123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import *as React from 'react';
- import { Dragact, DragactLayoutItem } from '../../src/lib/dragact'
- import { Words } from './largedata'
- import './index.css';
- const fakeData = () => {
- var Y = 0;
- return Words.map((item, index) => {
- if (index % 4 === 0) Y++;
- return { ...item, GridX: index % 4 * 4, GridY: Y * 4, w: 4, h: 3, key: index + '' }
- })
- }
- const Card: (any: any) => any = ({ item, provided }) => {
- return (
- <div
- className='layout-Item'
- {...provided.props}
- {...provided.dragHandle}
- style={{
- ...provided.props.style,
- background: `${provided.isDragging ? '#eaff8f' : 'white'}`
- }}
- >
- <div
- style={{ padding: 5, textAlign: 'center', color: '#595959' }}
- >
- <span>title</span>
- <div style={{ borderBottom: '1px solid rgba(120,120,120,0.1)' }} />
- {item.content}
- </div>
- </div>
- )
- }
- export class Mobile extends React.Component<{}, {}> {
- render() {
- const margin: [number, number] = [5, 5];
- const dragactInit = {
- width: 500,
- col: 16,
- rowHeight: 45,
- margin: margin,
- className: 'normal-layout',
- layout: fakeData()
- }
- return (
- <div
- style={{
- display: 'flex',
- justifyContent: 'center'
- }}
- >
- <div>
- <h1 style={{ textAlign: 'center' }}>
- 手机普通布局demo
- </h1>
- <Dragact
- {...dragactInit}
- placeholder={true}
- style={{
- background: '#003A8C'
- }}
- >
- {(item: DragactLayoutItem, provided: any) => {
- return <Card
- item={item}
- provided={provided}
- />
- }}
- </Dragact>
- </div>
- </div>
- )
- }
- }
|