volto-subsites
October 28, 2022 ยท View on GitHub
Volto addon to manage subsites.
Intended to be used with collective.volto.subsites.
To be used with mrs-developer, see Volto docs for further usage informations.
Created with voltocli.
Usage
If you're using Volto < 12, then use v1.1.0
If you're using Volto < 16, then use v3.0.4
Simply load the addon in your project.
Put
Get subsite data from the redux state in your components. For example:
import React from 'React';
import { connect } from 'react-redux';
import { SubsiteLoader } from 'volto-subsites';
const AppExtras = ({ pathname }) => {
return (
<>
<SubsiteLoader pathname={pathname} />
</>
);
};
export default connect(
(state, props) => ({
pathname: props.location?.pathname,
}),
{},
)(AppExtras);
class Header extends Component {
//...
render() {
return (
<>
//...
{this.props.subsite?.title}
</>
);
}
}
export default connect(state => ({
token: state.userSession.token,
subsite: state.content?.data?.['@components']?.subsite;
}))(Header);