1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import * as React from 'react';
- import { Dragact } from '../../src/lib/dragact'
- import './index.css'
- const Words = [
- { content: 'Sorry I just can not move in any circumstances', static: true },
- { content: 'Those who dare to fail miserably can achieve greatly.' },
- { content: 'You miss 100 percent of the shots you never take.' },
- { content: 'Sorry I just can not move in any circumstances,too' },
- { content: 'I’d rather live with a good question than a bad answer.' }
- ]
- 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: 4, key: index + '', canResize: false }
- })
- }
- const Cell: (any: any) => any = ({ item, provided }) => {
- return (
- <div
- {...provided.props}
- {...provided.dragHandle}
- className={`layout-Cell ${item.static ? "static" : ""}`}
- style={{ ...provided.props.style, background: item.static ? "#e8e8e8" : "" }}
- >
- <div style={{ padding: 10, color: '#595959' }}>{item.content}</div>
- </div>
- )
- }
- export const SortedTableWithStatic = () => {
- return (
- <div style={{ display: 'flex', justifyContent: 'center' }}>
- <div>
- <h1 style={{ textAlign: 'center' }}>静态组件 Demo</h1>
- <Dragact
- width={600}
- col={16}
- rowHeight={30}
- margin={[2, 2]}
- className='normal-layout'
- layout={fakeData()}
- placeholder={true}
- >
- {(item: any, provided: any) => {
- return <Cell item={item} provided={provided} />
- }}
- </Dragact>
- </div>
- </div>
- )
- }
|