I'm trying to change my state alignment to: left, center, right or justify, depending on which <Icon />
I've clicked. But, e.target.getAttribute('data-value')
is returning null
.
When I change <Icon icon="align-left" />
by left
, it's working. e.target.getAttribute('data-value')
is returning data-value.
So, how can I change my state to left, right center or justify on click of my <Icon />
?
class TextStyleParams extends React.Component {
constructor(props) {
super(props);
this.onClickAlignment = this.onClickAlignment.bind(this);
this.state = {
textStyle: {
alignment: 'left',
...,
},
};
}
onClickAlignment(e) {
const { textStyle } = this.state;
const newTextStyle = {
...textStyle,
alignment: e.target.getAttribute('data-value'),
};
this.setState({ textStyle: newTextStyle });
this.props.updateTextStyle(newTextStyle);
}
render() {
const { textStyle } = this.state;
return (
<div>
<span role="button" onClick={this.onClickAlignment} data-value="left"><Icon icon="align-left" /></span>
<span role="button" onClick={this.onClickAlignment} data-value="center"><Icon icon="align-center" /></span>
<span role="button" onClick={this.onClickAlignment} data-value="right"><Icon icon="align-right" /></span>
<span role="button" onClick={this.onClickAlignement} data-value="justify"><Icon icon="align-justify" /></span>
</div>
);
}
}
class Icon extends React.Component {
render() {
const { icon } = this.props;
return (
<svg viewBox="0 0 24 24" styleName="icon" className={`icon-${icon}`}>
<use xlinkHref={`iconset.svg#${icon}`} />
</svg>
);
}
}
I'm trying to change my state alignment to: left, center, right or justify, depending on which <Icon />
I've clicked. But, e.target.getAttribute('data-value')
is returning null
.
When I change <Icon icon="align-left" />
by left
, it's working. e.target.getAttribute('data-value')
is returning data-value.
So, how can I change my state to left, right center or justify on click of my <Icon />
?
class TextStyleParams extends React.Component {
constructor(props) {
super(props);
this.onClickAlignment = this.onClickAlignment.bind(this);
this.state = {
textStyle: {
alignment: 'left',
...,
},
};
}
onClickAlignment(e) {
const { textStyle } = this.state;
const newTextStyle = {
...textStyle,
alignment: e.target.getAttribute('data-value'),
};
this.setState({ textStyle: newTextStyle });
this.props.updateTextStyle(newTextStyle);
}
render() {
const { textStyle } = this.state;
return (
<div>
<span role="button" onClick={this.onClickAlignment} data-value="left"><Icon icon="align-left" /></span>
<span role="button" onClick={this.onClickAlignment} data-value="center"><Icon icon="align-center" /></span>
<span role="button" onClick={this.onClickAlignment} data-value="right"><Icon icon="align-right" /></span>
<span role="button" onClick={this.onClickAlignement} data-value="justify"><Icon icon="align-justify" /></span>
</div>
);
}
}
class Icon extends React.Component {
render() {
const { icon } = this.props;
return (
<svg viewBox="0 0 24 24" styleName="icon" className={`icon-${icon}`}>
<use xlinkHref={`iconset.svg#${icon}`} />
</svg>
);
}
}
Share
Improve this question
edited Aug 18, 2020 at 20:05
Erik Grosskurth
3,9325 gold badges32 silver badges45 bronze badges
asked Oct 3, 2017 at 11:24
PhilippePhilippe
1,0402 gold badges13 silver badges29 bronze badges
0
1 Answer
Reset to default 13Try using e.currentTarget.getAttribute('data-value')
. The target
property refers to the dom element on which the event originated (which will be the svg
element), whereas currentTarget
refers to the element to which the handler was attached.