SlideShare une entreprise Scribd logo
React/ReactJS/React.js
Module: 4: Fundamentals of React.js
Industry Trends for React/React.js
• React developers earn more money when compared to other web
development technologies.
• Average salary of React developer across the US is $91,000 per
annum.
• Average salary of React developer across in India is 7,25,000 per
annum.
• React is gaining popularity and being adopted by many countries.
• :
Companies using react:
React Pre-requisites
 One should be familiar with programing concepts like function,
arrays, Objects and classes.
 HTML
 CSS
 JavaScript
 Understanding of ES6 (ES6 stands for ECMAScript 6. ECMAScript was
created to standardize JavaScript, and ES6 is the 6th version of
ECMAScript )
React/React.js/ReactJS
- React (also known as React.js or ReactJS) is a free open source java script library for
building fast an interactive front end UI interfaces for web and mobile applications.
- It is used for building user interfaces specifically for single-page applications which
means complete website in single page
- In MVC architecture, react is the view which defines how the app looks and feels like.
- It’s used for handling the view layer for web and mobile apps. React also allows us to
create reusable UI components.
- React is a User Interface (UI) library
- React can be used to develop both web and mobile interfaces.
- It was developed in facebook now meta in 2011.
- React was developed by “Jordon Walke” an engineer in facebook.
- React first deployed on Facebook’s newsfeed in 2011 and on
Instagram.com in 2012
• React allows developers to create large web applications that can change
data, without reloading the page.
• The main purpose of React is to be fast, scalable, and simple.
• It works only on user interfaces in the application.
•
To conclude : we can say…..
 React is a declarative, efficient, and flexible JavaScript library for building
