index.tsx 7.09 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3
import React, { Component } from 'react';
import numeral from 'numeral';
import { connect } from 'dva';
陈帅's avatar
陈帅 committed
4
import { Row, Col, Form, Card, Select, Icon, Avatar, List, Tooltip, Dropdown, Menu } from 'antd';
陈帅's avatar
陈帅 committed
5 6 7 8 9 10 11 12 13 14 15
import TagSelect from './components/TagSelect';
import StandardFormRow from './components/StandardFormRow';
import styles from './style.less';
import { IStateType } from './model';
import { Dispatch } from 'redux';
import { FormComponentProps } from 'antd/lib/form';
import { ListItemDataType } from './data';

const { Option } = Select;
const FormItem = Form.Item;

陈帅's avatar
陈帅 committed
16 17 18 19
export function formatWan(val: number) {
  const v = val * 1;
  if (!v || Number.isNaN(v)) return '';

陈帅's avatar
陈帅 committed
20
  let result: React.ReactNode = val;
陈帅's avatar
陈帅 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
  if (val > 10000) {
    result = (
      <span>
        {Math.floor(val / 10000)}
        <span
          style={{
            position: 'relative',
            top: -2,
            fontSize: 14,
            fontStyle: 'normal',
            marginLeft: 2,
          }}
        >

        </span>
      </span>
    );
  }
  return result;
}

陈帅's avatar
陈帅 committed
42
interface PAGE_NAME_UPPER_CAMEL_CASEProps extends FormComponentProps {
陈帅's avatar
陈帅 committed
43
  dispatch: Dispatch<any>;
陈帅's avatar
陈帅 committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  BLOCK_NAME_CAMEL_CASE: IStateType;
  loading: boolean;
}

class PAGE_NAME_UPPER_CAMEL_CASE extends Component<PAGE_NAME_UPPER_CAMEL_CASEProps> {
  componentDidMount() {
    const { dispatch } = this.props;
    dispatch({
      type: 'BLOCK_NAME_CAMEL_CASE/fetch',
      payload: {
        count: 8,
      },
    });
  }

