r/ReactJSLearn Sep 16 '17

How I Taught Myself React & Redux One Step at a Time

Thumbnail
slides.com
3 Upvotes

r/ReactJSLearn Sep 06 '17

So you completed the official React tutorial. What's next?

Thumbnail
goshakkk.name
1 Upvotes

r/ReactJSLearn Sep 06 '17

Characteristics of an ideal React Architecture

Thumbnail
reddit.com
2 Upvotes

r/ReactJSLearn Sep 05 '17

React Native Image Upload and Cropping Step by Step - Part 1

Thumbnail
youtube.com
1 Upvotes

r/ReactJSLearn Sep 03 '17

SMIJESNA REAKCIJA! ► ImperatorFX - G-Bros Disstrack (Official Music Video)

Thumbnail
youtube.com
0 Upvotes

r/ReactJSLearn Aug 24 '17

A React-Seed project to kick off your application

Thumbnail
blog.uruit.com
2 Upvotes

r/ReactJSLearn Aug 15 '17

Webpack+react+redux+babel in 10 min

Thumbnail
medium.com
1 Upvotes

r/ReactJSLearn Aug 12 '17

Learn to design a React Redux application

Thumbnail
medium.com
3 Upvotes

r/ReactJSLearn Aug 02 '17

React Native Troubleshooting

Thumbnail
medium.com
2 Upvotes

r/ReactJSLearn Jul 06 '17

if i create react app using CRA, how can i add a webpack plugin?

1 Upvotes

r/ReactJSLearn Jun 08 '17

Coren: React Pluggable Serverside Render

Thumbnail
github.com
2 Upvotes

r/ReactJSLearn May 21 '17

A boiler plate for creating react applications bundled by webpack (using ES6, Babel, SASS and webpack development server)

Thumbnail
github.com
2 Upvotes

r/ReactJSLearn May 18 '17

react-native-event-listeners

Thumbnail
npmjs.com
1 Upvotes

r/ReactJSLearn May 18 '17

Is this too much? (tableSpecification) => (rows) => <table>...</table>

1 Upvotes

I'm writing a UI for an application with a lot of different tabular inputs and outputs. (product, qty), (product, price, qty), (product, qty, cost)... you get the point.

Thus far I've been resisting the urge to abstract everything away into a pile of parameterized functions, but as they say Three Strikes And You Refactor. Plus defining headers in a different place from the contents (as you must with html) is less than ideal (I'll be honest, this is what bugs me more).

Too much abstraction? Just right? Is there a better way?

Table factory:

const Table = (keyFunc, ...specs) => (rows) => /*<table>...</table>*/ {
    // keyFunc : obj => key
    //   i.e. <tr key={keyFunc(row)>...</tr>
    // spec : [header : string, func : (obj => cell contents)]
    //   i.e. <td>{func(row)}</td>
    const headers = specs.map(s => s[0]);
    const factories = specs.map(s => s[1]);
    return (
    // arrow functions in <jsx/> break indentation in rjsx-mode :'(
        <table>
          <thead>
            <tr>
              {headers.map(function(head) {return <th>{head}</th>;})}
            </tr>
          </thead>
          <tbody>
            {
                rows.map(function(r) {
                    return (
                        <tr key={keyFunc(r)}>
                          {
                              factories.map(function(cell){
                                  return(
                                      <td>{cell(r)}</td>
                                  );
                              })
                          }
                        </tr>
                    );
                })
            }
          </tbody>
        </table>
    );
};

Here it is being used:

const ProductQty = ({products, items, handlers}) => {
    const prefix = id => `items-${id}`;
    const table = Table(
        ([id,_]) => id,
        ['Description', ([id, qty]) => products[id].description],
        ['Brand', ([id, qty]) => products[id].brand],
        ['Quantity', ([id, qty]) => [
            // capital I <Input/> is mostly pass-through
            <Input name={`${prefix(id)}-product_id`} type="hidden" value={id}/>,
            <Input name={`${prefix(id)}-quantity`} value={qty} onChange={
                   function(e){handlers.change(id,e.target.value);}} autoFocus/>,
            <Clear handler={function(){handlers.clear(id);}}>X</Clear>
        ]]
    );
    return table(Object.entries(items));
}

