index.tsx 7.09 KB
Newer Older
陈帅's avatar
陈帅 committed
1
import { Avatar, Card, Col, Dropdown, Form, Icon, List, Menu, Row, Select, Tooltip } from 'antd';
陈帅's avatar
陈帅 committed
2
import React, { Component } from 'react';
陈帅's avatar
陈帅 committed
3

陈帅's avatar
陈帅 committed
4 5
import { Dispatch } from 'redux';
import { FormComponentProps } from 'antd/es/form';
陈帅's avatar
陈帅 committed
6 7
import { connect } from 'dva';
import numeral from 'numeral';
陈帅's avatar
陈帅 committed
8 9
import { IStateType } from './model';
import { ListItemDataType } from './data';
陈帅's avatar
陈帅 committed
10 11 12
import StandardFormRow from './components/StandardFormRow';
import TagSelect from './components/TagSelect';
import styles from './style.less';
陈帅's avatar
陈帅 committed
13 14 15 16

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

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

陈帅's avatar
陈帅 committed
21
  let result: React.ReactNode = val;
陈帅's avatar
陈帅 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
  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
43
interface PAGE_NAME_UPPER_CAMEL_CASEProps extends FormComponentProps {
陈帅's avatar
陈帅 committed
44
  dispatch: Dispatch<any>;
陈帅's avatar
陈帅 committed
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 117
  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
118
                  <TagSelect expandable>
陈帅's avatar
陈帅 committed
119 120 121 122 123 124 125 126 127 128 129 130
                    <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
131
                  </TagSelect>,
陈帅's avatar
陈帅 committed
132 133 134 135 136 137 138 139 140 141
                )}
              </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
142
                      </Select>,
陈帅's avatar
陈帅 committed
143 144 145 146 147 148 149 150 151
                    )}
                  </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
152
                      </Select>,
陈帅's avatar
陈帅 committed
153 154 155 156 157 158 159
                    )}
                  </FormItem>
                </Col>
              </Row>
            </StandardFormRow>
          </Form>
        </Card>
陈帅's avatar
陈帅 committed
160
        <br />
陈帅's avatar
陈帅 committed
161 162 163 164 165 166 167 168 169 170 171
        <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
172
                  <Tooltip key="download" title="下载">
陈帅's avatar
陈帅 committed
173 174
                    <Icon type="download" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
175
                  <Tooltip key="edit" title="编辑">
陈帅's avatar
陈帅 committed
176 177
                    <Icon type="edit" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
178
                  <Tooltip title="分享" key="share">
陈帅's avatar
陈帅 committed
179 180
                    <Icon type="share-alt" />
                  </Tooltip>,
陈帅's avatar
陈帅 committed
181
                  <Dropdown key="ellipsis" overlay={itemMenu}>
陈帅's avatar
陈帅 committed
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
                    <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
202
const WarpForm = Form.create<PAGE_NAME_UPPER_CAMEL_CASEProps>({
陈帅's avatar
陈帅 committed
203 204 205 206 207 208 209 210 211 212 213
  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
214 215 216 217 218 219 220 221 222 223 224

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
225
  }),
陈帅's avatar
陈帅 committed
226
)(WarpForm);