Skip to content

Instantly share code, notes, and snippets.

@royboy789
Created January 24, 2018 04:31
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 royboy789/61a03af9652b8c7f7ac3865666d8e515 to your computer and use it in GitHub Desktop.
Save royboy789/61a03af9652b8c7f7ac3865666d8e515 to your computer and use it in GitHub Desktop.
Gutenberg React state example
const { __ } = wp.i18n;
const { Component } = wp.element;
const el = wp.element.createElement;
export default class Select extends Component {
constructor( props ) {
super( ...props );
this.selectCallback = this.selectCallback.bind(this);
this.state = {
current_editing: 'The bold attribute has NOT been changed',
change_time: 0
}
}
selectCallback(event){
this.setState({change_time: this.state.change_time+=1 });
this.setState({current_editing: 'The bold attribute HAS been changed ' + this.state.change_time + ' times'});
this.props.changeHandler(event);
}
render() {
return el(
'div',
{},
[
el(
'div',
{},
this.state.current_editing,
),
el(
'select',
{
onChange: this.selectCallback,
id: this.props.id,
value: this.props.value
},
[
el(
'option',
{
value: 'true'
},
__( 'Bold On', 'text-domain' )
),
el(
'option',
{
value: 'false'
},
__( 'Bold Off', 'text-domain' )
)
]
)
]
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment