DEV Community

Debbie O'Brien
Debbie O'Brien

Posted on • Originally published at debbie.codes

Learning React

Recently I started learning React for my new job. I basically went from being a coding ninja to being a coding newbie. But hey everything can be learnt so here is what I have learnt so far.

Entering JavaScript Land

Use {}to enter JavaScript land. In Vue we use double these so I just need to remember that from now on it's ony one and if I see double {{}} it means JavaScript land followed by an object.

<h2 style={{ color: 'black' }}>hi</h2>
Enter fullscreen mode Exit fullscreen mode

This is easier to understand when there is more than one value in our object.

<h2 style={{ color: 'black', padding: '10px' }}>hi</h2>
Enter fullscreen mode Exit fullscreen mode

React components are just functions that return something. Normally some html.

export default function Button(){
  return <button>click me</button>
}
Enter fullscreen mode Exit fullscreen mode

Functions with Capital Letters

These functions need to be named with a capital letter. Which makes sense as then it is easy for the browser to distinguish between what is html and what is a React component.

<button> // html
<Button /> // React Component
Enter fullscreen mode Exit fullscreen mode

Using JSX

React components use JSX which basically means we can add dynamic stuff to our html. And of course you can pass props into the component

const name = 'Debbie'

export default function Name(name){
  return <h1> Hi {name}</h1>
}
Enter fullscreen mode Exit fullscreen mode

Return Statements

One thing to watch out for is the return statement. We can return things on one line but if we have more things to return and need more than one line then we must use brackets. And important to remember is that we cannot use a semicolon at the end of the line inside these brackets. If we do it will break.

export default function Hi(){
  return (
    <div>
      <h1>Hi</h1>
      <p>welcome to our world</p>
    </div>
  )
}
Enter fullscreen mode Exit fullscreen mode

A Single Root element

Just like in Vue 2 you can't render multiple items such as the example above without wrapping it in the <div>. However React gives you an element called a fragment so that you don't have to render a <div>. A fragment is just like empty syntax and won't get rendered.

export default function Hi(){
  return (
    <>
      <h1>Hi</h1>
      <p>welcome to our world</p>
    </>
  )
}
Enter fullscreen mode Exit fullscreen mode

CamelCase for JSX

With JSX we need to use camelCase and not kebab-case. That means we need to use backgroundColor instead of background-color. Class is also a reserved name in JavaScript so we can't use it meaning we can't say use class for our styling and have to use classNameinstead.

<h1 className="heading">hi</h1>
Enter fullscreen mode Exit fullscreen mode

Using Dynamic Values in JSX

In vue to add a dynamic value to an image we would bind the srcattribute by adding a colon before it :srcbut in React we don't bind the attribute but instead the value. We do this by removing the quotes and replacing them with curly brackets src={}. If you think about it, it actually makes sense as using curly brackets means we are entering JavaScript land.

const image = "https://placekitten.com/112"
<img src={image} className="kitten" />
Enter fullscreen mode Exit fullscreen mode

As we are entering JavaScript land by using curly brackets it also means we can concatenate things.

const imgUrl = "https://placekitten.com"
<img src={imgURL + '/102'} />
// OR
<img src={`${imgURL}/102`} />
Enter fullscreen mode Exit fullscreen mode

Printing out Lists

Unlike in Vue there is no v-forfor rendering lists. We need to do this just like we would do in any JavaScript function by using map() or filter().

const people = ['Debbie', 'Alex', 'Nat']

export default function List(){
  const peopleList = people.map(person => 
    <li key={person}>{person}</li>
  )

  return <ul>{peopleList}</ul>
}
Enter fullscreen mode Exit fullscreen mode

Filtering out Items. Say we wanted to filter out which people were working with which framework. We first need to filter over our array of people to get a new array of only those with 'React' in this case and then map over that new array of 'ReactPeople' to print out each person's name.

const people = [{
  name: 'Debbie',
  framework: 'React',
}, {
  name: 'Alex',
  framework: 'Vue',
}, {
  name: 'Nat',
  framework: 'React',
}];

const reactPeople = people.filter(person =>
  person.framework === 'React'
);

export default function List(){
  const peopleList = reactPeople.map(person => 
    <li key={person.name}>{person.name}</li>
  )

  return <ul>{peopleList}</ul>
}
Enter fullscreen mode Exit fullscreen mode

Remember when working with arrow functions there is no return however if you add {}then you must add a return statement. Using {}also allows you to return more than just one line of code.

Just like in Vue adding a keyto lists is important. The only difference is that instead of :key="name"in React it is key={name}. Make sure to keep your keys unique. If you don't set a key React will use the index but if the position changes due to reordering then you will run into some issues.