  render() {
    const {
      BLOCK_NAME_CAMEL_CASE: { list },
      loading,
      form,
    } = this.props;
    const { getFieldDecorator } = form;

    const CardInfo: React.SFC<{
      activeUser: React.ReactNode;
      newUser: React.ReactNode;
    }> = ({ activeUser, newUser }) => (
      <div className={styles.cardInfo}>
        <div>
          <p>活跃用户</p>
          <p>{activeUser}</p>
        </div>
        <div>
          <p>新增用户</p>
          <p>{newUser}</p>
        </div>
      </div>
    );

    const formItemLayout = {
      wrapperCol: {
        xs: { span: 24 },
        sm: { span: 16 },
      },
    };

    const itemMenu = (
      <Menu>
        <Menu.Item>
          <a target="_blank" rel="noopener noreferrer" href="https://www.alipay.com/">
            1st menu item
          </a>
        </Menu.Item>
        <Menu.Item>
          <a target="_blank" rel="noopener noreferrer" href="https://www.taobao.com/">
            2nd menu item
          </a>
        </Menu.Item>
        <Menu.Item>
          <a target="_blank" rel="noopener noreferrer" href="https://www.tmall.com/">
            3d menu item
          </a>
        </Menu.Item>
      </Menu>
    );

    return (
      <div className={styles.filterCardList}>
        <Card bordered={false}>
          <Form layout="inline">
            <StandardFormRow title="所属类目" block style={{ paddingBottom: 11 }}>
              <FormItem>
                {getFieldDecorator('category')(
陈帅's avatar
陈帅 committed
117
                  <TagSelect expandable>
陈帅's avatar
陈帅 committed
118 119 120 121 122 123 124 125 126 127 128 129
                    <TagSelect.Option value="cat1">类目一</TagSelect.Option>
                    <TagSelect.Option value="cat2">类目二</TagSelect.Option>
                    <TagSelect.Option value="cat3">类目三</TagSelect.Option>
                    <TagSelect.Option value="cat4">类目四</TagSelect.Option>
                    <TagSelect.Option value="cat5">类目五</TagSelect.Option>
                    <TagSelect.Option value="cat6">类目六</TagSelect.Option>
                    <TagSelect.Option value="cat7">类目七</TagSelect.Option>
                    <TagSelect.Option value="cat8">类目八</TagSelect.Option>
                    <TagSelect.Option value="cat9">类目九</TagSelect.Option>
                    <TagSelect.Option value="cat10">类目十</TagSelect.Option>
                    <TagSelect.Option value="cat11">类目十一</TagSelect.Option>
                    <TagSelect.Option value="cat12">类目十二</TagSelect.Option>
陈帅's avatar
陈帅 committed
130
                  </TagSelect>,
陈帅's avatar
陈帅 committed
131 132 133 134 135 136 137 138 139 140
                )}
              </FormItem>
            </StandardFormRow>
            <StandardFormRow title="其它选项" grid last>
              <Row gutter={16}>
                <Col lg={8} md={10} sm={10} xs={24}>
                  <FormItem {...formItemLayout} label="作者">
                    {getFieldDecorator('author', {})(
                      <Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
                        <Option value="lisa">王昭君</Option>
陈帅's avatar
陈帅 committed
141
                      </Select>,
陈帅's avatar
陈帅 committed
142 143 144 145 146 147 148 149 150
                    )}
                  </FormItem>
                </Col>
                <Col lg={8} md={10} sm={10} xs={24}>
                  <FormItem {...formItemLayout} label="好评度">
                    {getFieldDecorator('rate', {})(
                      <Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
                        <Option value="good">优秀</Option>
                        <Option value="normal">普通</Option>
陈帅's avatar
陈帅 committed
151
                      </Select>,
陈帅's avatar
陈帅 committed
152 153 154 155 156 157 158
                    )}
                  </FormItem>
                </Col>
              </Row>
            </StandardFormRow>
          </Form>
        </Card>
陈帅's avatar
陈帅 committed
159
        <br />
陈帅's avatar
陈帅 committed
160 161 162 163 164 165 166 167 168 169 170
        <List<ListItemDataType>
          rowKey="id"
          grid={{ gutter: 24, xl: 4, lg: 3, md: 3, sm: 2, xs: 1 }}
          loading={loading}
          dataSource={list}
          renderItem={item => (
            <List.Item key={item.id}>
              <Card
                hoverable
                bodyStyle={{ paddingBottom: 20 }}
                actions={[
陈帅's avatar
陈帅 committed
171
                  <Tooltip key="download" title="下载">
陈帅's avatar
陈帅 committed
172 173
                    <Icon type="download" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
174
                  <Tooltip key="edit" title="编辑">
陈帅's avatar
陈帅 committed
175 176
                    <Icon type="edit" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
177
                  <Tooltip title="分享" key="share">
陈帅's avatar
陈帅 committed
178 179
                    <Icon type="share-alt" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
180
                  <Dropdown key="ellipsis" overlay={itemMenu}>
陈帅's avatar
陈帅 committed
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
                    <Icon type="ellipsis" />
                  </Dropdown>,
                ]}
              >
                <Card.Meta avatar={<Avatar size="small" src={item.avatar} />} title={item.title} />
                <div className={styles.cardItemContent}>
                  <CardInfo
                    activeUser={formatWan(item.activeUser)}
                    newUser={numeral(item.newUser).format('0,0')}
                  />
                </div>
              </Card>
            </List.Item>
          )}
        />
      </div>
    );
  }
}

陈帅's avatar
陈帅 committed
201
const WarpForm = Form.create<PAGE_NAME_UPPER_CAMEL_CASEProps>({
陈帅's avatar
陈帅 committed
202 203 204 205 206 207 208 209 210 211 212
  onValuesChange({ dispatch }: PAGE_NAME_UPPER_CAMEL_CASEProps, changedValues, allValues) {
    // 表单项变化时请求数据
    // 模拟查询表单生效
    dispatch({
      type: 'BLOCK_NAME_CAMEL_CASE/fetch',
      payload: {
        count: 8,
      },
    });
  },
})(PAGE_NAME_UPPER_CAMEL_CASE);
陈帅's avatar
陈帅 committed
213 214 215 216 217 218 219 220 221 222 223

export default connect(
  ({
    BLOCK_NAME_CAMEL_CASE,
    loading,
  }: {
    BLOCK_NAME_CAMEL_CASE: IStateType;
    loading: { models: { [key: string]: boolean } };
  }) => ({
    BLOCK_NAME_CAMEL_CASE,
    loading: loading.models.BLOCK_NAME_CAMEL_CASE,
陈帅's avatar
陈帅 committed
224
  }),
陈帅's avatar
陈帅 committed
225
)(WarpForm);