a72ea2b525
• Updated: - panels to be async_components • Added: - WrappedBundle
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
import { Fragment } from 'react'
|
|
import { me, promotions } from '../initial_state'
|
|
import Bundle from '../features/ui/util/bundle'
|
|
import WrappedBundle from '../features/ui/util/bundle'
|
|
import {
|
|
StatusPromotionPanel
|
|
} from '../features/ui/util/async_components'
|
|
|
|
export default class SidebarPanelGroup extends PureComponent {
|
|
|
|
static propTypes = {
|
|
layout: PropTypes.array.isRequired,
|
|
page: PropTypes.string.isRequired,
|
|
promotion: PropTypes.object,
|
|
}
|
|
|
|
render() {
|
|
const { layout, page } = this.props
|
|
|
|
if (Array.isArray(promotions) && Array.isArray(layout) && !!me) {
|
|
const sidebarPromotionPageId = `${page}.sidebar`
|
|
const promotion = promotions.find(p => p.timeline_id === sidebarPromotionPageId)
|
|
|
|
if (!!promotion) {
|
|
const correctedPosition = promotion.position - 1 > layout.length ? layout.length - 1 : promotion.position
|
|
if (!layout.find(p => p.key === 'status-promotion-panel')) {
|
|
layout.splice(correctedPosition, 0, <WrappedBundle component={StatusPromotionPanel} componentParams={{ statusId: promotion.status_id }} />)
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Fragment>
|
|
{
|
|
layout.map((panel) => {
|
|
if (typeof panel !== 'function') {
|
|
return panel
|
|
}
|
|
|
|
return (
|
|
<Bundle
|
|
fetchComponent={panel}
|
|
loading={this.renderLoading}
|
|
error={this.renderError}
|
|
renderDelay={150}
|
|
>
|
|
{
|
|
(Component) => <Component />
|
|
}
|
|
</Bundle>
|
|
)
|
|
})
|
|
}
|
|
</Fragment>
|
|
)
|
|
}
|
|
|
|
} |