import React, { PureComponent } from 'react'; import { connect } from 'dva'; import { Dispatch } from 'redux'; import Link from 'umi/link'; import { RouteChildrenProps } from 'react-router'; import { Card, Row, Col, Icon, Avatar, Tag, Divider, Input } from 'antd'; import styles from './Center.less'; import { ITag, CurrentUser } from './data'; import { ModalState } from './model'; import Articles from './components/Articles'; import Applications from './components/Applications'; import Projects from './components/Projects'; const operationTabList = [ { key: 'articles', tab: ( 文章 (8) ), }, { key: 'applications', tab: ( 应用 (8) ), }, { key: 'projects', tab: ( 项目 (8) ), }, ]; interface BLOCK_NAME_CAMEL_CASEProps extends RouteChildrenProps { dispatch: Dispatch; currentUser: CurrentUser; currentUserLoading: boolean; } interface BLOCK_NAME_CAMEL_CASEState { newTags: ITag[]; tabKey: 'articles' | 'applications' | 'projects'; 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'], }), ) class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent< BLOCK_NAME_CAMEL_CASEProps, BLOCK_NAME_CAMEL_CASEState > { // static getDerivedStateFromProps( // props: BLOCK_NAME_CAMEL_CASEProps, // state: BLOCK_NAME_CAMEL_CASEState, // ) { // const { match, location } = props; // const { tabKey } = state; // const path = match && match.path; // const urlTabKey = location.pathname.replace(`${path}/`, ''); // if (urlTabKey && urlTabKey !== '/' && tabKey !== urlTabKey) { // return { // tabKey: urlTabKey, // }; // } // return null; // } state: BLOCK_NAME_CAMEL_CASEState = { newTags: [], inputVisible: false, inputValue: '', tabKey: 'articles', }; input: Input | null | undefined; componentDidMount() { const { dispatch } = this.props; dispatch({ type: 'BLOCK_NAME_CAMEL_CASE/fetchCurrent', }); dispatch({ type: 'BLOCK_NAME_CAMEL_CASE/fetch', }); } onTabChange = (key: string) => { // If you need to sync state to url // const { match } = this.props; // router.push(`${match.url}/${key}`); this.setState({ tabKey: key as BLOCK_NAME_CAMEL_CASEState['tabKey'], }); }; showInput = () => { this.setState({ inputVisible: true }, () => this.input && this.input.focus()); }; saveInputRef = (input: Input | null) => { this.input = input; }; handleInputChange = (e: React.ChangeEvent) => { 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: '', }); }; renderChildrenByTabKey = (tabKey: BLOCK_NAME_CAMEL_CASEState['tabKey']) => { if (tabKey === 'projects') { return ; } if (tabKey === 'applications') { return ; } if (tabKey === 'articles') { return ; } return null; }; render() { const { newTags, inputVisible, inputValue, tabKey } = this.state; const { currentUser, currentUserLoading } = this.props; const dataLoading = currentUserLoading || !(currentUser && Object.keys(currentUser).length); return ( {!dataLoading ? (
{currentUser.name}
{currentUser.signature}

{currentUser.title}

{currentUser.group}

{currentUser.geographic.province.label} {currentUser.geographic.city.label}

标签
{currentUser.tags.concat(newTags).map(item => { return {item.label}; })} {inputVisible && ( this.saveInputRef(ref)} type="text" size="small" style={{ width: 78 }} value={inputValue} onChange={this.handleInputChange} onBlur={this.handleInputConfirm} onPressEnter={this.handleInputConfirm} /> )} {!inputVisible && ( )}
团队
{currentUser.notice.map(item => ( {item.member} ))}
) : null}
{this.renderChildrenByTabKey(tabKey)}
); } } export default PAGE_NAME_UPPER_CAMEL_CASE;