index.tsx 7.33 KB
Newer Older
1 2
import React, { PureComponent } from 'react';
import { connect } from 'dva';
3
import { Dispatch } from 'redux';
4
import Link from 'umi/link';
陈帅's avatar
陈帅 committed
5
import { GridContent } from '@ant-design/pro-layout';
6
import { RouteChildrenProps } from 'react-router';
7 8
import { Card, Row, Col, Icon, Avatar, Tag, Divider, Input } from 'antd';
import styles from './Center.less';
9 10
import { ITag, CurrentUser } from './data';
import { ModalState } from './model';
陈帅's avatar
陈帅 committed
11 12 13
import Articles from './components/Articles';
import Applications from './components/Applications';
import Projects from './components/Projects';
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

const operationTabList = [
  {
    key: 'articles',
    tab: (
      <span>
        文章 <span style={{ fontSize: 14 }}>(8)</span>
      </span>
    ),
  },
  {
    key: 'applications',
    tab: (
      <span>
        应用 <span style={{ fontSize: 14 }}>(8)</span>
      </span>
    ),
  },
  {
    key: 'projects',
    tab: (
      <span>
        项目 <span style={{ fontSize: 14 }}>(8)</span>
      </span>
    ),
  },
];

42
interface BLOCK_NAME_CAMEL_CASEProps extends RouteChildrenProps {
陈帅's avatar
陈帅 committed
43
  dispatch: Dispatch<any>;
44 45 46 47 48
  currentUser: CurrentUser;
  currentUserLoading: boolean;
}
interface BLOCK_NAME_CAMEL_CASEState {
  newTags: ITag[];
陈帅's avatar
陈帅 committed
49
  tabKey: 'articles' | 'applications' | 'projects';
50 51 52 53 54 55 56 57 58 59 60 61 62 63
  inputVisible: boolean;
  inputValue: string;
}

@connect(
  ({
    loading,
    BLOCK_NAME_CAMEL_CASE,
  }: {
    loading: { effects: any };
    BLOCK_NAME_CAMEL_CASE: ModalState;
  }) => ({
    currentUser: BLOCK_NAME_CAMEL_CASE.currentUser,
    currentUserLoading: loading.effects['BLOCK_NAME_CAMEL_CASE/fetchCurrent'],
陈帅's avatar
陈帅 committed
64
  }),
65 66 67 68 69
)
class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent<
  BLOCK_NAME_CAMEL_CASEProps,
  BLOCK_NAME_CAMEL_CASEState
> {
陈帅's avatar
陈帅 committed
70 71 72 73 74 75 76
  // static getDerivedStateFromProps(
  //   props: BLOCK_NAME_CAMEL_CASEProps,
  //   state: BLOCK_NAME_CAMEL_CASEState,
  // ) {
  //   const { match, location } = props;
  //   const { tabKey } = state;
  //   const path = match && match.path;
77

陈帅's avatar
陈帅 committed
78 79 80 81 82 83
  //   const urlTabKey = location.pathname.replace(`${path}/`, '');
  //   if (urlTabKey && urlTabKey !== '/' && tabKey !== urlTabKey) {
  //     return {
  //       tabKey: urlTabKey,
  //     };
  //   }
84

陈帅's avatar
陈帅 committed
85 86
  //   return null;
  // }
87

88
  state: BLOCK_NAME_CAMEL_CASEState = {
89 90 91 92 93 94
    newTags: [],
    inputVisible: false,
    inputValue: '',
    tabKey: 'articles',
  };

陈帅's avatar
陈帅 committed
95 96
  input: Input | null | undefined;

97 98 99 100 101
  componentDidMount() {
    const { dispatch } = this.props;
    dispatch({
      type: 'BLOCK_NAME_CAMEL_CASE/fetchCurrent',
    });
陈帅's avatar
陈帅 committed
102 103 104
    dispatch({
      type: 'BLOCK_NAME_CAMEL_CASE/fetch',
    });
105 106
  }

107
  onTabChange = (key: string) => {
108 109 110 111
    // If you need to sync state to url
    // const { match } = this.props;
    // router.push(`${match.url}/${key}`);
    this.setState({
陈帅's avatar
陈帅 committed
112
      tabKey: key as BLOCK_NAME_CAMEL_CASEState['tabKey'],
113 114 115 116
    });
  };

  showInput = () => {
117
    this.setState({ inputVisible: true }, () => this.input && this.input.focus());
118 119
  };

120
  saveInputRef = (input: Input | null) => {
121 122 123
    this.input = input;
  };

124
  handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    this.setState({ inputValue: e.target.value });
  };

  handleInputConfirm = () => {
    const { state } = this;
    const { inputValue } = state;
    let { newTags } = state;
    if (inputValue && newTags.filter(tag => tag.label === inputValue).length === 0) {
      newTags = [...newTags, { key: `new-${newTags.length}`, label: inputValue }];
    }
    this.setState({
      newTags,
      inputVisible: false,
      inputValue: '',
    });
  };
