gab-social/app/javascript/gabsocial/components/placeholder/placeholder_layout.js

51 lines
1.3 KiB
JavaScript
Raw Normal View History

import React from 'react'
import { connect } from 'react-redux'
import { defineMessages, injectIntl } from 'react-intl'
import ContentLoader from 'react-content-loader'
import { DEFAULT_THEME } from '../../constants'
class PlaceholderLayout extends React.PureComponent {
render() {
const {
intl,
theme,
viewBox,
} = this.props
const title = intl.formatMessage(messages.loading)
const backgroundColor = theme !== 'light' ? '#555' : '#f3f3f3'
const foregroundColor = theme !== 'light' ? '#888' : '#ecebeb'
return (
<ContentLoader
title={title}
speed={1.25}
viewBox={viewBox}
backgroundColor={backgroundColor}
foregroundColor={foregroundColor}
>
{this.props.children}
</ContentLoader>
)
}
}
const messages = defineMessages({
loading: { id: 'loading_indicator.label', defaultMessage: 'Loading...' },
})
const mapStateToProps = (state) => ({
theme: state.getIn(['settings', 'displayOptions', 'theme'], DEFAULT_THEME),
})
PlaceholderLayout.propTypes = {
children: PropTypes.node,
intl: PropTypes.object.isRequired,
theme: PropTypes.string.isRequired,
viewBox: PropTypes.object.isRequired,
}
export default injectIntl(connect(mapStateToProps)(PlaceholderLayout))