Analysis.js 15.1 KB
Newer Older
1 2
import React, { Component } from 'react';
import { connect } from 'dva';
afc163's avatar
afc163 committed
3
import { Row, Col, Icon, Card, Tabs, Table, Radio, DatePicker, Tooltip, Menu, Dropdown } from 'antd';
4
import numeral from 'numeral';
偏右's avatar
偏右 committed
5
import {
偏右's avatar
偏右 committed
6
  ChartCard, yuan, MiniArea, MiniBar, MiniProgress, Field, Bar, Pie, TimelineChart,
偏右's avatar
偏右 committed
7 8
} from '../../components/Charts';
import Trend from '../../components/Trend';
偏右's avatar
偏右 committed
9
import NumberInfo from '../../components/NumberInfo';
10 11 12 13
import { getTimeDistance } from '../../utils/utils';

import styles from './Analysis.less';

afc163's avatar
afc163 committed
14
const { TabPane } = Tabs;
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
const { RangePicker } = DatePicker;

const rankingListData = [];
for (let i = 0; i < 7; i += 1) {
  rankingListData.push({
    title: `工专路 ${i} 号店`,
    total: 323234,
  });
}

@connect(state => ({
  chart: state.chart,
}))
export default class Analysis extends Component {
  state = {
30
    loading: true,
31 32 33 34 35 36 37 38
    salesType: 'all',
    currentTabKey: '',
    rangePickerValue: [],
  }

  componentDidMount() {
    this.props.dispatch({
      type: 'chart/fetch',
39
    }).then(() => this.setState({ loading: false }));
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  }

  componentWillUnmount() {
    const { dispatch } = this.props;
    dispatch({
      type: 'chart/clear',
    });
  }

  handleChangeSalesType = (e) => {
    this.setState({
      salesType: e.target.value,
    });
  }

  handleTabChange = (key) => {
    this.setState({
      currentTabKey: key,
    });
  }

  handleRangePickerChange = (rangePickerValue) => {
    this.setState({
      rangePickerValue,
    });
nikogu's avatar
nikogu committed
65 66 67 68

    this.props.dispatch({
      type: 'chart/fetchSalesData',
    });
69 70 71 72 73 74 75 76 77 78 79 80
  }

