Skip to content

Instantly share code, notes, and snippets.

View iammerrick's full-sized avatar

Merrick Christensen iammerrick

View GitHub Profile

CSS Component

.MyComponent {
  @component children;
  background-color: #000;
  
  .icon {
    background: #FF0000;
    @component icon;
 }

CSS Component

.MyComponent {
  component: children;
  background-color: #000;
  
  .icon {
    background: #FF0000;
    component: icon;
 }
@iammerrick
iammerrick / README.md
Last active June 5, 2016 03:36
Search for every CSS Selector.

This is a very slow, very ghetto proof of concept. If you author your CSS using BEM you can make certain assumptions about the use of your classes and their application which allows you to confidentally delete CSS. This little script simply searches your code bases for all CSS classes and if a CSS class isn't use will inform you.

Run node unused-classnames.js in the root of your project. It will grab all your css files, parse for css classes, remove phseudo selectors and search your code for uses using Ag.

Running this in my project I get the following output:

Unused selector .icon-clock
Unused selector .icon-chevron-up
Unused selector .icon-chevron-down
Unused selector .icon-link
@iammerrick
iammerrick / Consumer.js
Created May 25, 2016 17:06
A React component that computes the ratio based on the width or height of a given container.
import { FluidRatio } from './FluidRatio';
<FluidRatio>
{(width, height) => (
<div style={{ width, height }}>This will be a ratio of 3/4 with a width of whatever container it is rendered into.</div>
)}
</FluidRatio>
@iammerrick
iammerrick / children-as-function.js
Created May 24, 2016 23:41
Which API do you prefer? Passing a function into the Ratio component or making a higher order component called Ratio you can use to configure a component.
<Ratio width={Ratio.OPTIONS.FLUID} x={3} y={4}>
{(width, height) => (
<Chart id={this.props.id} width={width} height={height} />
)}
</Ratio>
class SharedComponent extends React.Component {
render() {
return <div>Shared Component</div>;
}
}
const Compositor = (Component) => (
class extends React.Component {
constructor() {
class Lock extends React.Component {
componentDidMount() {
this.props.load();
}
render() {
if (this.props.isLocked) return this.props.lockedView;
return React.Children.only(this.props.children);
}
}
@iammerrick
iammerrick / ConnectNavigation.js
Last active May 30, 2023 20:06
A higher order "smart" component that encapsulates all the logic for fetching and storing state. Especially smart because it accepts any "dumb" component, dumb components can be dropped on a page without knowing about their smart parents.
import React from 'react';
import { connect } from 'react-redux';
import { selectNavigation, selectState } from 'state/home/navigation/navigationSelectors';
import { getNavigation } from 'state/home/navigation/navigationActions';
const ConnectHomeNavigation = (Component) => {
return connect((state) => ({
navigation: selectNavigation(state),
state: selectState(state)
}), {
export const load = (id) => {
load.buffer = load.buffer || [];
load.buffer.push(id);
return (dispatch, getState) => {
if (load.flush) clearTimeout(load.flush);
load.flush = setTimeout(() => {
}, 0);
};
build:
image: node:5
commands:
- npm install
- BASE_URL=http://localhost npm test
compose:
redirect:
image: nginx
ports:
- "80:80"