陈帅's avatar
陈帅 committed
141

陈帅's avatar
陈帅 committed
142 143 144 145 146 147 148 149 150 151 152 153
  renderChildrenByTabKey = (tabKey: BLOCK_NAME_CAMEL_CASEState['tabKey']) => {
    if (tabKey === 'projects') {
      return <Projects />;
    }
    if (tabKey === 'applications') {
      return <Applications />;
    }
    if (tabKey === 'articles') {
      return <Articles />;
    }
    return null;
  };
陈帅's avatar
陈帅 committed
154

155 156
  render() {
    const { newTags, inputVisible, inputValue, tabKey } = this.state;
陈帅's avatar
陈帅 committed
157
    const { currentUser, currentUserLoading } = this.props;
158 159
    const dataLoading = currentUserLoading || !(currentUser && Object.keys(currentUser).length);
    return (
陈帅's avatar
陈帅 committed
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
      <GridContent>
        <Row gutter={24}>
          <Col lg={7} md={24}>
            <Card bordered={false} style={{ marginBottom: 24 }} loading={dataLoading}>
              {!dataLoading ? (
                <div>
                  <div className={styles.avatarHolder}>
                    <img alt="" src={currentUser.avatar} />
                    <div className={styles.name}>{currentUser.name}</div>
                    <div>{currentUser.signature}</div>
                  </div>
                  <div className={styles.detail}>
                    <p>
                      <i className={styles.title} />
                      {currentUser.title}
                    </p>
                    <p>
                      <i className={styles.group} />
                      {currentUser.group}
                    </p>
                    <p>
                      <i className={styles.address} />
                      {currentUser.geographic.province.label}
                      {currentUser.geographic.city.label}
                    </p>
                  </div>
                  <Divider dashed />
                  <div className={styles.tags}>
                    <div className={styles.tagsTitle}>标签</div>
陈帅's avatar
陈帅 committed
189
                    {currentUser.tags.concat(newTags).map(item => <Tag key={item.key}>{item.label}</Tag>)}
陈帅's avatar
陈帅 committed
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
                    {inputVisible && (
                      <Input
                        ref={ref => this.saveInputRef(ref)}
                        type="text"
                        size="small"
                        style={{ width: 78 }}
                        value={inputValue}
                        onChange={this.handleInputChange}
                        onBlur={this.handleInputConfirm}
                        onPressEnter={this.handleInputConfirm}
                      />
                    )}
                    {!inputVisible && (
                      <Tag
                        onClick={this.showInput}
                        style={{ background: '#fff', borderStyle: 'dashed' }}
                      >
                        <Icon type="plus" />
                      </Tag>
                    )}
                  </div>
                  <Divider style={{ marginTop: 16 }} dashed />
                  <div className={styles.team}>
                    <div className={styles.teamTitle}>团队</div>
                    <Row gutter={36}>
                      {currentUser.notice &&
                        currentUser.notice.map(item => (
                          <Col key={item.id} lg={24} xl={12}>
                            <Link to={item.href}>
                              <Avatar size="small" src={item.logo} />
                              {item.member}
                            </Link>
                          </Col>
                        ))}
                    </Row>
                  </div>
226
                </div>
陈帅's avatar
陈帅 committed
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
              ) : null}
            </Card>
          </Col>
          <Col lg={17} md={24}>
            <Card
              className={styles.tabsCard}
              bordered={false}
              tabList={operationTabList}
              activeTabKey={tabKey}
              onTabChange={this.onTabChange}
            >
              {this.renderChildrenByTabKey(tabKey)}
            </Card>
          </Col>
        </Row>
      </GridContent>
243 244 245 246 247
    );
  }
}

export default PAGE_NAME_UPPER_CAMEL_CASE;