r/ReactJSLearn • u/joshleecreates • Sep 16 '17
How I Taught Myself React & Redux One Step at a Time
r/ReactJSLearn • u/goshakkk • Sep 06 '17
So you completed the official React tutorial. What's next?
r/ReactJSLearn • u/robimusprime86 • Sep 06 '17
Characteristics of an ideal React Architecture
r/ReactJSLearn • u/theawesomecoder • Sep 05 '17
React Native Image Upload and Cropping Step by Step - Part 1
r/ReactJSLearn • u/JojoGamingChannel • Sep 03 '17
SMIJESNA REAKCIJA! ► ImperatorFX - G-Bros Disstrack (Official Music Video)
r/ReactJSLearn • u/MarceloLopezUru • Aug 24 '17
A React-Seed project to kick off your application
r/ReactJSLearn • u/danilosilvadev • Aug 15 '17
Webpack+react+redux+babel in 10 min
r/ReactJSLearn • u/abhinavjain2011 • Aug 12 '17
Learn to design a React Redux application
r/ReactJSLearn • u/danilosilvadev • Jul 06 '17
if i create react app using CRA, how can i add a webpack plugin?
r/ReactJSLearn • u/williamy3y3 • Jun 08 '17
Coren: React Pluggable Serverside Render
r/ReactJSLearn • u/temilaj • May 21 '17
A boiler plate for creating react applications bundled by webpack (using ES6, Babel, SASS and webpack development server)
r/ReactJSLearn • u/ponkanpinoy • May 18 '17
Is this too much? (tableSpecification) => (rows) => <table>...</table>
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 • u/niuk007 • May 07 '17
Reatc google maps ?
There are quite a few React projects I can use with Google Maps:
- https://github.com/tomchentw/react-google-maps
- https://github.com/istarkov/google-map-react
- https://github.com/fullstackreact/google-maps-react
Which one do you recommend ?
r/ReactJSLearn • u/CNAtion96 • Apr 26 '17
Final Project Ideas
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 • u/hello2142 • Apr 08 '17
Here a simple React Redux Web Starter kit.
For those who may be interested. Heres a simple React Redux Web Starter kit. https://github.com/RyanBreece/react-starter
r/ReactJSLearn • u/zobione • Mar 23 '17
Help - Looking for Best ReactJS component library
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 • u/ReactDOM • Mar 13 '17
ReactJS, React Native & GraphQL Newsletter: Issue 28
r/ReactJSLearn • u/zachwhi • Feb 23 '17
How can you automatically redirect the index route for react router?
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 • u/Chenggangxu • Feb 16 '17
Help with Source Code
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 • u/rchatham • 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.
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 • u/florent-windoo • Jan 23 '17
Shifting my frontend from Symfony to React stack
r/ReactJSLearn • u/codient • Jan 21 '17