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
Introduction to ExtReact, ExtAngular and ExtWeb...
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Olga
June 06, 2019
Programming
100
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Introduction to ExtReact, ExtAngular and ExtWebComponents
Olga
June 06, 2019
More Decks by Olga
See All by Olga
Visual Feature Engineering for Machine Learning with React
olgapetrova
0
300
Visual Feature Engineering for ML with React and TensorFlow.js
olgapetrova
0
100
How to Re-Architect a JavaScript Class System
olgapetrova
0
140
Web Push Notifications
olgapetrova
1
330
How to add D3.js visualization to your Ext JS application
olgapetrova
1
630
Turbo-charged Data Analysis and Visualization using Ext JS 6.2
olgapetrova
3
130
ExtJS 6: one framework for all devices
olgapetrova
1
820
Other Decks in Programming
See All in Programming
Claude Team Plan導入・ガイド
tk3fftk
0
180
コンテキストの使い捨てをやめる — ビジネスルール駆動開発と miko —
ioki
0
270
Hunting Vulnerabilities in Symfony with LLMs
vinceamstoutz
0
580
自作OSでスライド発表する
uyuki234
1
3.8k
その問い、本当に正しいですか?AI時代のエンジニアに必要な哲学と認知科学 / ai-philosophy-cognitive-science
minodriven
14
6.8k
AI がコードを書く時代における新卒エンジニアの仕事風景 (2026) / New Graduate Engineers in the Era of AI Coding (2026)
sushichan044
0
220
Snowflake Summitでの新機能 CoCo / CoWork / snowflake-summit-2026-overall-what-new-coco
tatsuhiro
1
220
act1-costs.pdf
sumedhbala
0
210
フィードバックで育てるAI開発
kotaminato
1
110
Developing with AI Agents — Codex, Claude Code & Cowork Practical Guide
x5gtrn
PRO
0
1.4k
過去最大のMCPアップデート! 2026-07-28 RC版の謎に迫る
licux
6
460
コーディングルールの鮮度を保ちたい for SRE NEXT 2026 / keep-fresh-go-internal-conventions-sre-next-2026
handlename
0
140
Featured
See All Featured
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
370
Scaling GitHub
holman
464
140k
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
450
HU Berlin: Industrial-Strength Natural Language Processing with spaCy and Prodigy
inesmontani
PRO
0
480
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
200
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
201
75k
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
6k
Why Your Marketing Sucks and What You Can Do About It - Sophie Logan
marketingsoph
0
230
YesSQL, Process and Tooling at Scale
rocio
174
15k
AI: The stuff that nobody shows you
jnunemaker
PRO
8
830
Navigating the Design Leadership Dip - Product Design Week Design Leaders+ Conference 2024
apolaine
1
370
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.8k
Transcript
Olga Petrova, @tyoushe Introduction to ExtReact, ExtAngular, ExtWebComponents Olga Petrova,
@tyoushe
[email protected]
Olga Petrova, @tyoushe ExtReact & ExtAngular
Olga Petrova, @tyoushe
Olga Petrova, @tyoushe Components
Olga Petrova, @tyoushe Ext JS, React and Angular Ext JS
Component configs items: [] Angular Component properties Children elements React Component props Children elements
Olga Petrova, @tyoushe Reactor Wrapper Concept Ext JS Component props
state method calls event listeners transform translate configs events methods link to Ext JS Component
Olga Petrova, @tyoushe Architecture first and lastname React Framework Core
Ext Modern Components Theme Packages Sencha Themer Angular Framework Sencha Test Premium Packages
Olga Petrova, @tyoushe ExtReact 8 import React, { Component }
from 'react'; import { Grid, Column } from '@sencha/ext-modern'; export default class MyGrid extends Component { store = Ext.create('Ext.data.Store', {...}); render() { return ( <Grid title="Stock Prices" store={this.store}> <Column text="Company" dataIndex="name" width="150"/> <Column text="Price" width="85" dataIndex="price" formatter='usMoney‘/> </Grid> ) } } MyGrid.js
Olga Petrova, @tyoushe <container padding="10" layout="fit" [fitToParent]="true"> <grid title="Stock Prices"
[store]="store"> <column text="Company" width="150" dataIndex="name"></column> <column text="Price" width="85" dataIndex="price" formatter="usMoney"></column> <column text="Last Updated" dataIndex="lastChange"></column> </grid> </container> ExtAngular 9 import { Component } from '@angular/core'; @Component({ selector: 'basicgrid-component‘, templateUrl: './MyGrid.html' }) export class BasicGridComponent { store = Ext.create('Ext.data.Store', {...}) constructor() { //... } } MyGrid.html MyGrid.ts
Olga Petrova, @tyoushe Getting Started 10 ExtReact Trial: https://www.sencha.com/products/extreact/evaluate/ ExtAngular
Trial: https://www.sencha.com/products/extangular/evaluate/
Olga Petrova, @tyoushe npm login --registry=https://npm.sencha.com --scope=@sencha npm install -g
@sencha/ext-react-gen ext-react-gen app -i Setup 11
Olga Petrova, @tyoushe Examples 12 ExtReact Kitchensink: https://examples.sencha.com/ExtReact/6.7.0/kitchensink/ ExtAngular Kitchensink:
https://examples.sencha.com/ExtAngular/6.7.0/kitchensink/
Olga Petrova, @tyoushe Vue.js
Olga Petrova, @tyoushe WebComponents
Olga Petrova, @tyoushe
Olga Petrova, @tyoushe Specifications • Custom Elements • Shadow DOM
• ES Modules • HTML Template 16
Olga Petrova, @tyoushe Custom HTML Tag 17 class MyAwesomeButton extends
HTMLElement {...} window.customElements.define('my-awesome-button', MyAwesomeButton); <my-awesome-button class="nice_style">Click me!</my-awesome-button> var myAwesomeButton = document.createElement('my-awesome-button‘); document.body.appendChild(myAwesomeButton); document.querySelector('my-awesome-button‘) .addEventListener('click', function() {...});
Olga Petrova, @tyoushe
Olga Petrova, @tyoushe ExtWebComponents
Olga Petrova, @tyoushe ExtWebComponents 20 import '@sencha/ext-web-components/dist/ext-column.component'; import '@sencha/ext-web-components/dist/ext-grid.component‘;
Olga Petrova, @tyoushe <ext-panel width="100%" height="100%"> <ext-grid multiColumnSort=true onready="basicgrid.onGridReady" title="Stock
Prices"> <ext-column text="Company" flex="1" dataIndex="name"></ext-column> <ext-column text="Price" dataIndex="price" formatter="usMoney"></ext-column> <ext-column text="Last Updated" dataIndex="lastChange"></ext-column> </ext-grid> </ext-panel> import './MyGrid.html'; export default class MyGrid { constructor() { this.store = Ext.create('Ext.data.Store', {...}); } onGridReady = (event) => { this.gridCmp = event.detail.cmp; this.gridCmp.setStore(this.store); } } ExtWebComponents 21 MyGrid.html MyGrid.js
Olga Petrova, @tyoushe Getting Started 22 MyGrid.ts Early adopter access
to ExtWebComponents Trial: https://www.sencha.com/products/extwebcomponents/evaluate/earlyaccess/
Olga Petrova, @tyoushe npm login --registry=https://sencha.myget.org/F/early-adopter/npm/ --scope=@sencha npm install -g
@sencha/ext-web-components-gen ext-web-components-gen app --name MyApp Setup 23 MyGrid.ts
Olga Petrova, @tyoushe Examples 24 ExtWebComponents Kitchensink: https://examples.sencha.com/ExtWebComponents/7.0.0/kitchensink/
Olga Petrova, @tyoushe • 115+ UI Components • Layout System
• Sencha Themer • Sencha Test • Sencha Cmd integration • Ext JS component bridge • Webpack: Build and Bundle ExtReact ExtAngular ExtWebComponents
Olga Petrova, @tyoushe Introduction to ExtReact, ExtAngular, ExtWebComponents Olga Petrova,
@tyoushe
[email protected]