user interfaces. It lets you compose complex UIs from small and isolated
pieces of code called “components”. React has a few different kinds of
components.
Why React is so popular
• Easy creation of dynamic web site.
• Performance enhancement
• Reusable components
• Unidirectional Data flow
• Can be used for mobile apps
• Dedicated tools for debugging
React Compiler: Babel
• Babel is a JavaScript compiler that can translate markup or programming
languages into JavaScript.
• With Babel, you can use the newest features of JavaScript (ES6 -
ECMAScript 2015).
• Babel is available for different conversions. React uses Babel to convert
JSX into JavaScript.
• Please note that <script type="text/babel"> is needed for using Babel.
React Features:
• Currently, ReactJS gaining quick
popularity as the best JavaScript
framework among web developers.
It is playing an essential role in the
front-end ecosystem. The
important features of ReactJS are
as following.
• JSX
• Components
• One-way Data Binding
• Virtual DOM
• Simplicity
• Performance
Features of React : JSX
• JSX stands for JavaScript XML. It is a JavaScript syntax extension. Its an
XML or HTML like syntax used by ReactJS.
• In React, instead of using regular JavaScript for templating, it uses JSX.
• JSX is a simple JavaScript that allows HTML quoting and uses these
HTML tag syntax to render subcomponents.
• HTML syntax is processed into JavaScript calls of React Framework.
• We can also write in pure old JavaScript.
React Components
• ReactJS is all about components. ReactJS application is made up of
multiple components, and each component has its own logic and
controls. These components can be reusable which help you to
maintain the code when working on larger scale projects.
React Components
In ReactJS, a component is a reusable and independent piece of code that
defines a part of a user interface. It can be thought of as a building block
for constructing a larger application.
There are two main types of components in ReactJS:
• Function Components: These are simple and stateless components that
take in props (short for properties) as input and return a React element
(JSX) as output. They are mainly used for rendering static content.
• Class Components: These are more complex and can have state and
lifecycle methods. They extend the React Component class and have a
render() method that returns a React element. They are used for more
complex logic and interaction with the user.
• Overall, components are the building blocks of a ReactJS application and
are used to create reusable UI elements
Example 1
Class Components Function Components
The class component also requires
a render() method, this method returns
HTML.
class Car extends React.Component
{ render()
{ return <h2>Hi, I am a Car!</h2>; }
}
Create a Function component called Car
function Car()
{
return <h2>Hi, I am a Car!</h2>;
}
Example 2
Now your React application has a component called Car, which returns an <h2> element.
To use this component in your application, use similar syntax as normal HTML: <Car />
import React from 'react';
import ReactDOM from 'react-dom/client';
function Car()
{ return <h2>Hi, I am a Car!</h2>;}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Car color="red"/>);
output: Hi, I am a Car!
• Multiple Components
Components can be reusable which help you to maintain the code when working on
larger scale projects.
Example 3
import React from 'react';
import ReactDOM from 'react-dom/client';
function Car() {
return <h2>I am a Car!</h2>;
}
function Garage() { return ( <><h1>Who lives in my Garage?</h1>
<Car /> </> );}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render (<Garage />);
output:
Who lives in my Garage?
I am a Car!
Why React is fast ?
What is meant by rendering in react js?
• Rendering in ReactJS refers to the process of displaying or updating the
contents of the user interface based on the current state and props of
the components.
• When a React component is rendered, it generates a virtual DOM
(Document Object Model) which is a lightweight representation of the
actual DOM.
• The virtual DOM is then compared to the previous version of the virtual
DOM, and only the differences are updated in the actual DOM.
Example 4
Here is an example of a simple React component with a render() method:
import React from 'react';
class Greeting extends React.Component {
render() {
return (
<div>
<h1>Hello, {this.props.name}!</h1>
<p>Today is {this.props.day}.</p>
</div>
);
}
} export default Greeting;
Virtual DOM
• The virtual DOM (VDOM) is a programming concept where an ideal,
or “virtual”, representation of a UI is kept in memory and synced
with the “real” DOM by a library such as ReactDOM. This process is
called reconciliation.
• A virtual DOM object is a representation of the original DOM object.
It works like a one-way data binding. Whenever any modifications
happen in the web application, the entire UI is re-rendered in virtual
DOM representation.
• Then it checks the difference between the previous DOM
representation and new DOM. Once it has done, the real DOM will
update only the things that have actually changed.
• This makes the application faster, and there is no wastage of memory.
Below is a visual description of the rendering
process when an application re-renders.
MOST POPULAR COMPONENTS
• GRIDS
• Data Grid
• Pivot Table
• Tree Grid
• Spreadsheet
• CALENDARS
• Scheduler
• Gantt Chart
• Calendar
• DatePicker
• DateRangePi
cker
• DateTime
Picker
• TimePicker
• DATA
VISUALIZATION
• Charts
• Stock Chart
• Circular Gauge
• Linear Gauge
• Diagram
• HeatMap
Chart
• Maps
• Range Selector
• Smith Chart
• Sparkline
Charts
• Barcode
Generator
• TreeMap
• Bullet Chart
• Kanban
• VIEWER
• PDF Viewer
• NAVIGATION
• Accordion
• Breadcrumb
• Context
Menu
• Menu Bar
• Sidebar
• Tabs
• Toolbar
• TreeView
• File Manager
• NOTIFICATION
S
• Badge
• Toast
• Progress Bar
• INPUTS
• TextBox
• Input Mask
• Numeric
Textbox
• Radio
Button
• Checkbox
• Color Picker
• File Upload
• Slider
• Signature P
REVIEW
• Toggle
Switch
Button
• BUTTONS
• Button
• Button
Group
• Dropdown
Menu
• Progress
Button
• Split Button
• Chips
• FORMS
• In-place
Editor
• Query
Builder UI
• EDITORS
• Rich Text
Editor
• Word
Processor
• DROPDOWNS
• AutoComplete
• ListBox
• ComboBox
• Dropdown List
• MultiSelect Dropdown
• Dropdown Tree
• LAYOUT
• Avatar
• Card
• Dialog
• ListView
• Tooltip
• Splitter
• Dashboard Layout

Contenu connexe

Similaire à Reactjs notes.pptx for web development- tutorial and theory

learning react
learning reactlearning react
learning react
Eueung Mulyana
 
