203 lines
5.2 KiB
TypeScript
203 lines
5.2 KiB
TypeScript
// - Import react components
|
|
import React, { Component } from 'react'
|
|
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import PropTypes from 'prop-types'
|
|
import Tabs, { Tab } from 'material-ui/Tabs'
|
|
import { grey, cyan } from 'material-ui/colors'
|
|
import { push } from 'react-router-redux'
|
|
import AppBar from 'material-ui/AppBar'
|
|
import Typography from 'material-ui/Typography'
|
|
import { getTranslate, getActiveLanguage } from 'react-localize-redux'
|
|
import {Map} from 'immutable'
|
|
|
|
// - Import app components
|
|
import FindPeople from 'src/components/findPeople'
|
|
import Following from 'src/components/following'
|
|
import Followers from 'src/components/followers'
|
|
import YourCircles from 'src/components/yourCircles'
|
|
|
|
// - Import API
|
|
|
|
// - Import actions
|
|
import * as circleActions from 'src/store/actions/circleActions'
|
|
import * as globalActions from 'src/store/actions/globalActions'
|
|
import { IPeopleComponentProps } from './IPeopleComponentProps'
|
|
import { IPeopleComponentState } from './IPeopleComponentState'
|
|
|
|
const TabContainer = (props: any) => {
|
|
return (
|
|
<Typography component='div' style={{ padding: 8 * 3 }}>
|
|
{props.children}
|
|
</Typography>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Create component class
|
|
*/
|
|
export class PeopleComponent extends Component<IPeopleComponentProps,IPeopleComponentState> {
|
|
|
|
static propTypes = {
|
|
|
|
}
|
|
|
|
/**
|
|
* Component constructor
|
|
* @param {object} props is an object properties of component
|
|
*/
|
|
constructor (props: IPeopleComponentProps) {
|
|
super(props)
|
|
const {tab} = this.props.match.params
|
|
// Defaul state
|
|
this.state = {
|
|
tabIndex: this.getTabIndexByNav(tab)
|
|
}
|
|
|
|
// Binding functions to `this`
|
|
|
|
}
|
|
|
|
/**
|
|
* Hadle on tab change
|
|
*/
|
|
handleChangeTab = (event: any, value: any) => {
|
|
const {circlesLoaded, goTo, setHeaderTitle} = this.props
|
|
this.setState({ tabIndex: value })
|
|
switch (value) {
|
|
case 0:
|
|
goTo!('/people')
|
|
setHeaderTitle!('People')
|
|
break
|
|
case 1:
|
|
goTo!('/people/circles')
|
|
setHeaderTitle!('Circles')
|
|
break
|
|
case 2:
|
|
goTo!('/people/followers')
|
|
setHeaderTitle!('Followers')
|
|
break
|
|
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
componentWillMount () {
|
|
const { setHeaderTitle} = this.props
|
|
const {tab} = this.props.match.params
|
|
switch (tab) {
|
|
case undefined:
|
|
case '':
|
|
setHeaderTitle!('People')
|
|
break
|
|
case 'circles':
|
|
setHeaderTitle!('Circles')
|
|
break
|
|
case 'followers':
|
|
setHeaderTitle!('Followers')
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Reneder component DOM
|
|
* @return {react element} return the DOM which rendered by component
|
|
*/
|
|
render () {
|
|
/**
|
|
* Component styles
|
|
*/
|
|
const styles = {
|
|
people: {
|
|
margin: '0 auto'
|
|
},
|
|
headline: {
|
|
fontSize: 24,
|
|
paddingTop: 16,
|
|
marginBottom: 12,
|
|
fontWeight: 400
|
|
},
|
|
slide: {
|
|
padding: 10
|
|
}
|
|
}
|
|
|
|
const {circlesLoaded, goTo, setHeaderTitle, translate} = this.props
|
|
const {tabIndex} = this.state
|
|
return (
|
|
<div style={styles.people}>
|
|
<AppBar position='static' color='default'>
|
|
<Tabs indicatorColor={grey[50]}
|
|
onChange={this.handleChangeTab}
|
|
value={tabIndex} centered
|
|
textColor='primary'
|
|
>
|
|
<Tab label={translate!('people.findPeopleTab')} />
|
|
<Tab label={translate!('people.followingTab')} />
|
|
<Tab label={translate!('people.followersTab')} />
|
|
</Tabs>
|
|
</AppBar>
|
|
{tabIndex === 0 && <TabContainer>{circlesLoaded ? <FindPeople /> : ''}</TabContainer>}
|
|
{tabIndex === 1 && <TabContainer>
|
|
{circlesLoaded ? <Following/> : ''}
|
|
{circlesLoaded ? <YourCircles/> : ''}
|
|
</TabContainer>}
|
|
{tabIndex === 2 && <TabContainer>{circlesLoaded ? <Followers /> : ''}</TabContainer>}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
/**
|
|
* Get tab index by navigation name
|
|
*/
|
|
private getTabIndexByNav: (navName: string) => number = (navName: string) => {
|
|
let tabIndex = 0
|
|
switch (navName) {
|
|
case 'circles':
|
|
return 1
|
|
case 'followers':
|
|
return 2
|
|
default:
|
|
return 0
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Map dispatch to props
|
|
* @param {func} dispatch is the function to dispatch action to reducers
|
|
* @param {object} ownProps is the props belong to component
|
|
* @return {object} props of component
|
|
*/
|
|
const mapDispatchToProps = (dispatch: any, ownProps: IPeopleComponentProps) => {
|
|
|
|
return {
|
|
goTo: (url: string) => dispatch(push(url)),
|
|
setHeaderTitle : (title: string) => dispatch(globalActions.setHeaderTitle(title))
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Map state to props
|
|
* @param {object} state is the obeject from redux store
|
|
* @param {object} ownProps is the props belong to component
|
|
* @return {object} props of component
|
|
*/
|
|
const mapStateToProps = (state: Map<string, any>, ownProps: IPeopleComponentProps) => {
|
|
|
|
return {
|
|
translate: getTranslate(state.get('locale')),
|
|
uid: state.getIn(['authorize', 'uid'], 0),
|
|
circlesLoaded: state.getIn(['circle', 'loaded'])
|
|
|
|
}
|
|
}
|
|
|
|
// - Connect component to redux store
|
|
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(PeopleComponent as any) as any)
|