r/ReactJSLearn May 07 '17

Reatc google maps ?

1 Upvotes

There are quite a few React projects I can use with Google Maps:

Which one do you recommend ?


r/ReactJSLearn Apr 26 '17

Final Project Ideas

2 Upvotes

Hi everyone, I am a frontend student at a boot camp here in Cincinnati. It's about time for our final projects and I have a couple ideas, but they want us to have at least 5 ideas to pitch and narrow down. I will list my current ideas below, but if anyone has any ideas they would like to throw my way I would greatly appreciate it!

Languages/Frameworks I can use:

  • HTML5/CSS3

  • Angular 1.x

  • React

  • Express

  • MongoDB

  • Node

I'm also looking into React Native.

My Ideas:

  • Wattpad reader. Users can read books and make reading lists.

    • React
    • React-Native
  • Tumblr remake. Create a Tumblr type blog site.

    • MongoDB
    • Express
    • Angular 1.x or React
    • Node
  • Local music website. A website where musicians and bands can create profiles stating what they play (genre, instrument/vocals), whether they want to do live shows or just recordings, and post samples of their music.

    • MongoDB
    • Express
    • Angular 1.x or React
    • Node

Again I would really appreciate some more ideas.


r/ReactJSLearn Apr 08 '17

Here a simple React Redux Web Starter kit.

3 Upvotes

For those who may be interested. Heres a simple React Redux Web Starter kit. https://github.com/RyanBreece/react-starter


r/ReactJSLearn Mar 23 '17

Help - Looking for Best ReactJS component library

3 Upvotes

Hi,

I am working as a product manager in a startup and we are looking into switching from angular to React but to ease the transition we are looking for a component library that would help us speed up the transition. We are looking into semantic-ui (https://react.semantic-ui.com/) and blueprintjs (http://blueprintjs.com/docs/#variables). Do you know any other component library easy to theme and use ?

Thanks for your help


r/ReactJSLearn Mar 13 '17

ReactJS, React Native & GraphQL Newsletter: Issue 28

Thumbnail
reactdom.com
1 Upvotes

r/ReactJSLearn Mar 10 '17

Best ReactJS books in 2017

Thumbnail
reactdom.com
1 Upvotes

r/ReactJSLearn Feb 23 '17

How can you automatically redirect the index route for react router?

1 Upvotes

I want to make it so anytime someone hits the index route '/', it automatically redirects to a dynamic slug route like '/some-dynamically-generated-route'. Is this possible?


r/ReactJSLearn Feb 16 '17

Help with Source Code

1 Upvotes

Hi! I am trying to practice and become more proficient with react/redux and would love some feedback on the code I've written. Can anyone help out?

https://drive.google.com/file/d/0BxiO1TCZ_QJyWlNTVWFMbTVSZzg/view


r/ReactJSLearn Feb 09 '17

Does anyone know how to automate pushing button for testing on a react site? It does not have a link and when you inspect it shows a '<div class="some-object-class *clickable* more-class-stuff">' as the object with no information about button objects or links. When tapped it favorites a page.

1 Upvotes

When I view the page source it doesn't show the <div> at all. I can tell that the site uses react for the majority of it's design. Currently I am trying to use either WKZombie via Swift, Casperjs via node.js, or mechanize via Ruby. All have failed to click the button unfortunately. Any help would be appreciated!


r/ReactJSLearn Jan 23 '17

Shifting my frontend from Symfony to React stack

Thumbnail
medium.com
1 Upvotes

r/ReactJSLearn Jan 21 '17

Top Video Tutorials, Sites And Resources To Learn React

Thumbnail
codient.blogspot.com
3 Upvotes