mon-entreprise/source/components/ProgressTip.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react'
import { Trans, translate } from 'react-i18next'
2017-12-20 15:21:29 +00:00
import { connect } from 'react-redux'
import { withRouter } from 'react-router'
import './ProgressTip.css'
import { Line } from 'rc-progress'
import { pick } from 'ramda'
@withRouter
@translate()
@connect(
pick(['foldedSteps', 'nextSteps', 'themeColours', 'conversationStarted'])
)
export default class ProgressTip extends Component {
render() {
2018-03-12 09:38:29 +00:00
let {
nextSteps,
foldedSteps,
themeColours: { colour, textColourOnWhite },
conversationStarted
2018-03-12 09:38:29 +00:00
} = this.props,
2017-12-20 15:21:29 +00:00
nbQuestions = nextSteps.length
2018-03-12 09:38:29 +00:00
if (!conversationStarted) return null
return (
2018-03-14 16:10:28 +00:00
nbQuestions != 0 && (
<div className="progressTip">
<Line
style={{
visibility: foldedSteps.length > 0 ? 'visible' : 'hidden'
}}
percent={
100 * foldedSteps.length / (foldedSteps.length + nbQuestions)
}
trailWidth="1"
strokeWidth="2"
strokeColor={colour}
/>
<p style={{ color: textColourOnWhite }}>
{nbQuestions === 1 ? (
'dernière question !'
) : (
<span>
<i className="fa fa-minus-square-o" aria-hidden="true" />
{` de ${nbQuestions} questions`}
</span>
)}
</p>
2018-03-14 16:10:28 +00:00
</div>
)
)
}
}