SearchList.js 9.11 KB
Newer Older
1 2 3
import React, { Component } from 'react';
import moment from 'moment';
import { connect } from 'dva';
4
import { routerRedux } from 'dva/router';
niko's avatar
niko committed
5
import { Form, Card, Select, List, Tag, Icon, Avatar, Row, Col, Button, Input } from 'antd';
6 7 8 9 10 11

import PageHeaderLayout from '../../layouts/PageHeaderLayout';
import StandardFormRow from '../../components/StandardFormRow';
import TagSelect from '../../components/TagSelect';
import styles from './SearchList.less';

afc163's avatar
afc163 committed
12
const { Option } = Select;
13 14
const FormItem = Form.Item;

afc163's avatar
afc163 committed
15 16
const pageSize = 5;

17 18 19 20 21 22
@Form.create()
@connect(state => ({
  list: state.list,
}))
export default class SearchList extends Component {
  componentDidMount() {
afc163's avatar
afc163 committed
23
    this.fetchMore();
24 25 26 27 28 29 30 31 32
  }

  setOwner = () => {
    const { form } = this.props;
    form.setFieldsValue({
      owner: ['wzj'],
    });
  }

afc163's avatar
afc163 committed
33
  fetchMore = () => {
34 35 36
    this.props.dispatch({
      type: 'list/fetch',
      payload: {
afc163's avatar
afc163 committed
37
        count: pageSize,
38 39 40 41
      },
    });
  }

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
  handleTabChange = (key) => {
    const { dispatch } = this.props;
    switch (key) {
      case 'docs':
        dispatch(routerRedux.push('/list/search'));
        break;
      case 'app':
        dispatch(routerRedux.push('/list/filter-card-list'));
        break;
      case 'project':
        dispatch(routerRedux.push('/list/cover-card-list'));
        break;
      default:
        break;
    }
  }

59
  render() {
nikogu's avatar
nikogu committed
60
    const { form, list: { list, loading } } = this.props;
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
    const { getFieldDecorator } = form;

    const owners = [
      {
        id: 'wzj',
        name: '我自己',
      },
      {
        id: 'wjh',
        name: '吴家豪',
      },
      {
        id: 'zxx',
        name: '周星星',
      },
      {
        id: 'zly',
        name: '赵丽颖',
      },
      {
        id: 'ym',
        name: '姚明',
      },
    ];

    const tabList = [
      {
88
        key: 'doc',
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
        tab: '文章',
      },
      {
        key: 'app',
        tab: '应用',
      },
      {
        key: 'project',
        tab: '项目',
      },
    ];

    const IconText = ({ type, text }) => (
      <span>
        <Icon type={type} style={{ marginRight: 8 }} />
        {text}
      </span>
    );

    const ListContent = ({ data: { content, updatedAt, avatar, owner, href } }) => (
      <div className={styles.listContent}>
afc163's avatar
afc163 committed
110 111
        <p className={styles.description}>{content}</p>
        <div className={styles.extra}>
niko's avatar
niko committed
112
          <Avatar src={avatar} size="small" /><a href={href}>{owner}</a> 发布在 <a href={href}>{href}</a>
113 114 115 116 117 118 119
          <em>{moment(updatedAt).format('YYYY-MM-DD hh:mm')}</em>
        </div>
      </div>
    );

    const pageHeaderContent = (
      <div style={{ textAlign: 'center' }}>
niko's avatar
niko committed
120 121 122 123 124 125 126
        <Input.Search
          placeholder="请输入"
          enterButton="搜索"
          size="large"
          onSearch={this.handleFormSubmit}
          style={{ width: 522 }}
        />
127 128 129 130 131 132
      </div>
    );

    const formItemLayout = {
      wrapperCol: {
        xs: { span: 24 },
niko's avatar
niko committed
133 134
        sm: { span: 24 },
        md: { span: 12 },
135 136 137
      },
    };

afc163's avatar
afc163 committed
138
    const loadMore = list.length > 0 ? (
nikogu's avatar
nikogu committed
139
      <div style={{ textAlign: 'center', marginTop: 16 }}>
afc163's avatar
afc163 committed
140 141
        <Button onClick={this.fetchMore} style={{ paddingLeft: 48, paddingRight: 48 }}>
          {loading ? <span><Icon type="loading" /> 加载中...</span> : '加载更多'}
nikogu's avatar
nikogu committed
142 143 144 145
        </Button>
      </div>
    ) : null;

146 147 148 149 150
    return (
      <PageHeaderLayout
        title="搜索列表"
        content={pageHeaderContent}
        tabList={tabList}
151
        onTabChange={this.handleTabChange}
152 153
      >
        <div>
niko's avatar
niko committed
154
          <Card bordered={false}>
155
            <Form layout="inline">
afc163's avatar
afc163 committed
156
              <StandardFormRow title="所属类目" block style={{ paddingBottom: 11 }}>
157 158
                <FormItem>
                  {getFieldDecorator('category')(
afc163's avatar
afc163 committed
159 160 161 162 163 164 165 166 167 168 169 170 171
                    <TagSelect onChange={this.handleFormSubmit} expandable>
                      <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>
172 173 174 175 176
                    </TagSelect>
                  )}
                </FormItem>
              </StandardFormRow>
              <StandardFormRow
nikogu's avatar
nikogu committed
177
                title="owner"
178 179 180
                grid
              >
                <Row>
niko's avatar
niko committed
181
                  <Col lg={16} md={24} sm={24} xs={24}>
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
                    <FormItem>
                      {getFieldDecorator('owner', {
                        initialValue: ['wjh', 'zxx'],
                      })(
                        <Select
                          mode="multiple"
                          style={{ maxWidth: 286, width: '100%' }}
                          placeholder="选择 owner"
                        >
                          {
                            owners.map(owner =>
                              <Option key={owner.id} value={owner.id}>{owner.name}</Option>
                            )
                          }
                        </Select>
                      )}
niko's avatar
niko committed
198
                      <a className={styles.selfTrigger} onClick={this.setOwner}>只看自己的</a>
199 200 201 202 203 204 205 206 207 208
                    </FormItem>
                  </Col>
                </Row>
              </StandardFormRow>
              <StandardFormRow
                title="其它选项"
                grid
                last
              >
                <Row gutter={16}>
niko's avatar
niko committed
209
                  <Col xl={8} lg={10} md={12} sm={24} xs={24}>
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
                    <FormItem
                      {...formItemLayout}
                      label="活跃用户"
                    >
                      {getFieldDecorator('user', {})(
                        <Select
                          onChange={this.handleFormSubmit}
                          placeholder="不限"
                          style={{ maxWidth: 200, width: '100%' }}
                        >
                          <Option value="lisa">李三</Option>
                        </Select>
                      )}
                    </FormItem>
                  </Col>
niko's avatar
niko committed
225
                  <Col xl={8} lg={10} md={12} sm={24} xs={24}>
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
                    <FormItem
                      {...formItemLayout}
                      label="好评度"
                    >
                      {getFieldDecorator('rate', {})(
                        <FormItem
                          label="好评度"
                        >
                          {getFieldDecorator('rate', {})(
                            <Select
                              onChange={this.handleFormSubmit}
                              placeholder="不限"
                              style={{ maxWidth: 200, width: '100%' }}
                            >
                              <Option value="good">优秀</Option>
                            </Select>
                          )}
                        </FormItem>
                      )}
                    </FormItem>
                  </Col>
                </Row>
              </StandardFormRow>
            </Form>
          </Card>
nikogu's avatar
nikogu committed
251 252 253
          <Card
            style={{ marginTop: 24 }}
            bordered={false}
afc163's avatar
afc163 committed
254
            bodyStyle={{ padding: '8px 32px 32px 32px' }}
nikogu's avatar
nikogu committed
255
          >
256
            <List
niko's avatar
niko committed
257
              size="large"
afc163's avatar
afc163 committed
258
              loading={list.length === 0 ? loading : false}
nikogu's avatar
nikogu committed
259
              rowKey="id"
260
              itemLayout="vertical"
nikogu's avatar
nikogu committed
261 262 263 264 265
              loadMore={loadMore}
              dataSource={list}
              renderItem={item => (
                <List.Item
                  key={item.id}
niko's avatar
niko committed
266 267 268 269 270
                  actions={[
                    <IconText type="star-o" text={item.star} />,
                    <IconText type="like-o" text={item.like} />,
                    <IconText type="message" text={item.message} />,
                  ]}
nikogu's avatar
nikogu committed
271 272 273
                  extra={<div className={styles.listItemExtra} />}
                >
                  <List.Item.Meta
niko's avatar
niko committed
274 275 276
                    title={(
                      <a className={styles.listItemMetaTitle} href={item.href}>{item.title}</a>
                    )}
afc163's avatar
afc163 committed
277 278 279 280 281 282 283
                    description={
                      <span>
                        <Tag>Ant Design</Tag>
                        <Tag>设计语言</Tag>
                        <Tag>蚂蚁金服</Tag>
                      </span>
                    }
nikogu's avatar
nikogu committed
284 285 286 287 288
                  />
                  <ListContent data={item} />
                </List.Item>
              )}
            />
289 290 291 292 293 294
          </Card>
        </div>
      </PageHeaderLayout>
    );
  }
}