Migrate Master component to typescript

This commit is contained in:
Qolzam
2017-10-07 15:05:07 +07:00
parent 1810550331
commit 8e8875b15c
7 changed files with 164 additions and 32 deletions

View File

@@ -0,0 +1,101 @@
export interface IMasterProps{
/**
* Close gloal message
*
* @type {Function}
* @memberof IMasterProps
*/
closeMessage: Function,
/**
* Show progress bar information
*
* @type {*}
* @memberof IMasterProps
*/
progress:any,
/**
* Login a user
*
* @type {Function}
* @memberof IMasterProps
*/
login: Function,
/**
* Global state
*
* @type {*}
* @memberof IMasterProps
*/
global:any,
/**
* Set flag {false} which user data has not loaded
*
* @type {Function}
* @memberof IMasterProps
*/
defaultDataDisable: Function,
/**
* Logout current user
*
* @type {Function}
* @memberof IMasterProps
*/
logout: Function,
/**
* Clear user date from store
*
* @type {Function}
* @memberof IMasterProps
*/
clearData: Function,
/**
* Prepare default data for a guest user
*
* @type {Function}
* @memberof IMasterProps
*/
loadDataGuest: Function,
/**
* Set flag {true} which all user data has loaded
*
* @type {Function}
* @memberof IMasterProps
*/
defaultDataEnable: Function,
/**
* Load user data into store
*
* @type {Function}
* @memberof IMasterProps
*/
loadData: Function,
/**
* If all data from all entities are loaded {true} if not {false}
*
* @type {Boolean}
* @memberof IMasterProps
*/
loaded:Boolean,
/**
* If current user is guest {true} if no
*
* @type {Boolean}
* @memberof IMasterProps
*/
guest:Boolean,
/**
* If current user is authed {true} if not {false}
*
* @type {Boolean}
* @memberof IMasterProps
*/
authed: Boolean,
/**
* Authed user identifier
*
* @type {string}
* @memberof IMasterProps
*/
uid: string
}

View File

@@ -0,0 +1,24 @@
export interface IMasterState {
/**
* Loding will be appeared if it's true
*
* @type {Boolean}
* @memberof IMasterState
*/
loading: Boolean,
/**
* It's true if user is authorized
*
* @type {Boolean}
* @memberof IMasterState
*/
authed:Boolean;
/**
* It's true if all default data loaded from database
*
* @type {Boolean}
* @memberof IMasterState
*/
dataLoaded:Boolean;
}

View File

@@ -0,0 +1,222 @@
// - Import react components
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { Route, Switch, NavLink, withRouter, Redirect } from 'react-router-dom'
import { firebaseAuth, firebaseRef } from 'app/firebase'
import { push } from 'react-router-redux'
import Snackbar from 'material-ui/Snackbar';
import LinearProgress from 'material-ui/LinearProgress'
// - Import components
import Home from 'components/Home'
import Signup from 'components/Signup'
import Login from 'components/Login'
import Settings from 'components/Settings'
import MasterLoading from 'components/MasterLoading'
import { IMasterProps } from "./IMasterProps";
import { IMasterState } from "./IMasterState";
// - Import API
import { PrivateRoute, PublicRoute } from 'api/AuthRouterAPI'
// - Import actions
import * as authorizeActions from 'actions/authorizeActions'
import * as imageGalleryActions from 'actions/imageGalleryActions'
import * as postActions from 'actions/postActions'
import * as commentActions from 'actions/commentActions'
import * as voteActions from 'actions/voteActions'
import * as userActions from 'actions/userActions'
import * as globalActions from 'actions/globalActions'
import * as circleActions from 'actions/circleActions'
import * as notifyActions from 'actions/notifyActions'
/* ------------------------------------ */
// - Create Master component class
export class Master extends Component<IMasterProps,IMasterState>{
static isPrivate = true
// Constructor
constructor(props : IMasterProps) {
super(props);
this.state = {
loading: true,
authed: false,
dataLoaded: false
};
// Binding functions to `this`
this.handleLoading = this.handleLoading.bind(this)
this.handleMessage = this.handleMessage.bind(this)
}
// Handle click on message
handleMessage = (evt: any) => {
this.props.closeMessage()
}
// Handle loading
handleLoading = (status: boolean) => {
this.setState({
loading: status,
authed: false
})
}
componentWillMount (){
firebaseAuth().onAuthStateChanged((user:any) => {
if (user) {
this.props.login(user)
this.setState({
loading: false
})
if (!this.props.global.defaultLoadDataStatus) {
this.props.clearData()
this.props.loadData()
this.props.defaultDataEnable()
}
} else {
this.props.logout()
this.setState({
loading: false
})
if (this.props.global.defaultLoadDataStatus) {
this.props.defaultDataDisable()
this.props.clearData()
}
this.props.loadDataGuest()
}
})
}
/**
* Render app DOM component
*
* @returns
*
* @memberof Master
*/
public render() {
const {progress, global} = this.props
return (
<div id="master">
<div className='master__progress' style={{display: (progress.visible ? 'block' : 'none' )}}>
<LinearProgress mode="determinate" value={progress.percent} />
</div>
<div className='master__loading animate-fading2' style={{display: ( global.showTopLoading ? 'flex' : 'none' )}}>
<div className='title'> Loading ... </div>
</div>
<MasterLoading activeLoading={this.state.loading || !(this.props.loaded || this.props.guest)} handleLoading={this.handleLoading} />
{(!this.state.loading && (this.props.loaded || this.props.guest))
?(<Switch>
<Route path="/signup" component={Signup} />
<Route path="/settings" component={Settings} />
<Route path="/login" render={() => {
console.log('this.props.authed: ', this.props.authed, "this.props: ", this.props)
return (
this.props.authed
? <Redirect to="/" />
: <Login />
)
}
} />
<Route render={() =><Home uid={this.props.uid}/>} />
</Switch>) : ''
}
<Snackbar
open={this.props.global.messageOpen}
message={this.props.global.message}
autoHideDuration={4000}
style={{left: '1%', transform: 'none'}}
/>
</div>
)
}
}
// - Map dispatch to props
const mapDispatchToProps = (dispatch : any, ownProps : any) => {
return {
loadData: () => {
dispatch(commentActions.dbGetComments())
dispatch(imageGalleryActions.downloadForImageGallery())
dispatch(postActions.dbGetPosts())
dispatch(userActions.dbGetUserInfo())
dispatch(voteActions.dbGetVotes())
dispatch(notifyActions.dbGetNotifies())
dispatch(circleActions.dbGetCircles())
},
clearData: () => {
dispatch(imageGalleryActions.clearAllData())
dispatch(postActions.clearAllData())
dispatch(userActions.clearAllData())
dispatch(commentActions.clearAllData())
dispatch(voteActions.clearAllvotes())
dispatch(notifyActions.clearAllNotifications())
dispatch(circleActions.clearAllCircles())
},
login: (user : any) => {
dispatch(authorizeActions.login(user.uid))
},
logout: () => {
dispatch(authorizeActions.logout())
},
defaultDataDisable: () => {
dispatch(globalActions.defaultDataDisable())
},
defaultDataEnable: () => {
dispatch(globalActions.defaultDataEnable())
},
closeMessage: () => {
dispatch(globalActions.hideMessage())
},
loadDataGuest: () => {
dispatch(globalActions.loadDataGuest())
}
}
}
/**
* Map state to props
* @param {object} state
*/
const mapStateToProps = (state : any) => {
const {authorize, global, user, post, comment, imageGallery , vote, notify,circle } = state;
return {
guest: authorize.guest,
uid: authorize.uid,
authed: authorize.authed,
progress: global.progress,
global: global,
loaded: user.loaded && post.loaded && comment.loaded && imageGallery.loaded && vote.loaded && notify.loaded && circle.loaded
}
}
// - Connect commponent to redux store
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Master as any))

View File

@@ -0,0 +1,2 @@
import Master from './Master';
export default Master;