Skip to content

Instantly share code, notes, and snippets.

@nextend
Created November 9, 2018 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nextend/01ba04bb9057b45aa3b7193d9c4d9061 to your computer and use it in GitHub Desktop.
Save nextend/01ba04bb9057b45aa3b7193d9c4d9061 to your computer and use it in GitHub Desktop.
Gutenberg block.js Smart Slider 3
(function (blocks, editor, i18n, element, components, _) {
var el = element.createElement;
blocks.registerBlockType('nextend/smartslider3', {
title: 'Smart Slider 3',
icon: 'welcome-learn-more',
category: 'common',
attributes: {
slider: {
type: 'string'
}
},
edit: function (props) {
var attributes = props.attributes;
return (
el('div', {
className: props.className + (attributes.slider ? '' : ' wp-block-nextend-smartslider3-no-slider'),
onClick: function () {
NextendSmartSliderSelectModalCallback(function (isOrAlias) {
return props.setAttributes({
slider: isOrAlias
});
});
}
},
attributes.slider ? el(element.RawHTML, null, window.gutenberg_smartslider3.template.replace(/\{\{\{slider\}\}\}/g, attributes.slider)) : null,
el('div', {
className: 'wp-block-nextend-smartslider3-overlay'
}, el(components.Button, null, 'Select Slider'))
)
);
},
save: function (props) {
var attributes = props.attributes;
return (
attributes.slider && el('div', {className: props.className + ' gutenberg-smartslider3'}, '[smartslider3 slider="' + attributes.slider + '"]')
);
}
});
})(
window.wp.blocks,
window.wp.editor,
window.wp.i18n,
window.wp.element,
window.wp.components,
window._
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment