Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
ReactJS: From upside down to right side up!
Pedro Nauck
November 26, 2016
Technology
18
2.3k
ReactJS: From upside down to right side up!
My talk about how to build a right side up environment in the frontend using the React ecosystem.
Pedro Nauck
November 26, 2016
Tweet
Share
More Decks by Pedro Nauck
See All by Pedro Nauck
ReactConf 2018: Presenting Docz
pedronauck
1
430
Docz Partnership Program
pedronauck
0
92
Docz - It has never been so easy to document your things!
pedronauck
1
230
Flux: A simple architecture model to build Client-side apps!
pedronauck
56
4.3k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
655
120k
ES6: Using the new Javascript Today
pedronauck
120
28k
Other Decks in Technology
See All in Technology
成長を続ける組織でのSRE戦略:プレモーテムによる信頼性の認識共有 SRE Next 2022
niwatakeru
7
2.6k
OSINT/GEOINT ワークショップ 20220514 古橋資料
furuhashilab
2
310
Learning from AWS Customer Security Incidents [2022]
ramimac
0
1.1k
New Features in C# 10/11
chack411
0
950
インフラエンジニアBooks 30分でわかる「Dockerコンテナ開発・環境構築の基本」
cyberblack28
11
7k
プロダクション環境の信頼性を損ねず観測する技術
egmc
4
570
長年運用されてきたモノリシックアプリケーションをコンテナ化しようとするとどんな問題に遭遇するか? / SRE NEXT 2022
nulabinc
PRO
15
7.6k
読者のことを考えて書いてみよう / Write with your reader in mind
line_developers
PRO
3
360
SRENEXT2022 組織にSREを実装していくまでの道のり
marnie0301
1
480
Scrum Fest Niigata 2022 開発エンジニアに聞いてみよう!
moritamasami
1
250
ITエンジニアを取り巻く環境とキャリアパス / A career path for Japanese IT engineers
takatama
0
590
⚡Lightdashを試してみた
k_data_analyst
0
210
Featured
See All Featured
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
29
4.3k
Git: the NoSQL Database
bkeepers
PRO
415
59k
Code Reviewing Like a Champion
maltzj
506
37k
GraphQLの誤解/rethinking-graphql
sonatard
24
6.2k
How New CSS Is Changing Everything About Graphic Design on the Web
jensimmons
212
11k
Robots, Beer and Maslow
schacon
152
7.1k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
212
20k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
3
440
Ruby is Unlike a Banana
tanoku
91
9.2k
Side Projects
sachag
449
37k
How to name files
jennybc
39
58k
Navigating Team Friction
lara
175
11k
Transcript
None
@pedronauck FRONTEND DEVELOPER
None
None
None
we technology new technologies
modularity performance adaptability maintainability consistency work fluid }We want
but startups...
pray to work
products upside down monsters
how build to right side up enva
backend inspiration
None
our environment front-end
checkout admin landing page react projects @reusable-modules monorepo
MODULAR STRUCTURE shazam basecss components frontend project domain reicons
monorepo Unified source code repository used by an organisation to
host as much of its code as possible.
who’s using
✓ single lint, build, test and release process ✓ easy
to coordinate changes across modules ✓ single place to report issues ✓ code review are easier ✓ less management, everything is centralized ✓ dependency management ✓ cheaper pros
✓ codebase looks more intimidating ✓ repo is bigger in
size ✓ . . . cons
None
None
None
None
None
None
None
packages/project/package.json Symbolic Link
None
components Our awesome and reusable React components
None
None
✓ focus on your components ✓ based on stories ✓
internal hot reload ✓ less configurations ✓ easy to maintain advantages
None
None
None
None
Gold tip #1 use to update data inside stories recompose
A React utility belt for function components and higher-order components.
recompose
None
None
None
None
None
None
domain data layer of our projects
AP I user partner appointments …
None
Predictable state container based on Flux One store. Single Source
of Truth! State is Read-only (modified by action) Changes are made with Pure Functions
None
#1 use a duck-based architecture
☹
None
None
None
#2 use redux-actions to handle your ducks
None
None
None
None
None
None
None
None
None
None
#3 normalize your entities
Normalizr takes JSON and a schema and replaces nested entities
with their IDs, gathering all entities in dictionaries.
turn this...
None
into
None
None
None
None
✓ work with objects, less array iterations ✓ most expressive
structure advantages
#4 use one single reducer for your entities
None
None
None
#5 use redux-ui to manage ui state
None
<App> <Topbar>
None
<App> <Topbar> <Sidebar>
None
None
None
None
None
None
None
None
None
<App> ui('App') <Sidebar> ui() <Topbar> ui() {context} {context} updateUI() ui.isSidebarOpened
{context}
modular structure module based architecture for scalable apps
None
None
App.js
None
modules/User/index.js
None
None
None
Application Setup react-router, redux, etc
shazam Node module to create and manage react apps
alternatives facebookincubator/create-react-app insin/nwb
and tricks webpack tips
#1 split your config by environment using webpack-config
None
webpack.config.js
webpack/${environment}.js
shazam.config.js
webpack/common.js
#2 use alias to relative paths
webpack/common.js
None
None
#3 use [chunkhash:8] in production bundles
webpack/development.js webpack/production.js
webpack/development.js webpack/production.js
reicons CLI tool to generate React icon components based on
svg files
manage is boring icons
None
✓ different icons of different sets ✓ components to manage
svg ✓ bundle just our icons ✓ easy to update the set ✓ build differente sets we needed
we DON' T needed
None
None
None
http://github.com/drvem/reicons
$ npm i -g reicons
$ reicons -p [<package:prefix>] -s images/ -b components/Icons Set directory
and a custom prefix The source of your icons sets Folder to bundle your icons components
. └── images ├── font-awesome │ ├── book.svg │ ├──
credit-card.svg │ └── github-logo.svg └── icons ├── home.svg ├── location.svg └── search.svg
$ reicons -p font-awesome:fa icons:ic -s images/ -b components/Icons
None
. ├── components │ └── Icons │ ├── Fa │
└── Ic └── images ├── font-awesome └── icons
. └── components └── Icons ├── Fa │ ├── Book.js
│ ├── CreditCard.js │ └── GithubLogo.js ├── Ic │ ├── Home.js │ ├── Location.js │ └── Search.js └── index.js
Fa/Book.js
index.js
None
✓ something simple to implement ✓ using across projects ✓
easy to onboarding we needed
checkout admin landing page react projects @reusable-modules monorepo
modularity performance adaptability maintainability consistency work fluid }We want
None
None