React Components
We saw a bit of how react works, and how babel works with react.
Now we will see one of the main concepts of React, the Component.
In the last example we saw that we can use react to render things just like we did in express and rails- where the HTML template is a kind of code mad-lib- You fill in the data where it needs to go in the page.
React does this at the base level, but we can also sub-divide each part of a page into Component
s.
These are the sepearate logical pieces of any page.
Properties of Components
- separation of concerns
- nested / pass data down from parent
- F focused
- I independant
- R resuable
- S small
- T testable
Writing a component
class List extends React.Component {
render() {
return (
<ul>
<li>Hello world</li>
</ul>
);
}
}
List
is a js "class" that inherits from React- a component has certain methods like
render
that allow you to control it
Component Properties
In react, a component takes data in and renders itself based on that data.
The data is passed from above in the parent component.
Let's start rendering a real list from data coming from outside the list itself.
class List extends React.Component {
render() {
let itemsElements = this.props.items.map(item => {
return <li>{item}</li>
});
return (
<ul>
{itemsElements}
</ul>
);
}
}
Specify the property like this:
const listOfItems = [
"apples",
"bananas",
"pineapple"
];
<List items={listOfItems} />,
Props
Props are the react way of passing data into your component.
When you specify your component you specify it's props
just like an HTML attribute.
<List items={listOfItems} />
You can then access them from within the component using this.props
Nesting Components
We mentioned that it's the nested structure of components using components that really makes react special.
Let's put our <li>
tag data in it's own component.
class ListItem extends React.Component {
render() {
return (
<li>{this.props.item}</li>
);
}
}
class List extends React.Component {
render() {
let itemsElements = this.props.items.map( (item, index) => {
return <ListItem item={item}></ListItem>;
});
return (
<ul>
{itemsElements}
</ul>
);
}
}
Use it:
const listOfItems = [
"apples",
"bananas",
"pineapple"
];
<List items={listOfItems} />,
Exercise
Run the above code:
For a file you currently have, put in the components above and render them. Pass in props.
Further
Have the list item class render 2 components: ItemId
which will use the map index
(from the above example) as the id, and Item
which will render the text of the item. Pass data into these two components as props.
Further
var fruits = [
{
name:"apple",
weight:23,
colors : [
"red","green","yellow"
]
},
{
name:"mango",
weight:13,
colors : [
"green","yellow"
]
},
{
name:"avocado",
weight:3,
colors : [
"green","brown"
]
}
];
Create react code that renders this array of objects.
Use at least 2 separate components.