If you need to pass in anything to a Fragment such as a key value then you need to actually write <Fragment key={name}> instead of just using <>. You can also use a <div> if you prefer.

Exporting Components

There are 2 ways to export a component. Using named exports or default exports. With default export you can only have one function to export but with named exports you can have more than one. The thing to remember is how you export it affects how you import it. With named exports you must use the same name when importing it. With default exports you can use any name you like.

Named Exports

export function Button(){
  return <button>click me</button>
}
Enter fullscreen mode Exit fullscreen mode
import { Button } from './button'
Enter fullscreen mode Exit fullscreen mode

Default Exports

export default function Button(){
  return <button>click me</button>
}
Enter fullscreen mode Exit fullscreen mode
import Button from './button'
// or
import MyButton from './button'
Enter fullscreen mode Exit fullscreen mode

You can mix having a default export and a named export in the one file but in general this can get confusing so it is best to only stick to either 2 named exports or 2 files with default exports.

Working with Props

Props are used so parent components can pass information to child components. The props you can pass to html elements are predefined to conform with HTML standards, for example passing an src prop to an <img>element. But you can pass any props you like to your own components.

When passing in props remember that ({ color, height }) is just using destructuring:

function MyImage({ color, height }) {
  return //...
}
Enter fullscreen mode Exit fullscreen mode

By destructuring you don't have to do something like this:

function MyImage(props) {
  let color = props.color;
  let height = props.height;
  return //....
}
Enter fullscreen mode Exit fullscreen mode

You can specify a default property for a prop using destructuring by adding an =.

function MyImage({ color, height = 50 }) {
  return //...
}
Enter fullscreen mode Exit fullscreen mode

Passing lots of props can get very repetitive and this is where the spread operator comes in { ...props }

function Card({ color, height, width, isActive }) {
  return (
    div className="card">
      <Avatar
        color={color}
        height={height}
        width={width}
        isActive={isActive}
      />
    </div>
  );
}
Enter fullscreen mode Exit fullscreen mode

Here we just pass in all the props and then use the spread operator to spread them so that the Avatar component has access to all the props without having to write them out individually.

function Card(props) {
  return (
    <div className="card">
      <Avatar {...props} />
    </div>
  );
}
Enter fullscreen mode Exit fullscreen mode

React's Children

This is similar to what we call slots in Vue. We pass in the children prop to the function and then use it so that anything rendered inside the Card component will be rendered.

function Card({ children }) {
  return (
    <div className="card">
      {children}
    </div>
  );
}
Enter fullscreen mode Exit fullscreen mode

We can then easily use this component to render different components inside.
Cruises:

export default function Cruises() {
  return (
    <Card>
      <Cruises />
    </Card>
  );
}
Enter fullscreen mode Exit fullscreen mode

Flights:

export default function Cruises() {
  return (
    <Card>
      <Flights />
    </Card>
  );
}
Enter fullscreen mode Exit fullscreen mode

Conclusion

Understanding how React works is really helpful as well as being able to compare the differences to Vue. Overall React is really just JavaScript and Vue just adds some magic to make things much easier. The more you work with React the easier it gets. Still so much more to learn though. This is just the beginning.

Disclaimer: I am still only learning so if you see anything wrong here then just let me know :)

Courses I am taking to enhance my React Journey:

Top comments (8)

Collapse
 
urielbitton profile image
Uriel Bitton

Btw in newer versions of react, using class instead of className will not throw an error and will work just the same, although it is not recommended and will throw a warning in the console. Maybe in a future version we'll be able to use it legally!

Collapse
 
debs_obrien profile image
Debbie O'Brien

good to know. yeah it would be cool to just use it as keeps things simpler

Collapse
 
dantederuwe profile image
Dante De Ruwe

Interesting article! With you coming from a Vue background: what do you prefer?

Collapse
 
debs_obrien profile image
Debbie O'Brien

at the moment I prefer Vue because I can build complete applications and with React I am not there yet. When I have fully learnt it who knows. It's kinda like skiing and snowboarding. I like both, they are very different but achieve the same thing however I am a much better skier so I prefer skiing simply because I can do more. If I had the time maybe I would learn to board better and then perhaps prefer boarding or just like both the same, who knows!!

Collapse
 
tomhermans profile image
tom hermans

this is a great overview Debbie. Thanks !

Collapse
 
tanzimibthesam profile image
Tanzim Ibthesam

Great but you writing a blog for React seems a bit sad haha

Collapse
 
debs_obrien profile image
Debbie O'Brien

well always good to learn a bit of everything, you never know when you might need it

Collapse
 
tanzimibthesam profile image
Tanzim Ibthesam

Yup was just pulling your leg 😄 anyways I am more interested in Svelte though.TC