Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ReactJS: From upside down to right side up!
Search
Pedro Nauck
November 26, 2016
Technology
18
2.6k
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
2
790
Docz Partnership Program
pedronauck
1
250
Docz - It has never been so easy to document your things!
pedronauck
2
420
Flux: A simple architecture model to build Client-side apps!
pedronauck
55
4.8k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
ES6: Using the new Javascript Today
pedronauck
119
29k
Other Decks in Technology
See All in Technology
新機能VPCリソースエンドポイント機能検証から得られた考察
duelist2020jp
0
220
なぜCodeceptJSを選んだか
goataka
0
160
5分でわかるDuckDB
chanyou0311
10
3.2k
Microsoft Azure全冠になってみた ~アレを使い倒した者が試験を制す!?~/Obtained all Microsoft Azure certifications Those who use "that" to the full will win the exam! ?
yuj1osm
2
110
Snowflake女子会#3 Snowpipeの良さを5分で語るよ
lana2548
0
230
プロダクト開発を加速させるためのQA文化の築き方 / How to build QA culture to accelerate product development
mii3king
1
260
レンジャーシステムズ | 会社紹介(採用ピッチ)
rssytems
0
150
Amazon SageMaker Unified Studio(Preview)、Lakehouse と Amazon S3 Tables
ishikawa_satoru
0
150
ハイテク休憩
sat
PRO
2
140
私なりのAIのご紹介 [2024年版]
qt_luigi
1
120
マイクロサービスにおける容易なトランザクション管理に向けて
scalar
0
110
OpenAIの蒸留機能(Model Distillation)を使用して運用中のLLMのコストを削減する取り組み
pharma_x_tech
4
550
Featured
See All Featured
Why Our Code Smells
bkeepers
PRO
335
57k
Building Adaptive Systems
keathley
38
2.3k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
29
2k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.3k
GraphQLとの向き合い方2022年版
quramy
44
13k
Music & Morning Musume
bryan
46
6.2k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Building Your Own Lightsaber
phodgson
103
6.1k
We Have a Design System, Now What?
morganepeng
51
7.3k
StorybookのUI Testing Handbookを読んだ
zakiyama
27
5.3k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
Faster Mobile Websites
deanohume
305
30k
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