How To Upgrade The React 18 Release Candidate.pptx
How To Upgrade The React 18 Release Candidate.pptxHow To Upgrade The React 18 Release Candidate.pptx
How To Upgrade The React 18 Release Candidate.pptx
BOSC Tech Labs
 
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
MskDotNet Community
 
React.js at Cortex
React.js at CortexReact.js at Cortex
React.js at Cortex
Geoff Harcourt
 
React DOM/Virtual DOM
React DOM/Virtual DOMReact DOM/Virtual DOM
React DOM/Virtual DOM
RajasreePothula3
 
Techpaathshala ReactJS .pdf
Techpaathshala ReactJS .pdfTechpaathshala ReactJS .pdf
Techpaathshala ReactJS .pdf
Techpaathshala
 
REACTJS1.ppsx
REACTJS1.ppsxREACTJS1.ppsx
REACTJS1.ppsx
IshwarSingh501217
 
Comparing Angular and React JS for SPAs
Comparing Angular and React JS for SPAsComparing Angular and React JS for SPAs
Comparing Angular and React JS for SPAs
Jennifer Estrada
 
Introduction to React Native
Introduction to React NativeIntroduction to React Native
Introduction to React Native
Rami Sayar
 
React js vs react native a comparative analysis
React js vs react native a comparative analysisReact js vs react native a comparative analysis
React js vs react native a comparative analysis
Shelly Megan
 
Skill practical javascript diy projects
Skill practical javascript diy projectsSkill practical javascript diy projects
Skill practical javascript diy projects
SkillPracticalEdTech
 
How Can the Hermes Engine Help React Native Apps.docx.pdf
How Can the Hermes Engine Help React Native Apps.docx.pdfHow Can the Hermes Engine Help React Native Apps.docx.pdf
How Can the Hermes Engine Help React Native Apps.docx.pdf
Techugo
 
reactJS
reactJSreactJS
reactJS
Syam Santhosh
 
react js training|react js training in mumbai|
react js training|react js training in mumbai|react js training|react js training in mumbai|
react js training|react js training in mumbai|
programmersclubonlin
 
What is ReactJS?
What is ReactJS?What is ReactJS?
What is ReactJS?
Albiorix Technology
 
Tech Talk on ReactJS
Tech Talk on ReactJSTech Talk on ReactJS
Tech Talk on ReactJS
Atlogys Technical Consulting
 
Maximize Development Efficiency with ReactJS.pdf
Maximize Development Efficiency with ReactJS.pdfMaximize Development Efficiency with ReactJS.pdf
Maximize Development Efficiency with ReactJS.pdf
BOSC Tech Labs
 
Why do we use react JS on the website_.pdf
Why do we use react JS on the website_.pdfWhy do we use react JS on the website_.pdf
Why do we use react JS on the website_.pdf
nearlearn
 
Javascript frameworks
Javascript frameworksJavascript frameworks
Javascript frameworks
RajkumarJangid7
 
Reactjs Basics
Reactjs BasicsReactjs Basics
Reactjs Basics
Hamid Ghorbani
 

Similaire à Reactjs notes.pptx for web development- tutorial and theory (20)

learning react
learning reactlearning react
learning react
 
How To Upgrade The React 18 Release Candidate.pptx
How To Upgrade The React 18 Release Candidate.pptxHow To Upgrade The React 18 Release Candidate.pptx
How To Upgrade The React 18 Release Candidate.pptx
 
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...Дмитрий Тежельников  «Разработка вэб-решений с использованием Asp.NET.Core и ...
Дмитрий Тежельников «Разработка вэб-решений с использованием Asp.NET.Core и ...
 
React.js at Cortex
React.js at CortexReact.js at Cortex
React.js at Cortex
 
React DOM/Virtual DOM
React DOM/Virtual DOMReact DOM/Virtual DOM
React DOM/Virtual DOM
 
Techpaathshala ReactJS .pdf
Techpaathshala ReactJS .pdfTechpaathshala ReactJS .pdf
Techpaathshala ReactJS .pdf
 
REACTJS1.ppsx
REACTJS1.ppsxREACTJS1.ppsx
REACTJS1.ppsx
 
Comparing Angular and React JS for SPAs
Comparing Angular and React JS for SPAsComparing Angular and React JS for SPAs
Comparing Angular and React JS for SPAs
 
Introduction to React Native
Introduction to React NativeIntroduction to React Native
Introduction to React Native
 
React js vs react native a comparative analysis
React js vs react native a comparative analysisReact js vs react native a comparative analysis
React js vs react native a comparative analysis
 
Skill practical javascript diy projects
Skill practical javascript diy projectsSkill practical javascript diy projects
Skill practical javascript diy projects
 
How Can the Hermes Engine Help React Native Apps.docx.pdf
How Can the Hermes Engine Help React Native Apps.docx.pdfHow Can the Hermes Engine Help React Native Apps.docx.pdf
How Can the Hermes Engine Help React Native Apps.docx.pdf
 
reactJS
reactJSreactJS
reactJS
 
react js training|react js training in mumbai|
react js training|react js training in mumbai|react js training|react js training in mumbai|
react js training|react js training in mumbai|
 
What is ReactJS?
What is ReactJS?What is ReactJS?
What is ReactJS?
 
Tech Talk on ReactJS
Tech Talk on ReactJSTech Talk on ReactJS
Tech Talk on ReactJS
 
Maximize Development Efficiency with ReactJS.pdf
Maximize Development Efficiency with ReactJS.pdfMaximize Development Efficiency with ReactJS.pdf
Maximize Development Efficiency with ReactJS.pdf
 
Why do we use react JS on the website_.pdf
Why do we use react JS on the website_.pdfWhy do we use react JS on the website_.pdf
Why do we use react JS on the website_.pdf
 
Javascript frameworks
Javascript frameworksJavascript frameworks
Javascript frameworks
 
Reactjs Basics
Reactjs BasicsReactjs Basics
Reactjs Basics
 

Dernier

Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
Prakhyath Rai
 
Transformers design and coooling methods
Transformers design and coooling methodsTransformers design and coooling methods
Transformers design and coooling methods
Roger Rozario
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
21UME003TUSHARDEB
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
insn4465
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
Nada Hikmah
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
Las Vegas Warehouse
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
jpsjournal1
 
Hematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood CountHematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood Count
shahdabdulbaset
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
shadow0702a
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
KrishnaveniKrishnara1
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
171ticu
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
bijceesjournal
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
Software Quality Assurance-se412-v11.ppt
Software Quality Assurance-se412-v11.pptSoftware Quality Assurance-se412-v11.ppt
Software Quality Assurance-se412-v11.ppt
TaghreedAltamimi
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
IJECEIAES
 

Dernier (20)

Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...Software Engineering and Project Management - Introduction, Modeling Concepts...
Software Engineering and Project Management - Introduction, Modeling Concepts...
 
Transformers design and coooling methods
Transformers design and coooling methodsTransformers design and coooling methods
Transformers design and coooling methods
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
Mechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdfMechanical Engineering on AAI Summer Training Report-003.pdf
Mechanical Engineering on AAI Summer Training Report-003.pdf
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
哪里办理(csu毕业证书)查尔斯特大学毕业证硕士学历原版一模一样
 
Curve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods RegressionCurve Fitting in Numerical Methods Regression
Curve Fitting in Numerical Methods Regression
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have oneISPM 15 Heat Treated Wood Stamps and why your shipping must have one
ISPM 15 Heat Treated Wood Stamps and why your shipping must have one
 
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECTCHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
CHINA’S GEO-ECONOMIC OUTREACH IN CENTRAL ASIAN COUNTRIES AND FUTURE PROSPECT
 
Hematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood CountHematology Analyzer Machine - Complete Blood Count
Hematology Analyzer Machine - Complete Blood Count
 
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
Use PyCharm for remote debugging of WSL on a Windo cf5c162d672e4e58b4dde5d797...
 
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.pptUnit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
Unit-III-ELECTROCHEMICAL STORAGE DEVICES.ppt
 
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样官方认证美国密歇根州立大学毕业证学位证书原版一模一样
官方认证美国密歇根州立大学毕业证学位证书原版一模一样
 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
 
Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...Comparative analysis between traditional aquaponics and reconstructed aquapon...
Comparative analysis between traditional aquaponics and reconstructed aquapon...
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
Software Quality Assurance-se412-v11.ppt
Software Quality Assurance-se412-v11.pptSoftware Quality Assurance-se412-v11.ppt
Software Quality Assurance-se412-v11.ppt
 
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
Electric vehicle and photovoltaic advanced roles in enhancing the financial p...
 

Reactjs notes.pptx for web development- tutorial and theory

  • 2. Industry Trends for React/React.js • React developers earn more money when compared to other web development technologies. • Average salary of React developer across the US is $91,000 per annum. • Average salary of React developer across in India is 7,25,000 per annum. • React is gaining popularity and being adopted by many countries. • :
  • 4. React Pre-requisites  One should be familiar with programing concepts like function, arrays, Objects and classes.  HTML  CSS  JavaScript  Understanding of ES6 (ES6 stands for ECMAScript 6. ECMAScript was created to standardize JavaScript, and ES6 is the 6th version of ECMAScript )
  • 5. React/React.js/ReactJS - React (also known as React.js or ReactJS) is a free open source java script library for building fast an interactive front end UI interfaces for web and mobile applications. - It is used for building user interfaces specifically for single-page applications which means complete website in single page - In MVC architecture, react is the view which defines how the app looks and feels like. - It’s used for handling the view layer for web and mobile apps. React also allows us to create reusable UI components. - React is a User Interface (UI) library - React can be used to develop both web and mobile interfaces.
  • 6. - It was developed in facebook now meta in 2011. - React was developed by “Jordon Walke” an engineer in facebook. - React first deployed on Facebook’s newsfeed in 2011 and on Instagram.com in 2012 • React allows developers to create large web applications that can change data, without reloading the page. • The main purpose of React is to be fast, scalable, and simple. • It works only on user interfaces in the application. •
  • 7. To conclude : we can say…..  React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called “components”. React has a few different kinds of components.
  • 8. Why React is so popular • Easy creation of dynamic web site. • Performance enhancement • Reusable components • Unidirectional Data flow • Can be used for mobile apps • Dedicated tools for debugging
  • 9. React Compiler: Babel • Babel is a JavaScript compiler that can translate markup or programming languages into JavaScript. • With Babel, you can use the newest features of JavaScript (ES6 - ECMAScript 2015). • Babel is available for different conversions. React uses Babel to convert JSX into JavaScript. • Please note that <script type="text/babel"> is needed for using Babel.
  • 10.
  • 11. React Features: • Currently, ReactJS gaining quick popularity as the best JavaScript framework among web developers. It is playing an essential role in the front-end ecosystem. The important features of ReactJS are as following. • JSX • Components • One-way Data Binding • Virtual DOM • Simplicity • Performance
  • 12. Features of React : JSX • JSX stands for JavaScript XML. It is a JavaScript syntax extension. Its an XML or HTML like syntax used by ReactJS. • In React, instead of using regular JavaScript for templating, it uses JSX. • JSX is a simple JavaScript that allows HTML quoting and uses these HTML tag syntax to render subcomponents. • HTML syntax is processed into JavaScript calls of React Framework. • We can also write in pure old JavaScript.
  • 13.
  • 14. React Components • ReactJS is all about components. ReactJS application is made up of multiple components, and each component has its own logic and controls. These components can be reusable which help you to maintain the code when working on larger scale projects.
  • 15.
  • 16. React Components In ReactJS, a component is a reusable and independent piece of code that defines a part of a user interface. It can be thought of as a building block for constructing a larger application. There are two main types of components in ReactJS: • Function Components: These are simple and stateless components that take in props (short for properties) as input and return a React element (JSX) as output. They are mainly used for rendering static content. • Class Components: These are more complex and can have state and lifecycle methods. They extend the React Component class and have a render() method that returns a React element. They are used for more complex logic and interaction with the user. • Overall, components are the building blocks of a ReactJS application and are used to create reusable UI elements
  • 17. Example 1 Class Components Function Components The class component also requires a render() method, this method returns HTML. class Car extends React.Component { render() { return <h2>Hi, I am a Car!</h2>; } } Create a Function component called Car function Car() { return <h2>Hi, I am a Car!</h2>; }
  • 18. Example 2 Now your React application has a component called Car, which returns an <h2> element. To use this component in your application, use similar syntax as normal HTML: <Car /> import React from 'react'; import ReactDOM from 'react-dom/client'; function Car() { return <h2>Hi, I am a Car!</h2>;} const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<Car color="red"/>); output: Hi, I am a Car!
  • 19. • Multiple Components Components can be reusable which help you to maintain the code when working on larger scale projects. Example 3 import React from 'react'; import ReactDOM from 'react-dom/client'; function Car() { return <h2>I am a Car!</h2>; } function Garage() { return ( <><h1>Who lives in my Garage?</h1> <Car /> </> );} const root = ReactDOM.createRoot(document.getElementById('root')); root.render (<Garage />); output: Who lives in my Garage? I am a Car!
  • 20. Why React is fast ?
  • 21. What is meant by rendering in react js? • Rendering in ReactJS refers to the process of displaying or updating the contents of the user interface based on the current state and props of the components. • When a React component is rendered, it generates a virtual DOM (Document Object Model) which is a lightweight representation of the actual DOM. • The virtual DOM is then compared to the previous version of the virtual DOM, and only the differences are updated in the actual DOM.
  • 22. Example 4 Here is an example of a simple React component with a render() method: import React from 'react'; class Greeting extends React.Component { render() { return ( <div> <h1>Hello, {this.props.name}!</h1> <p>Today is {this.props.day}.</p> </div> ); } } export default Greeting;
  • 23.
  • 24. Virtual DOM • The virtual DOM (VDOM) is a programming concept where an ideal, or “virtual”, representation of a UI is kept in memory and synced with the “real” DOM by a library such as ReactDOM. This process is called reconciliation. • A virtual DOM object is a representation of the original DOM object. It works like a one-way data binding. Whenever any modifications happen in the web application, the entire UI is re-rendered in virtual DOM representation. • Then it checks the difference between the previous DOM representation and new DOM. Once it has done, the real DOM will update only the things that have actually changed. • This makes the application faster, and there is no wastage of memory.
  • 25. Below is a visual description of the rendering process when an application re-renders.
  • 26.
  • 27. MOST POPULAR COMPONENTS • GRIDS • Data Grid • Pivot Table • Tree Grid • Spreadsheet • CALENDARS • Scheduler • Gantt Chart • Calendar • DatePicker • DateRangePi cker • DateTime Picker • TimePicker • DATA VISUALIZATION • Charts • Stock Chart • Circular Gauge • Linear Gauge • Diagram • HeatMap Chart • Maps • Range Selector • Smith Chart • Sparkline Charts • Barcode Generator • TreeMap • Bullet Chart • Kanban • VIEWER • PDF Viewer • NAVIGATION • Accordion • Breadcrumb • Context Menu • Menu Bar • Sidebar • Tabs • Toolbar • TreeView • File Manager • NOTIFICATION S • Badge • Toast • Progress Bar • INPUTS • TextBox • Input Mask • Numeric Textbox • Radio Button • Checkbox • Color Picker • File Upload • Slider • Signature P REVIEW • Toggle Switch Button • BUTTONS • Button • Button Group • Dropdown Menu • Progress Button • Split Button • Chips • FORMS • In-place Editor • Query Builder UI • EDITORS • Rich Text Editor • Word Processor
  • 28. • DROPDOWNS • AutoComplete • ListBox • ComboBox • Dropdown List • MultiSelect Dropdown • Dropdown Tree • LAYOUT • Avatar • Card • Dialog • ListView • Tooltip • Splitter • Dashboard Layout

Notes de l'éditeur

  1. MVC (Model-View-Controller) is a pattern in software design commonly used to implement user interfaces, data, and controlling logic. It emphasizes a separation between the software's business logic and display