  selectDate = (type) => {
    this.setState({
      rangePickerValue: getTimeDistance(type),
    });

    this.props.dispatch({
      type: 'chart/fetchSalesData',
    });
  }

afc163's avatar
afc163 committed
81 82 83 84 85 86 87 88 89 90 91
  isActive(type) {
    const { rangePickerValue } = this.state;
    const value = getTimeDistance(type);
    if (!rangePickerValue[0] || !rangePickerValue[1]) {
      return;
    }
    if (rangePickerValue[0].isSame(value[0], 'day') && rangePickerValue[1].isSame(value[1], 'day')) {
      return styles.currentDate;
    }
  }

92
  render() {
93
    const { rangePickerValue, salesType, currentTabKey, loading } = this.state;
94 95 96
    const { chart } = this.props;
    const {
      visitData,
afc163's avatar
afc163 committed
97
      visitData2,
98 99 100 101 102 103 104
      salesData,
      searchData,
      offlineData,
      offlineChartData,
      salesTypeData,
      salesTypeDataOnline,
      salesTypeDataOffline,
afc163's avatar
afc163 committed
105
    } = chart;
106 107 108 109 110 111

    const salesPieData = salesType === 'all' ?
      salesTypeData
      :
      (salesType === 'online' ? salesTypeDataOnline : salesTypeDataOffline);

afc163's avatar
afc163 committed
112 113 114 115 116 117 118
    const menu = (
      <Menu>
        <Menu.Item>操作一</Menu.Item>
        <Menu.Item>操作二</Menu.Item>
      </Menu>
    );

119 120
    const iconGroup = (
      <span className={styles.iconGroup}>
afc163's avatar
afc163 committed
121 122 123
        <Dropdown overlay={menu} placement="bottomRight">
          <Icon type="ellipsis" />
        </Dropdown>
124 125 126
      </span>
    );

afc163's avatar
afc163 committed
127 128 129
    const salesExtra = (
      <div className={styles.salesExtraWrap}>
        <div className={styles.salesExtra}>
afc163's avatar
afc163 committed
130 131 132 133 134 135 136 137 138 139 140 141
          <a className={this.isActive('today')} onClick={() => this.selectDate('today')}>
            今日
          </a>
          <a className={this.isActive('week')} onClick={() => this.selectDate('week')}>
            本周
          </a>
          <a className={this.isActive('month')} onClick={() => this.selectDate('month')}>
            本月
          </a>
          <a className={this.isActive('year')} onClick={() => this.selectDate('year')}>
            全年
          </a>
afc163's avatar
afc163 committed
142 143 144 145 146 147
        </div>
        <RangePicker
          value={rangePickerValue}
          onChange={this.handleRangePickerChange}
          style={{ width: 256 }}
        />
148
      </div>
afc163's avatar
afc163 committed
149
    );
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

    const columns = [
      {
        title: '排名',
        dataIndex: 'index',
        key: 'index',
      },
      {
        title: '搜索关键词',
        dataIndex: 'keyword',
        key: 'keyword',
        render: text => <a href="/">{text}</a>,
      },
      {
        title: '用户数',
        dataIndex: 'count',
        key: 'count',
        sorter: (a, b) => a.count - b.count,
afc163's avatar
afc163 committed
168
        className: styles.alignRight,
169 170 171 172 173 174 175
      },
      {
        title: '周涨幅',
        dataIndex: 'range',
        key: 'range',
        sorter: (a, b) => a.range - b.range,
        render: (text, record) => (
偏右's avatar
偏右 committed
176 177 178
          <Trend flag={record.status === 1 ? 'down' : 'up'}>
            <span style={{ marginRight: 4 }}>{text}%</span>
          </Trend>
179
        ),
afc163's avatar
afc163 committed
180
        className: styles.alignRight,
181 182 183
      },
    ];

nikogu's avatar
nikogu committed
184 185
    const activeKey = currentTabKey || (offlineData[0] && offlineData[0].name);

186
    const CustomTab = ({ data, currentTabKey: currentKey }) => (
niko's avatar
niko committed
187
      <Row gutter={8} style={{ width: 138, margin: '8px 0' }}>
188 189 190 191
        <Col span={12}>
          <NumberInfo
            title={data.name}
            subTitle="转化率"
偏右's avatar
偏右 committed
192 193
            gap={2}
            total={`${data.cvr * 100}%`}
194 195 196 197 198
            theme={(currentKey !== data.name) && 'light'}
          />
        </Col>
        <Col span={12} style={{ paddingTop: 36 }}>
          <Pie
nikogu's avatar
nikogu committed
199
            animate={false}
afc163's avatar
Fix pie  
afc163 committed
200
            color={(currentKey !== data.name) && '#BDE4FF'}
201 202 203 204 205 206 207 208 209 210 211 212 213
            inner={0.55}
            tooltip={false}
            margin={[0, 0, 0, 0]}
            percent={data.cvr * 100}
            height={64}
          />
        </Col>
      </Row>
    );

    const topColResponsiveProps = {
      xs: 24,
      sm: 12,
niko's avatar
niko committed
214 215 216
      md: 12,
      lg: 12,
      xl: 6,
217 218 219 220 221 222 223 224 225
      style: { marginBottom: 24 },
    };

    return (
      <div>
        <Row gutter={24}>
          <Col {...topColResponsiveProps}>
            <ChartCard
              bordered={false}
niko's avatar
niko committed
226
              title="总销售额"
afc163's avatar
afc163 committed
227
              action={<Tooltip title="指标说明"><Icon type="info-circle-o" /></Tooltip>}
228
              total={yuan(126560)}
afc163's avatar
afc163 committed
229
              footer={<Field label="日均销售额" value={`¥${numeral(12423).format('0,0')}`} />}
230 231
              contentHeight={46}
            >
afc163's avatar
afc163 committed
232 233 234 235 236 237
              <Trend flag="up" style={{ marginRight: 16 }}>
                周同比<span className={styles.trendText}>12%</span>
              </Trend>
              <Trend flag="down">
                日环比<span className={styles.trendText}>11%</span>
              </Trend>
238 239 240 241 242 243
            </ChartCard>
          </Col>
          <Col {...topColResponsiveProps}>
            <ChartCard
              bordered={false}
              title="访问量"
afc163's avatar
afc163 committed
244
              action={<Tooltip title="指标说明"><Icon type="info-circle-o" /></Tooltip>}
245 246 247 248 249
              total={numeral(8846).format('0,0')}
              footer={<Field label="日访问量" value={numeral(1234).format('0,0')} />}
              contentHeight={46}
            >
              <MiniArea
niko's avatar
niko committed
250
                color="#975FE4"
251 252 253 254 255 256 257 258 259
                height={46}
                data={visitData}
              />
            </ChartCard>
          </Col>
          <Col {...topColResponsiveProps}>
            <ChartCard
              bordered={false}
              title="支付笔数"
afc163's avatar
afc163 committed
260
              action={<Tooltip title="指标说明"><Icon type="info-circle-o" /></Tooltip>}
261 262 263 264 265 266 267 268 269 270 271 272 273
              total={numeral(6560).format('0,0')}
              footer={<Field label="转化率" value="60%" />}
              contentHeight={46}
            >
              <MiniBar
                height={46}
                data={visitData}
              />
            </ChartCard>
          </Col>
          <Col {...topColResponsiveProps}>
            <ChartCard
              bordered={false}
niko's avatar
niko committed
274
              title="运营活动效果"
afc163's avatar
afc163 committed
275
              action={<Tooltip title="指标说明"><Icon type="info-circle-o" /></Tooltip>}
276
              total="78%"
afc163's avatar
afc163 committed
277
              footer={
afc163's avatar
afc163 committed
278
                <div style={{ whiteSpace: 'nowrap', overflow: 'hidden' }}>
afc163's avatar
afc163 committed
279 280 281 282 283 284
                  <Trend flag="up" style={{ marginRight: 16 }}>
                    周同比<span className={styles.trendText}>12%</span>
                  </Trend>
                  <Trend flag="down">
                    日环比<span className={styles.trendText}>11%</span>
                  </Trend>
偏右's avatar
偏右 committed
285
                </div>
afc163's avatar
afc163 committed
286
              }
287 288
              contentHeight={46}
            >
niko's avatar
niko committed
289
              <MiniProgress percent={78} strokeWidth={8} target={80} color="#13C2C2" />
290 291 292 293 294
            </ChartCard>
          </Col>
        </Row>

        <Card
295
          loading={loading}
296 297 298 299
          bordered={false}
          bodyStyle={{ padding: 0 }}
        >
          <div className={styles.salesCard}>
afc163's avatar
afc163 committed
300
            <Tabs tabBarExtraContent={salesExtra} size="large" tabBarStyle={{ marginBottom: 24 }}>
301
              <TabPane tab="销售额" key="sales">
niko's avatar
niko committed
302
                <Row>
nikogu's avatar
nikogu committed
303
                  <Col xl={16} lg={12} md={12} sm={24} xs={24}>
304 305
                    <div className={styles.salesBar}>
                      <Bar
niko's avatar
niko committed
306
                        height={295}
307 308 309 310
                        title="销售额趋势"
                        data={salesData}
                      />
                    </div>
311
                  </Col>
nikogu's avatar
nikogu committed
312
                  <Col xl={8} lg={12} md={12} sm={24} xs={24}>
313 314 315 316 317 318
                    <div className={styles.salesRank}>
                      <h4 className={styles.rankingTitle}>门店销售额排名</h4>
                      <ul className={styles.rankingList}>
                        {
                          rankingListData.map((item, i) => (
                            <li key={item.title}>
afc163's avatar
afc163 committed
319
                              <span className={(i < 3) ? styles.active : ''}>{i + 1}</span>
320 321 322 323 324 325 326
                              <span>{item.title}</span>
                              <span>{numeral(item.total).format('0,0')}</span>
                            </li>
                          ))
                        }
                      </ul>
                    </div>
327 328 329
                  </Col>
                </Row>
              </TabPane>
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
              <TabPane tab="访问量" key="views">
                <Row gutter={72}>
                  <Col xl={16} lg={12} md={12} sm={24} xs={24}>
                    <div className={styles.salesBar}>
                      <Bar
                        height={292}
                        title="访问量趋势"
                        data={salesData}
                      />
                    </div>
                  </Col>
                  <Col xl={8} lg={12} md={12} sm={24} xs={24}>
                    <div className={styles.salesRank}>
                      <h4 className={styles.rankingTitle}>门店访问量排名</h4>
                      <ul className={styles.rankingList}>
                        {
                          rankingListData.map((item, i) => (
                            <li key={item.title}>
                              <span className={(i < 3) && styles.active}>{i + 1}</span>
                              <span>{item.title}</span>
                              <span>{numeral(item.total).format('0,0')}</span>
                            </li>
                          ))
                        }
                      </ul>
                    </div>
                  </Col>
                </Row>
358 359 360 361 362 363
              </TabPane>
            </Tabs>
          </div>
        </Card>

        <Row gutter={24}>
364
          <Col xl={12} lg={24} md={24} sm={24} xs={24}>
365
            <Card
366
              loading={loading}
367 368 369 370 371 372 373 374
              bordered={false}
              title="线上热门搜索"
              extra={iconGroup}
              style={{ marginTop: 24 }}
            >
              <Row gutter={68}>
                <Col sm={12} xs={24} style={{ marginBottom: 24 }}>
                  <NumberInfo
afc163's avatar
afc163 committed
375 376 377 378 379 380 381 382
                    subTitle={
                      <span>
                        搜索用户数
                        <Tooltip title="指标文案">
                          <Icon style={{ marginLeft: 8 }} type="info-circle-o" />
                        </Tooltip>
                      </span>
                    }
偏右's avatar
偏右 committed
383
                    gap={8}
384 385 386 387 388 389 390
                    total={numeral(12321).format('0,0')}
                    status="up"
                    subTotal={17.1}
                  />
                  <MiniArea
                    line
                    height={45}
afc163's avatar
afc163 committed
391
                    data={visitData2}
392 393 394 395 396 397 398 399
                  />
                </Col>
                <Col sm={12} xs={24} style={{ marginBottom: 24 }}>
                  <NumberInfo
                    subTitle="人均搜索次数"
                    total={2.7}
                    status="down"
                    subTotal={26.2}
偏右's avatar
偏右 committed
400
                    gap={8}
401 402 403 404
                  />
                  <MiniArea
                    line
                    height={45}
afc163's avatar
afc163 committed
405
                    data={visitData2}
406 407 408 409 410
                  />
                </Col>
              </Row>
              <Table
                rowKey={record => record.index}
afc163's avatar
afc163 committed
411
                size="small"
412 413 414 415
                columns={columns}
                dataSource={searchData}
                pagination={{
                  style: { marginBottom: 0 },
416 417 418
                  showSizeChanger: true,
                  showQuickJumper: true,
                  //pageSizeOptions: [5, 10, 15, 20],
419 420 421 422 423
                  pageSize: 5,
                }}
              />
            </Card>
          </Col>
424
          <Col xl={12} lg={24} md={24} sm={24} xs={24}>
425
            <Card
426
              loading={loading}
niko's avatar
niko committed
427
              className={styles.salesCard}
428 429
              bordered={false}
              title="销售额类别占比"
niko's avatar
niko committed
430 431 432 433 434 435 436 437 438 439 440 441
              extra={(
                <div className={styles.salesCardExtra}>
                  {iconGroup}
                  <div className={styles.salesTypeRadio}>
                    <Radio.Group value={salesType} onChange={this.handleChangeSalesType}>
                      <Radio.Button value="all">全部渠道</Radio.Button>
                      <Radio.Button value="online">线上</Radio.Button>
                      <Radio.Button value="offline">门店</Radio.Button>
                    </Radio.Group>
                  </div>
                </div>
              )}
442 443
              style={{ marginTop: 24 }}
            >
偏右's avatar
偏右 committed
444 445 446 447 448 449 450 451 452
              <h4 style={{ marginTop: 8, marginBottom: 32 }}>销售额</h4>
              <Pie
                hasLegend
                subTitle="销售额"
                total={yuan(salesPieData.reduce((pre, now) => now.y + pre, 0))}
                data={salesPieData}
                valueFormat={val => yuan(val)}
                height={240}
                lineWidth={4}
afc163's avatar
afc163 committed
453
                style={{ marginBottom: 57 }}
偏右's avatar
偏右 committed
454
              />
455 456 457 458 459
            </Card>
          </Col>
        </Row>

        <Card
460
          loading={loading}
niko's avatar
niko committed
461
          className={styles.offlineCard}
462
          bordered={false}
niko's avatar
niko committed
463 464
          bodyStyle={{ padding: '0 0 32px 0' }}
          style={{ marginTop: 32 }}
465 466
        >
          <Tabs
nikogu's avatar
nikogu committed
467
            activeKey={activeKey}
468 469 470 471 472
            onChange={this.handleTabChange}
          >
            {
              offlineData.map(shop => (
                <TabPane
nikogu's avatar
nikogu committed
473
                  tab={<CustomTab data={shop} currentTabKey={activeKey} />}
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
                  key={shop.name}
                >
                  <div style={{ padding: '0 24px' }}>
                    <TimelineChart
                      data={offlineChartData}
                      titleMap={{ y1: '客流量', y2: '支付笔数' }}
                    />
                  </div>
                </TabPane>)
              )
            }
          </Tabs>
        </Card>
      </div>
    );
  }
afc163's avatar
afc163 committed
490
}