You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.7 KiB
60 lines
1.7 KiB
11 years ago
|
---
|
||
|
id: expose-component-functions
|
||
|
title: Expose Component Functions
|
||
|
layout: tips
|
||
|
permalink: expose-component-functions.html
|
||
|
prev: communicate-between-components.html
|
||
|
---
|
||
|
|
||
|
There's another (uncommon) way of [communicating between components](/react/tips/communicate-between-components.html): simply expose a method on the child component for the parent to call.
|
||
|
|
||
|
Say a list of todos, which upon clicking get removed. If there's only one unfinished todo left, animate it:
|
||
|
|
||
|
```js
|
||
|
/** @jsx React.DOM */
|
||
|
|
||
|
var Todo = React.createClass({
|
||
|
render: function() {
|
||
|
return <div onClick={this.props.onClick}>{this.props.title}</div>;
|
||
|
},
|
||
|
|
||
|
//this component will be accessed by the parent through the `ref` attribute
|
||
|
animate: function() {
|
||
|
console.log('Pretend %s is animating', this.props.title);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var Todos = React.createClass({
|
||
|
getInitialState: function() {
|
||
|
return {items: ['Apple', 'Banana', 'Cranberry']};
|
||
|
},
|
||
|
|
||
|
handleClick: function(i) {
|
||
|
var items = this.state.items;
|
||
|
items.splice(i, 1);
|
||
|
this.setState({items: items}, function() {
|
||
|
if (items.length === 1) {
|
||
|
this.refs.item0.animate();
|
||
|
}
|
||
|
}.bind(this));
|
||
|
},
|
||
|
|
||
|
render: function() {
|
||
|
return (
|
||
|
<div>
|
||
|
{this.state.items.map(function(item, i) {
|
||
|
var boundClick = this.handleClick.bind(this, i);
|
||
|
return (
|
||
|
<Todo onClick={boundClick} key={i} title={item} ref={'item' + i} />
|
||
|
);
|
||
|
}, this)}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
React.renderComponent(<Todos />, mountNode);
|
||
|
```
|
||
|
|
||
|
Alternatively, you could have achieve this by passing the `todo` an `isLastUnfinishedItem` prop, let it check this prop in `componentDidUpdate`, then animate itself; however, this quickly gets messy if you pass around different props to control animations.
|