Skip to content

Instantly share code, notes, and snippets.

@vegaasen
Last active April 8, 2021 07:57
Show Gist options
  • Save vegaasen/b688383d312974897dc208cf403654dd to your computer and use it in GitHub Desktop.
Save vegaasen/b688383d312974897dc208cf403654dd to your computer and use it in GitHub Desktop.
React ramblings for self

React cheatsheet

Testing

Enzyme testing useEffect()

const fancyAct = async (component, assertions) => {
  await act(async () => {
    await Promise.resolve(component);
    await new Promise(resolve => setImmediate(resolve));
    component.update();
    assertions(component)
  });
}
// Usage -v

  await fancyAct(
    mount(<SomeComponent onChange={onChange}/>),
    wrapper => {
      expect(wrapper.find('#someId').first()).toHaveLength(0)
    })

Misc

Remove image-tag on http/404 (not found)

# css
.display_default { display: initial }
.display_none { display: none }
# react component
const [brandingStyle, setBrandingStyle] = useState("display_none");
..
<img
  className={brandingStyle} 
  src={`https://where.ever/api/v1/something/logo/${whatever}`}
  onLoad={() => setBrandingStyle("display_default")}
  />
..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment