[Refactoring][Breaking Changes]
- Move `reducers` and `actions` folders to `store` folder. - Move pages container components to `containers` folder.
This commit is contained in:
201
src/containers/people/PeopleComponent.tsx
Normal file
201
src/containers/people/PeopleComponent.tsx
Normal file
@@ -0,0 +1,201 @@
|
||||
// - 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 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: any, ownProps: IPeopleComponentProps) => {
|
||||
|
||||
return {
|
||||
translate: getTranslate(state.locale),
|
||||
uid: state.authorize.uid,
|
||||
circlesLoaded: state.circle.loaded
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// - Connect component to redux store
|
||||
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(PeopleComponent as any) as any)
|
||||
Reference in New Issue
Block a user