2020-08-17 21:07:16 +01:00
|
|
|
import React from 'react'
|
2020-08-17 21:59:29 +01:00
|
|
|
import PropTypes from 'prop-types'
|
2020-08-17 21:39:25 +01:00
|
|
|
import { connect } from 'react-redux'
|
2020-04-23 07:13:29 +01:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl'
|
2020-05-14 21:45:39 +01:00
|
|
|
import { me } from '../initial_state'
|
2020-12-03 04:22:51 +00:00
|
|
|
import { getWindowDimension } from '../utils/is_mobile'
|
|
|
|
import {
|
|
|
|
CX,
|
|
|
|
MODAL_COMPOSE,
|
|
|
|
BREAKPOINT_EXTRA_SMALL,
|
|
|
|
} from '../constants'
|
2020-04-23 07:13:29 +01:00
|
|
|
import { openModal } from '../actions/modal'
|
2020-02-24 21:56:07 +00:00
|
|
|
import Button from './button'
|
2020-01-27 22:20:07 +00:00
|
|
|
|
2020-12-03 04:22:51 +00:00
|
|
|
const initialState = getWindowDimension()
|
|
|
|
|
2020-08-17 21:07:16 +01:00
|
|
|
class FloatingActionButton extends React.PureComponent {
|
2020-05-14 21:45:39 +01:00
|
|
|
|
2020-12-03 04:22:51 +00:00
|
|
|
state = {
|
|
|
|
width: initialState.width,
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.handleResize()
|
|
|
|
window.addEventListener('resize', this.handleResize, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
handleResize = () => {
|
|
|
|
const { width } = getWindowDimension()
|
|
|
|
this.setState({ width })
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
window.removeEventListener('resize', this.handleResize, false)
|
|
|
|
}
|
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
render() {
|
2020-12-03 04:22:51 +00:00
|
|
|
const { intl, onOpenCompose } = this.props
|
|
|
|
const { width } = this.state
|
2020-04-23 07:13:29 +01:00
|
|
|
|
2020-05-14 21:45:39 +01:00
|
|
|
if (!me) return null
|
|
|
|
|
2020-12-03 04:22:51 +00:00
|
|
|
const isDesktop = width > BREAKPOINT_EXTRA_SMALL
|
2020-04-23 07:13:29 +01:00
|
|
|
const message = intl.formatMessage(messages.gab)
|
2020-03-26 03:11:32 +00:00
|
|
|
|
2020-05-15 23:49:54 +01:00
|
|
|
const containerClasses = CX({
|
|
|
|
posFixed: 1,
|
|
|
|
z3: 1,
|
|
|
|
mb15: 1,
|
|
|
|
mr15: 1,
|
|
|
|
right0: 1,
|
|
|
|
bottom55PX: !isDesktop,
|
|
|
|
bottom0: isDesktop,
|
|
|
|
pb15: isDesktop,
|
|
|
|
pr15: isDesktop,
|
|
|
|
})
|
|
|
|
|
2019-08-07 06:02:36 +01:00
|
|
|
return (
|
2020-05-14 22:47:33 +01:00
|
|
|
<div
|
2020-05-15 23:49:54 +01:00
|
|
|
className={containerClasses}
|
2020-05-14 22:47:33 +01:00
|
|
|
>
|
|
|
|
<Button
|
2020-05-15 23:49:54 +01:00
|
|
|
to={isDesktop ? undefined : '/compose'}
|
|
|
|
onClick={isDesktop ? onOpenCompose : undefined}
|
2020-08-18 21:43:06 +01:00
|
|
|
className={[_s.py15, _s.h60PX, _s.saveAreaInsetMR, _s.saveAreaInsetMB, _s.w60PX, _s.jcCenter, _s.aiCenter].join(' ')}
|
2020-05-14 22:47:33 +01:00
|
|
|
title={message}
|
|
|
|
aria-label={message}
|
|
|
|
icon='pencil'
|
|
|
|
iconSize='20px'
|
|
|
|
/>
|
|
|
|
</div>
|
2019-08-07 06:02:36 +01:00
|
|
|
)
|
|
|
|
}
|
2020-05-14 21:45:39 +01:00
|
|
|
|
2020-08-18 01:57:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
gab: { id: 'gab', defaultMessage: 'Gab' },
|
|
|
|
})
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
2020-12-03 04:22:51 +00:00
|
|
|
onOpenCompose: () => dispatch(openModal(MODAL_COMPOSE)),
|
2020-08-18 01:57:35 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
FloatingActionButton.propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
onOpenCompose: PropTypes.func.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
export default injectIntl(connect(null, mapDispatchToProps)(FloatingActionButton))
|