gab-social/app/javascript/gabsocial/components/panel/progress_panel.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-04-29 23:32:49 +01:00
import { injectIntl, defineMessages } from 'react-intl'
import { monthlyExpensesComplete } from '../../initial_state'
import { URL_DISSENTER_SHOP } from '../../constants'
2020-02-05 22:45:48 +00:00
import PanelLayout from './panel_layout';
import ProgressBar from '../progress_bar'
2020-04-29 23:32:49 +01:00
const messages = defineMessages({
progressTitle: { id: 'progress_title', defaultMessage: '{value}% covered this month' },
operationsTitle: { id: 'operations_title', defaultMessage: "Gab's Operational Expenses" },
operationsSubtitle: { id: 'operations_subtitle', defaultMessage: 'We are 100% funded by you' },
})
export default
@injectIntl
class ProgressPanel extends PureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
}
2020-02-05 22:45:48 +00:00
render() {
2020-04-29 23:32:49 +01:00
const { intl } = this.props
if (!monthlyExpensesComplete) return null
const value = Math.min(parseFloat(monthlyExpensesComplete), 100)
2020-02-05 22:45:48 +00:00
return (
<PanelLayout
2020-04-29 23:32:49 +01:00
title={intl.formatMessage(messages.operationsTitle)}
subtitle={intl.formatMessage(messages.operationsSubtitle)}
2020-02-05 22:45:48 +00:00
>
2020-03-26 03:11:32 +00:00
<ProgressBar
progress={monthlyExpensesComplete}
2020-04-29 23:32:49 +01:00
title={intl.formatMessage(messages.progressTitle, { value })}
href={URL_DISSENTER_SHOP}
2020-03-26 03:11:32 +00:00
/>
2020-02-05 22:45:48 +00:00
</PanelLayout>
)
}
2020-04-29 23:32:49 +01:00
2020-02-05 22:45:48 +00:00
}