Code Monkey home page Code Monkey logo

rrf's Introduction

Travis Coveralls CodeClimate David NPM

rrf

Refs in React, but easy. A dependency-less, replacement for string refs in react.js. Motivated by all sorts of copy paste refName in our react classes. You need the refs to do beautiful animations with GSAP, so might as well make it painless.

yarn add rrf

Usage

API

Create a ref by calling ref with a reference to this, and the name you want the ref to use. If the name ends with an 's' a plural reference will be created. A plural reference allows you to easily create an array of refs to similar objects.

  ref(this, 'name')

Examples

Exmaple of a singular ref

import React, { Component } from 'react'
import ref from 'rrf'

export default class TheBest extends Component {
  componentDidMount() {
    console.log(this.refs.div) // div
  }
  render() {
    return <div ref={ref(this, 'div')} />
  }
}

Exmaple of a plural ref

import React, { Component } from 'react'
import ref from 'rrf'

export default class TheBest extends Component {
  componentDidMount() {
    console.log(this.refs.divs) // [div, div, div, div]
  }

  render() {
    return (
      <div>
        <div ref={ref(this, 'divs')} />
        <div ref={ref(this, 'divs')} />
        <div ref={ref(this, 'divs')} />
        <div ref={ref(this, 'divs')} />
      </div>
    )
  }
}

Example of passing a ref to a child

import React, { Component } from 'react'
import ref from 'rrf'

export default class TheBest extends Component {
  componentDidMount() {
    console.log(this.refs.div) // div
  }

  render() {
    return (
      <div>
        <Child reference={ref(this, 'div')} />
      </div>
    )
  }
}

function Child({ reference }) {
  return <div ref={reference} />
}

rrf's People

Contributors

benstepp avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.