Skip to content

PHS4/sencha-examples

Repository files navigation

ExtJS Grid Demos

CI

Test Deployment (Classic) and (Modern)

Getting Started

Sencha CMD v7.3.0.19

Classic:

Run locally

cd app-classic
sencha app watch

Modern:

cd app-modern
sencha app watch

Building:

A script is used to handle an extra build step where the app directories are copied to the build project unminified for displaying code in the source tabs.

Build a single app:

cd sencha-examples/ # the workspace

./sencha_cmd classic production
# outputs to ./build/production/classic

./sencha_cmd modern production
# outputs to ./build/production/modern

To build all apps:

./sencha_cmd_build_all

Linking/Routing:

Supported parameters:

If empty or exluded in url they will default to true

    http://localhost:1841/app-classic/
        
        ?toolbar        =[false|true] (hides/shows)
        &description    =[false|true] (hides/shows)
        &navigation     =[false|true] (collapses/expands)
        &source         =[false|true] (collapses/expands)
        &demo           =[false|true] (collapses/expands)
        
        #/category-slug/demo-slug

Some Examples:

  • Hide Everything except the example: ../app-{toolkit}/?toolbar=false&description=false&source=false&navigation=false
  • Collapsed Navigation and Source Code: ../app-{toolkit}/?toolbar=true&description=true&source=false&navigation=false

Live examples: https://codepen.io/Trozdol/pen/GRoEeZO

Demo file structure:

app-classic/
    model/ - dont use
    store/ - dont use
    view/
        main/
        someexample/
            readme.md    - description and any info that might be handy.
            data.json    - a copy of any static data used.
            SomeExampleStore.js          - Ext.data.Store (usually)
            SomeExampleStoreModel.js     - Ext.data.Model
            SomeExampleView.js           - Ext.grid.Panel (classic)
            SomeExampleViewModel.js      - Ext.app.ViewModel
            SomeExampleViewController.js - Ext.app.ViewController

When you create a new view package and reload the app the new view should automatically be added to the navigation on startup. This is done in the main/MainViewController.js

The requires array is used by the Demo app in a less traditional way. It determines which JS files are includeded in the Source Code panel in the app. The readme.md and data.json files are assumed to be present and added on when the navigation data is generated.

    requires: [
        'Demo.view.someexample.SomeExampleStore',
        'Demo.view.someexample.SomeExampleStoreModel',
        'Demo.view.someexample.SomeExampleViewModel',
        'Demo.view.someexample.SomeExampleViewController',
    ],

You can't use the build versions of the app for deployment. They need to be in a non minified state so for now just publish the entire workspace.

New App

    sencha generate app -ext@7.2 -classic Demo app-classic

    sencha generate app -ext@7.2 -modern Demo app-modern

New View Package

    sencha generate view -n="someexample.SomeExampleView" -b="Ext.grid.Grid"; 

    sencha generate view -n="someexample.SomeExampleStore" -b="Ext.data.Store"; 

    sencha generate view -n="someexample.SomeExampleStoreModel" -b="Ext.data.Model"; 

    touch \
        app/view/someexample/readme.md \
        app/view/someexample/data.json

    # or just copy one that already exists to new location

Classic

    cd app-classic 

    sencha app build -dev && sencha app watch

Modern

    cd app-modern 

    sencha app build -dev && sencha app watch