Skip to content

Instantly share code, notes, and snippets.

View Pyrolistical's full-sized avatar

Pyrolistical

View GitHub Profile
@Pyrolistical
Pyrolistical / repository.js
Last active October 9, 2021 22:17
separate business layer from infrastructure layer after
export default (db) => {
return {
async findDisqualifiedPlayers(teamID) {
return db.collection('playerDisqualifications').find({
teamID
})
.toArray();
},
async checkInTeam(teamID) {
return db.collection('checkIns').insert({
@Pyrolistical
Pyrolistical / service.js
Last active October 9, 2021 20:56
separate business layer from infrastructure layer before service.js
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');
}
import {createContext, useContext} from 'react';
const LocaleContext = createContext();
export const ProvideLocale = Locale.Provider;
export const useLocale = () => {
const locale = useContext(LocaleContext);
return locale;
};
// 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,
// BAD
const LocaleContext = React.createContext();
const OverrideLocaleContext = React.createContext()
const App = () => {
const [locale, setLocale] = useState('english');
return <LocaleContext.Provider value={locale}>
<Navigation />
</LocaleContext.Provider>;
};
// BAD
export default ({ count }) => {
const Label = () => {
return <code>{count}</code>;
};
return <Label />;
};
// BEFORE
const App = () => {
const [locale, setLocale] = useState('english');
return <Navigation locale={locale} />;
};
const Navigation = ({ locale }) => {
return <Link locale={locale} href="/about">About</Link>;
};
// 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);
const BrokenComponent = (props) => {
useEffect(() => {
console.log('BrokenComponent called useEffect');
}, [props]); // THIS IS ALWAYS WRONG!
return <code>{JSON.stringify(props)}</code>;
};
const GoodComponent = (props) => {
useEffect(() => {
@Pyrolistical
Pyrolistical / useMemo instead.js
Created October 2, 2021 06:12
https://blog.battlefy.com/how-to-escape-react-hooks-hell-a66c0d142c9e Unnecessary useEffect and useState for computed value based on prop
// BEFORE
const [costlyValue, setCostlyValue] = setState();
useEffect(() => {
setCostlyValue(computedCostlyValue(props.someParam));
}, [props.someParam]);
// AFTER
const costlyValue = useMemo(() => computedCostlyValue(props.someParam), [props.someParam]);