1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-28 10:55:30 +03:00
awx/docs/ui_build_system.md
Leigh Johnson aacae7b844 ui build system documents (#4353)
* add ui build system documentation, pin nodejs + npm engines to versions vetted for Tower

* Update ui_build_system.md

* Update ui_build_system.md
2016-12-09 12:33:01 -05:00

12 KiB

UI BUILD SYSTEM

Table of Contents

  1. Care and Keeping of NodeJS + NPM

    1. Pin NodeJS & NPM versions
    2. Use NVM to manage multple Node/NPM installations 3.. Add, incremenet, remove a package
    3. dependency, devDependency, or optionalDependency?
  2. Webpack

    1. What does Webpack handle?
    2. Add / remove a vendor module
    3. Strategies: loading a module
    4. Strategies: exposing a module to application code
  3. Grunt

    1. What does Grunt handle?
    2. Add / remove a Grunt task
    3. Task concurrency & process lifecycles
  4. Karma

    1. Developer configuration
    2. CI configuration
  5. Interfaces & Environments

    1. NPM script targets
    2. Makefile targets
    3. NPM config variables
    4. Other environment variables
  6. References / Resources

Care and Keeping of NodeJS + NPM

Pin NodeJS & NPM versions

NodeJS began packaging their releases with a bundled version of NPM. Occasionally, the version of NPM that ships with a given NodeJS release can be unstable. For example, the v6 LTS of Node shipped with a version of NPM that introduced a regression that broke module installation for any package with platform-specific dependencies.

For this reason, it's strongly advised to pin development environments, CI, and release pipelines to vetted releases of NodeJS + NPM.

Pinned versions are best expressed through the engine field in package.json.

 "engines": {
    "node": "^6.3.1",
    "npm": "=3.10.3"
  }

Use NVM to manage multiple NodeJS + NPM installations

A system installation of Node raises many challenges on a development or shared system: user permissions, shared (global) modules, and installation paths for multiple versions. nvm is a light executable that addresses all of these issues. In the context of Tower, we use nvm to quickly switch between versions of NodeJS + NPM.

Version support per Tower release 3.0.* - NodeJS v0.12.17 & NPM v2.15.1 3.1.* - NodeJS 6.3.1 * & NPM 3.10.3

$ nvm install 6.3
$ nvm use 6.3

Adding, incrementing, removing packages via NPM

The Tower package utilizes an npm-shrinkwrap.json file to freeze dependency resolution. When npm install runs, it will prefer to resolve dependencies as frozen in the shrinkwrap file before it ingests versions in package.json. To update the shrinkwrap file with a new dependency, pass the --save argument e.g. npm install fooify@1.2.3 --save.

Do not run npm shrinkwrap when add/updating dependencies. This will re-generate the entire conflict resolution tree, which will churn over time. Instead, depend on --save, --save-dev and --save-optional to create/update the shrinkwrapped package.

What's a dependency, devDependency, or optionalDependency

dependency - Bundled in the Tower product. Customer-facing. devDependency - Used in the development, build, and release pipelines optionalDependency - Platform-specific dependencies, or dependencies which should not cause npm install to exit with an error if these modules fail to install.

Webpack

What does Webpack handle?

Webpack ingests our vendor and application modules, and outputs bundled code optimized for development or production. Configuration lives in webpack.config.js.

Webpack is a highly pluggable framework (list of vetted plugins) We make use of the following plugins:

  • ProvidePlugin - automatically loads and exports a module into specified namespace. A modular approach to loading modules that you would otherwise have to load into global namespace. Example:
// webpack.config.js
plugins: {
    new webpack.ProvidePlugin({
        '$': 'jquery',
    })
}
// some-application-module.js
// the following code:
$('.my-thingy').click();

// is transformed into:
var $ = require('jquery');
$('.my-thingy').click();
  • CommonChunksPlugin - a chunk is Webpack's unit of code-splitting. This plugin' chunk consolidation strategy helps us split our bundled vendor code from our bundled application code, which dramatically reduces rebuild and browser loading time in development.

Currently, Tower is split into two output bundles: tower.vendor.js and tower.js. This would be the plugin configuration to update to additionally split application code into more portable components (example: for usage in the Insights UI).

  • DefinePlugin - injects a module that behaves like a global constant, which can be defined/configured as compile time. Tower uses this plugin to allow command-line arguments passed in at build time to be consumed by application code.

  • UglifyJSPlugin (production-only) - removes whitespace and minifies output. The mangle option can be used for an addiction layer of obfuscation, but it can also cause namespace issues.

Add / remove a vendor module

First, install the package via npm. If the package doesn't export its contents as a CommonJS, AMD, or SystemJS module you will need to write a module loader.

Not all packages correctly import their own dependencies. Some packages (notable: most jquery plugins) assume a certain dependency will already be in the global namespace. You will need to shim dependencies into these modules using Webpack's export loader.

To bundle a new dependency in tower.vendor.js, add it to the vendorPkgs array in webpack.config.js.

Strategies: loading a module

Webpack ingests code through a concept called a loader. What is a loader?, exactly?

Loaders can be chained together to perform a complex series of transformations and exports, or used in isolation to target a specific module.

The Webpack loaders used by Tower:

Babel loader - loads files matching a pattern imports loader - shims dependency namespace, or constrains our own module loading strategies for this package (e.g. prefer to use CJS because AMD strategy is broken in package)

Grunt

Grunt is a modular task runner. Functionally, it serves the same purpose as a Makefile or set of bash scripts. Grunt helps normalize the interfaces between disparate pieces of tooling. For purposes of Tower, Grunt also simplifies managing the lifecycle of concurrent child processes.

What does Grunt handle?a>

Grunt cleans up build artifacts, copies source files, lints, runs 18n text extraction & compilation, and transforms LESS to CSS.

Other development-only Grunt tasks will poll for file changes, run tasks when a subset of files changes, and raise an instance of BrowserSync (reloads browser on built changes) proxied to an instance of the Django API, running in a native Docker container or container inside of a Docker Machine.

Grunt internally uses minimatch file globbing patterns

Add / change / remove a Grunt task

Grunt tasks live in awx/ui/grunt-tasks/ and are organized in a file-per-plugin pattern.

The plugin load-grunt-configs will automatically load and register tasks read from the configuration files in awx/ui/grunt-tasks. This reduces the amount of boilerplate required to write, load, register, each task configuration.

FEach task may be configured with a set of default option, plus additional targets that inherit or override defaults. For example, all tasks in grunt-tasks/clean.js run with -f or --force flag. grunt-contrib-clean

module.exports = {
    options: { force: true },
    static: 'static/*',
    coverage: 'coverage/*',
    tmp: '../../tmp',
    jshint: 'coverage/jshint.xml'
};

Grunt task concurrency

By default, Grunt tasks are run in a series. [grunt-concurrent] is a plugin that allows us to parallelize certain tasks, to speed up the overall build process.

Note: certain polling tasks must always be run on a thread that remains alive. For example, the webpack tasks interact with Webpack's API. Therefor when Webpack's livereload option is on, Grunt webpack tasks should be spawned in series prior to Grunt watch tasks.

Karma

karma.conf.js is a generic configuration shared between developer and CI unit test runs.

The base configuration is suitable for live development. Additional command-line arguments supplement this general config to suit CI systems.

An npm script interface is provided to run either of these configurations: npm test (base) npm test:ci

Interfaces & Environments

The UI build system is intended for use through NPM scripts. NPM scripts are preferable to just running grunt sometask because npm run will look for node_modules/.bin executables, allowing us to manage CI/release executable versions through package.json. You would otherwise have to append these to the executor's $PATH.

npm run targets are run in a shell, which makes them a flexible way of mixing together Python, Ruby, Node, or other CLI tooling in a project.

Tower's NPM script targets

Below is a reference of what each script target does in human language, and then what you can expect the script to execute.


Builds a development version of the UI with a BrowserSync instance proxied to a Docker Machine

$ DOCKER_MACHINE_NAME=default npm run build-docker-machine
$ ip=$(docker-machine ip $DOCKER_MACHINE_NAME); npm set ansible-tower:django_host ${ip}; grunt dev;

Builds a development version of the UI with a BrowserSync instance proxied to a native Docker container

$ DOCKER_CID=1a2b3c4d5e npm run build-docker
$ ip=`docker inspect --format '{{ .NetworkSettings.IPAddress }}' $DOCkER_CID` | npm set config ansible-tower:django_host ${ip}; grunt dev;

Builds a development version of the UI. No filesystem polling. Re-run after each new revision.

$ npm run build-devel

Builds a production version of the UI.

$ npm run build-release

Launches unit test runners in assorted browsers. Alias for npm run test

$ npm test

Launches unit test runners headless in PhantomJS. Alias for npm run test:ci

$ npm test:ci

Extracts i18n string markers to a .pot template.

$ npm run pot

Builds i18n language files with regard to .pot.

$ npm run languages