This insures each component only can access the state from the module its part of.
- here's the intermediary data structure we generate in a single babel pass:
// implementation 1 | |
const load = (api) => async (req, next) => { | |
const { route, action } = req | |
const hasLoad = route && route.load | |
if (!hasLoad) return next() | |
const { components, reducers, chunks, ...res } = await route.load(req) || {} |
We're gonna start by looking at how code splitting works, and build our understanding of the task from there
CODE SPLIT EVERYTHING (NOT JUST COMPONENTS) -- AND DO IT BEFORE YOU NEED IT
The big hidden idea here is that with RUC it's challenging, not perfectly performant, and non-obvious how to code split non-component things like reducers, thunks, etc.
import express from 'express' | |
import routes from './routes'; | |
import { render, build } from 'react-universal-starter'; | |
const app = express(); | |
const handler = build(async (req, res, stats) => { | |
try { | |
const html = await render(routes, stats); |
import express from 'express' | |
import routes from './routes'; | |
import { render, build } from 'react-universal-starter'; | |
const app = express(); | |
const handler = build(async (req, res) => { | |
try { | |
const html = await render(routes); |
import express from 'express' | |
import routes from './routes'; | |
import { render, build } from 'react-universal-starter'; | |
const app = express(); | |
const handler = build(async (req, res, clientStats) => { | |
try { | |
const html = await render({ |
export default function connectAdvanced(selectorFactory, options) { | |
return function wrapWithConnect(WrappedComponent) { | |
class Connect extends Component { | |
static contextConsumers = [ReactReduxContext.Consumer] | |
static getDerivedStateFromProps(nextProps, [context], prevState) { | |
const { dispatch, state } = context | |
return this.selector(dispatch, state, nextProps, prevState) // returns `null` if no changes | |
} |
// ASSIGNMENT 2b: | |
// Make a page switcher called <Website /> . On 2 of the pages, put the <TemperatureInput /> from assignment 2a. | |
// Lift the shared state into this component. Unlike the example from reactjs.org docs, only one input will show at | |
// a time. You will learn how to create "pages", navigation (aka links) between pages, and how to "lift" state | |
// that is shared between all pages to the parent component they all have in common. | |
// | |
// This should be done in 2 parts: | |
// 1) make the page switcher work by changing the `page` state on click of the links | |
// 2) work on passing the `onTemperatureChange` + `temperature` + `scale` props to the `TemperatureInput` component; then glue it all together. |
TERMS: | |
- inheritance (super) | |
- imperative vs. declarative | |
- managed inputs vs unmanaged inputs (make sure when you google prepend "react"): | |
https://reactjs.org/docs/uncontrolled-components.html | |
- "pure functions" | |
https://hackernoon.com/react-stateless-functional-components-nine-wins-you-might-have-overlooked-997b0d933dbc | |
https://www.sitepoint.com/functional-programming-pure-functions/ |
import React, { Component } from 'react' | |
import './a1.css' | |
import PairParent from './bonus/PairParent' | |
class Assignment1 extends Component { | |
render() { | |
return ( | |
<div> | |
<section className="firstComponent"> |