104 lines
2.8 KiB
TypeScript
104 lines
2.8 KiB
TypeScript
import * as React from 'react'
|
|
import * as q from '../../../../backend/src/Model'
|
|
import CustomIconButton from '../helper/CustomIconButton'
|
|
import Pause from '@material-ui/icons/PauseCircleFilled'
|
|
import Resume from '@material-ui/icons/PlayCircleFilled'
|
|
import { AppState } from '../../reducers'
|
|
import { bindActionCreators } from 'redux'
|
|
import { connect } from 'react-redux'
|
|
import { treeActions } from '../../actions'
|
|
import { StyleRulesCallback, withStyles } from '@material-ui/core/styles'
|
|
import { Tooltip } from '@material-ui/core'
|
|
|
|
const styles: StyleRulesCallback = theme => ({
|
|
icon: {
|
|
color: theme.palette.primary.contrastText,
|
|
verticalAlign: 'middle' as 'middle',
|
|
},
|
|
bufferStats: {
|
|
minWidth: '8em',
|
|
},
|
|
})
|
|
|
|
interface Props {
|
|
classes: any
|
|
actions: {
|
|
tree: typeof treeActions,
|
|
}
|
|
paused: boolean
|
|
tree?: q.Tree<any>
|
|
}
|
|
|
|
class PauseButton extends React.Component<Props, {changes: number}> {
|
|
private timer?: any
|
|
constructor(props: Props) {
|
|
super(props)
|
|
this.state = { changes: 0 }
|
|
}
|
|
|
|
private renderBufferStats() {
|
|
if (!this.props.tree) {
|
|
return
|
|
}
|
|
|
|
return (
|
|
<span className={this.props.classes.bufferStats}>
|
|
{this.state.changes} changes<br />
|
|
buffer at {Math.round(this.props.tree.unmergedChanges().fillState() * 10000) / 100}%
|
|
</span>
|
|
)
|
|
}
|
|
|
|
public componentDidMount() {
|
|
this.timer = setInterval(() => {
|
|
if (!this.props.paused || !this.props.tree) {
|
|
return
|
|
}
|
|
|
|
const changes = this.props.tree.unmergedChanges()
|
|
if (this.state.changes !== changes.length) {
|
|
this.setState({ changes: changes.length })
|
|
}
|
|
}, 300)
|
|
}
|
|
|
|
public componentWillUnmount() {
|
|
this.timer && clearInterval(this.timer)
|
|
}
|
|
|
|
public render() {
|
|
const message = this.props.paused ? 'Resumes updating the tree, after applying all recorded changes' : 'Stops all updates, records changes until the buffer is full.'
|
|
return (
|
|
<div style={{ display: 'inline-flex' }}>
|
|
<span>
|
|
<CustomIconButton onClick={this.props.actions.tree.togglePause} >
|
|
<Tooltip title={message}>
|
|
<div /* Required so tooltip does not loose the anchor when the icon changes */>
|
|
{this.props.paused ? <Resume className={this.props.classes.icon} /> : <Pause className={this.props.classes.icon} />}
|
|
</div>
|
|
</Tooltip>
|
|
</CustomIconButton>
|
|
</span>
|
|
{this.props.paused ? this.renderBufferStats() : null}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: AppState) => {
|
|
return {
|
|
paused: state.tree.get('paused'),
|
|
tree: state.tree.get('tree'),
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch: any) => {
|
|
return {
|
|
actions: {
|
|
tree: bindActionCreators(treeActions, dispatch),
|
|
},
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(withStyles(styles)(PauseButton))
|