Skip to content

Instantly share code, notes, and snippets.

View insin's full-sized avatar
⚠️
Cannot read property 'status' of undefined

Jonny Buchanan insin

⚠️
Cannot read property 'status' of undefined
View GitHub Profile
@insin
insin / README.md
Last active May 13, 2021 18:59
<RadioGroup/> for React Bootstrap - https://react-bootstrap-radio-group.surge.sh

To run the example:

npm install -g nwb
react run example.js --auto-install
import spawn from 'cross-spawn'
import ora from 'ora'
/**
* Get the latest version of a package from npm.
*/
export function getLatestVersion(pkg, cb) {
let spinner = ora(`Checking for latest version of ${pkg}`).start()
let npm = spawn('npm', ['dist-tag', 'ls', pkg, '--no-progress'], {stdio: ['ignore', 'pipe', 'inherit']})
let stdout = ''
@insin
insin / board.js
Last active May 30, 2023 19:49
Using CSS transition & transform to move a component: https://react-simple-transform.surge.sh
import React from 'react'
import {render} from 'react-dom'
let Board = React.createClass({
getInitialState() {
return {
x: 150,
y: 150,
}
},
@insin
insin / utils.js
Created November 10, 2016 08:42
Redux duck utils
// Matches the naming convention for functions which select from Redux state
const SELECTOR_NAME_RE = /^get[A-Z]/
/**
* Creates a function which creates same-named action dispatchers from an object
* whose function properties are action creators, passing along any arguments.
* Function properties whose names start with "get" will be ignored, as these
* are assumed to be selectors by convention.
* Also makes the dispatch function itself available.
* (If this was Java, it'd be a class named ActionDispatcherFactoryFactory).
@insin
insin / FormExample.js
Last active October 10, 2016 23:12
React Form Example / Live version: http://react-form-example.surge.sh/
import React from 'react'
import {
Alert,
Button,
Col, ControlLabel,
Form, FormControl, FormGroup,
HelpBlock,
} from 'react-bootstrap'
import {APPS, APPS_BY_RELEASE} from './metadata'
@insin
insin / columninput.pegjs
Last active May 30, 2023 19:51
PEG.js grammar for parsing input column ranges. Try it at http://pegjs.org/online
/**
* Accepts column ranges expressed using A-Z column names, or 1-based numbers.
*
* Returns a list of column numbers.
*
* e.g. A,B,D-F outputs [1,2,4,5,6]
*/
{
var baseCharCode = 'A'.charCodeAt(0) - 1 // 1-based
@insin
insin / README.md
Last active July 17, 2016 18:19
nwb Babel options for configuring babel-plugin-transform-runtime and polyfilling

nwb babel options for transform-runtime/polyfilling

nwb is getting a new boolean runtime option which triggers use of babel-plugin-transform-runtime

I think it also needs a polyfill option to control polyfilling, as babel-plugin-transform-runtime is also related to polyfilling (see below)

(polyfill could also be used to automatically include babel-polyfill for apps when configured to do so)

babel-plugin-transform-runtime

Clone and install:

git clone https://gist.github.com/45b7f66e01628601c0cc6b79767b0e4f.git so-38236634
cd so-38236634
npm install

Start a hot reloading development server at http://localhost:3000:

@insin
insin / app.js
Last active May 30, 2023 19:51
React Router Test / nwb/React/surge setup - live version: http://tasty-flavor.surge.sh/ - nwb: https://github.com/insin/nwb
import React from 'react'
import {render} from 'react-dom'
import {browserHistory, IndexRoute, IndexLink, Link, Route, Router} from 'react-router'
let activeStyle = {fontWeight: 'bold'}
let App = ({children}) => <div>
<h1>App</h1>
<ul>
<li><IndexLink activeStyle={activeStyle} to="/">Home</IndexLink></li>
@insin
insin / app.js
Last active June 20, 2016 05:13
React/Webpack setup to tweak Prism fairyfloss theme
import './prism-fairyfloss.css'
import 'prismjs'
import React from 'react'
import {render} from 'react-dom'
let App = React.createClass({
componentDidMount() {
window.Prism.highlightAll()
},