Created
January 17, 2018 00:38
-
-
Save royboy789/dfd470c9ffc5d4391f90348033d6bd64 to your computer and use it in GitHub Desktop.
This is a Gutenberg Block built with Vue.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( function( wp ) { | |
var el = wp.element.createElement; | |
var __ = wp.i18n.__; | |
wp.blocks.registerBlockType( 'learn-gutenberg/ex2-vue', { | |
title: __( 'Learn Gutenberg Example 2: VueJS', 'learn-gutenberg' ), | |
category: 'widgets', | |
supportHTML: false, | |
attributes: { | |
who: { | |
selector: 'p', | |
attribute: 'who', | |
}, | |
}, | |
edit: function( props ) { | |
var attributes = props.attributes, | |
setAttributes= props.setAttributes, | |
className = props.className, | |
focus = props.focus, | |
id = props.id; | |
//Define id to mount VueJs app into | |
var vueAppIdAttr = 'vuetest-' + id; | |
//Set default for who we're saying who to. | |
if( ! attributes.hasOwnProperty( 'who' ) ){ | |
attributes.who = 'Roy' | |
} | |
//Create copy of attributes to create intial state of Vue app with | |
var vueInitialState = {}; | |
Object.keys( attributes ).forEach( function (key) { | |
vueInitialState[key] = attributes[key]; | |
}); | |
//create Vue app | |
var APP = new Vue({ | |
//mount on element we're about to create with el() | |
el: '#' + vueAppIdAttr, | |
data: function () { | |
return vueInitialState | |
}, | |
//Use watchers to update React | |
watch: { | |
who: function (newValue) { | |
setAttributes({ who:newValue}); | |
} | |
}, | |
//template for Vue app | |
template: '<div><p>who: {{who}}</p><input v-model="who" /></div>', | |
}); | |
//return using WordPress createElement | |
return el( | |
'div', | |
{ className: className }, | |
[ | |
el( | |
'p', | |
{ | |
className:className, | |
who: attributes.who | |
}, | |
el( | |
'div', | |
{ | |
id: vueAppIdAttr | |
}, | |
), | |
), | |
] | |
); | |
}, | |
save: function(attributes,className) { | |
el( | |
'p', | |
{ | |
className:className, | |
who: attributes.who | |
} | |
); | |
} | |
} ); | |
} )( | |
window.wp | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @maximejobin