+ - 0:00:00
Notes for current slide
Notes for next slide

React Hooks

React Hooks

Oliver Sturm • @olivers[@fosstodon.org] • oliver@oliversturm.com

1 / 11

React Hooks

Oliver Sturm

  • Training Director at DevExpress
  • Consultant, trainer, author, software architect and developer for 30 years

  • Contact: oliver@oliversturm.com

2 / 11

React Hooks

Agenda

  • Hooks vs HOCs - what's the point?
    • (Note the amazing wordplay in the previous bullet)
  • Standard hooks
  • Custom hooks
  • Hooks in 3rd party libraries
3 / 11

React Hooks

What's the point of React Hooks?

  • React has a functional structure with a side-effect free rendering mechanism
  • Preference for functional component implementation
    • Class-based components still remain available!
  • HOCs always supported for modularization
  • Complex class and HOC structures end up with deep nesting
  • Hooks: functional state management based on closures
  • Popular by now in other JS-based environments
4 / 11

React Hooks

The Hook Rules

const MyComponent = () => {
// Only use hook calls at the top level (that's rule 1)
// of React functions (that's rule 2).
// Note that "React functions" include custom hooks.
const [val, setVal] = useState();
return <div>Val is {val}</div>;
};
5 / 11

React Hooks

Demo

Classes, HOCs, and Hooks

Custom Hooks

6 / 11

React Hooks

Standard Hooks

  • useState - simple state management
  • useEffect - run imperative code when deps change
  • useContext - access React context
  • useReducer - advanced state management
  • useMemo - memoize a value and recalculate when deps change
  • useCallback - memoization helper for functions, simplify syntax just a little over useMemo
  • useRef - "local variable", often used with refs
  • useImperativeHandle - special support for forward refs
  • useLayoutEffect - special variant of useEffect for synchronous effects
  • useDebugValue - add debug label to custom hook
7 / 11

React Hooks

Hooks in 3rd party libraries

  • 3rd party libraries started adopting hooks quickly
  • Most current libraries now offer hooks as an alternative to their old APIs
  • Examples coming up: Material UI and Redux
8 / 11

React Hooks

Demo

Standard and 3rd Party Hooks

9 / 11

React Hooks

Sources

10 / 11

React Hooks

Thank You

Please feel free to contact me about the content anytime.

Oliver Sturm • @olivers[@fosstodon.org] • oliver@oliversturm.com

11 / 11

React Hooks

Oliver Sturm

  • Training Director at DevExpress
  • Consultant, trainer, author, software architect and developer for 30 years

  • Contact: oliver@oliversturm.com

2 / 11
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow