This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default (db) => { | |
return { | |
async findDisqualifiedPlayers(teamID) { | |
return db.collection('playerDisqualifications').find({ | |
teamID | |
}) | |
.toArray(); | |
}, | |
async checkInTeam(teamID) { | |
return db.collection('checkIns').insert({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default (db) => { | |
return { | |
async checkIn(teamID) { | |
const disqualifiedPlayers = await db.collection('playerDisqualifications').find({ | |
teamID | |
}) | |
.toArray(); | |
if (disqualifiedPlayers.length > 0) { | |
throw new Error('cannot check-in with disqualified players'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {createContext, useContext} from 'react'; | |
const LocaleContext = createContext(); | |
export const ProvideLocale = Locale.Provider; | |
export const useLocale = () => { | |
const locale = useContext(LocaleContext); | |
return locale; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// React.memo caches the functional component if all the props are triple equals === | |
const Increment = React.memo(({ caller, onClick }) => { | |
console.log(`${caller} button rendered`); | |
return <button onClick={onClick}>Increment</button>; | |
}); | |
const BadComponent = () => { | |
const [count, setCount] = useState(0); | |
// declared functions never triple equals ===, even if its the same code | |
// ie. (() => {}) === (() => {}) is false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BAD | |
const LocaleContext = React.createContext(); | |
const OverrideLocaleContext = React.createContext() | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <LocaleContext.Provider value={locale}> | |
<Navigation /> | |
</LocaleContext.Provider>; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BAD | |
export default ({ count }) => { | |
const Label = () => { | |
return <code>{count}</code>; | |
}; | |
return <Label />; | |
}; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BEFORE | |
const App = () => { | |
const [locale, setLocale] = useState('english'); | |
return <Navigation locale={locale} />; | |
}; | |
const Navigation = ({ locale }) => { | |
return <Link locale={locale} href="/about">About</Link>; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Good useMemo usage | |
const NormalComponent = ({ count }) => { | |
const costlyValue = useMemo(() => costlyFunction(count), [count]); | |
return <p>NormalComponent {costlyValue}</p>; | |
}; | |
export default ({ count }) => { | |
// Slow component | |
const SlowComponent = () => { | |
const costlyValue = costlyFunction(count); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const BrokenComponent = (props) => { | |
useEffect(() => { | |
console.log('BrokenComponent called useEffect'); | |
}, [props]); // THIS IS ALWAYS WRONG! | |
return <code>{JSON.stringify(props)}</code>; | |
}; | |
const GoodComponent = (props) => { | |
useEffect(() => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// BEFORE | |
const [costlyValue, setCostlyValue] = setState(); | |
useEffect(() => { | |
setCostlyValue(computedCostlyValue(props.someParam)); | |
}, [props.someParam]); | |
// AFTER | |
const costlyValue = useMemo(() => computedCostlyValue(props.someParam), [props.someParam]); |