mirror of
https://github.com/maputnik/editor.git
synced 2026-02-06 12:40:00 +00:00
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import ScrollContainer from './ScrollContainer'
|
|
|
|
type AppLayoutProps = {
|
|
toolbar: React.ReactElement
|
|
layerList: React.ReactElement
|
|
layerEditor?: React.ReactElement
|
|
map: React.ReactElement
|
|
bottom?: React.ReactElement
|
|
modals?: React.ReactNode
|
|
};
|
|
|
|
class AppLayout extends React.Component<AppLayoutProps> {
|
|
static childContextTypes = {
|
|
reactIconBase: PropTypes.object
|
|
}
|
|
|
|
getChildContext() {
|
|
return {
|
|
reactIconBase: { size: 14 }
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return <div className="maputnik-layout">
|
|
{this.props.toolbar}
|
|
<div className="maputnik-layout-list">
|
|
{this.props.layerList}
|
|
</div>
|
|
<div className="maputnik-layout-drawer">
|
|
<ScrollContainer>
|
|
{this.props.layerEditor}
|
|
</ScrollContainer>
|
|
</div>
|
|
{this.props.map}
|
|
{this.props.bottom && <div className="maputnik-layout-bottom">
|
|
{this.props.bottom}
|
|
</div>
|
|
}
|
|
{this.props.modals}
|
|
</div>
|
|
}
|
|
}
|
|
|
|
export default AppLayout
|