@axelspringer/mango-pagemanager
v1.0.0-beta.121
Published
Mango Page Manager
Downloads
961
Maintainers
Keywords
Readme
:smiley_cat: Mango Page Manager
Getting Started
requires a
node
version >= 6 and annpm
version >= 3.x.x
we do provide a
help
command to display all possible arguments
# Install the base package and the plugin (could also be global -g)
npm i @axelspringer/mango-pagemanager
Usage
Create a pagemanager.ts
file with the following content.
import Vue from 'vue'
import IFrame from '../components/post'
import MangoPageManager from '@axelspringer/mango-pagemanager'
// use pagemanager
Vue.use(PageManager)
export default new PageManager({
blocks: [
{
pageBlock: 'inline_frame',
component: iFrame
}
]
})
This configures the Page Manager to map a page block to a component.
import { Vue, Component } from 'vue-property-decorator'
import HOME_QUERY from '../../graphql/home.graphql'
@Component
export default class Home extends Vue {
/**
*
*/
public blocks = []
/**
* Render function
*
* @param h
*/
public render() {
return (
<main class='start'>
<pagemanager-renderer blocks={this.blocks || []} />
</main>
)
}
}
The pagemanager exposes $pageblock
on the component with the page block data to render. You have to add a name
property. This is the property on which the Page Manager data and blocks are matched.
import { Vue, Component } from 'vue-property-decorator'
export function renderInnerHtml(h, atts) {
return atts.map(att => h('iframe', { attrs: att.value }))
}
@Component({
name: 'iFrame'
})
export default class iFrame extends Vue {
public render(h) {
if (!this.$pageblock) return null
return (<div>{renderInnerHtml(h, this.$pageblock)}</div>)
}
}