Skip to content

Instantly share code, notes, and snippets.

View jwjames's full-sized avatar

Jeff James jwjames

  • Dana Point, CA
View GitHub Profile
import React, { Component } from 'react';
import { Text, View, TextInput, Button, StyleSheet, Platform } from 'react-native';
import uuid from 'uuid';
import { CheckBox } from 'react-native-elements';
import Item from './Item';
import ItemInput from './ItemInput';
export default class TodoListContainer extends Component {
constructor(props) {
super(props);
@jwjames
jwjames / StreamCreate.js
Created March 11, 2019 10:21
StreamCreate component. Renders twice.
import React from 'react';
import { Field, reduxForm } from 'redux-form';
class StreamCreate extends React.Component {
renderError({ error, touched }) {
if (touched && error) {
return (
<div className="ui error message">
<div className="header">{error}</div>
</div>
@jwjames
jwjames / Flatten.js
Last active December 28, 2018 05:36
Citrusbyte Array Flattener
/**
* A function that flattens an array that contains and infinite amount of nested arrays.
* It uses iteration over recursion because the maximum call stack size is variant,
* based on factors external from JavaScript such as which browser the code is run within.
* This will be a problem for massive arrays, probably not relevant to this code challenge,
* but I thought it was an interesting consideration.
*
* The tests can be run here: https://repl.it/@jeffcodes/Nested-Array-Flattening
*
* @param {Array} input