I've found now I'm trying to replace
an expression and I don't care whats in it.
in this example I've found the this.state.showMenu && this.handleMouseDown
portion in
<a
onMouseDown={this.state.showMenu && this.handleMouseDown}
>
I need to convert to:
<a
onMouseDown={this.state.showMenu ? this.handleMouseDown : undefined}
>
how can I do so without explicitly reconstructing the tree? I just want to do something like
path.replaceText("this.state.showMenu ? this.handleMouseDown : undefined")
Here's a transformer that does what you describe:
See it in action here.
You can also just put arbitrary text in the
JSXExpressionContainer
node:See this example.
Finally, you don't even need to return a
JSXExpressionContainer
.See the result here.