teleport/web/README.md
Lisa Kim a5d83a03a7 Unit Test ButtonSso and Validator Class (#24)
* Refactor and unit test ButtonSso
* Unit test Validator class inside Validation.jsx
* Update failing snapshot caused by reformatting
2020-02-18 14:28:27 -08:00

3 KiB

Gravitational Web Applications and Packages

This mono-repository contains the source code for the Teleport and Gravity Web UI.

The code is organized in terms of independent yarn packages which reside in the packages directory.

Getting Started

You can make production builds locally or you can use Docker to do that.

Setup Prettier on VSCode

  1. Install plugin: https://github.com/prettier/prettier-vscode
  2. Go to Command Palette: CMD/CTRL + SHIFT + P (or F1)
  3. Type open settings
  4. Select Open Settings (JSON)
  5. Include the below snippet and save:
// Set the default
"editor.formatOnSave": false,
"prettier.configPath": ".prettierrc",
// Enable per-language
"[javascript]": {
    "editor.formatOnSave": true
}
"[html]": {
    "editor.tabSize": 2,
    "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
    "editor.tabSize": 2,
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "esbenp.prettier-vscode"
}

Local Build

Make sure that you have yarn installed on your system since this monorepo uses the yarn package manager.

Then you need download and initialize these repository dependencies.

$ yarn install

To build Teleport Web UI

$ yarn build-teleport

To build Gravity Web UI

$ yarn build-gravity

The resulting output will be in /packages/teleport/dist/ and /packages/gravity/dist/

Docker Build

To build Teleport Web UI

$ make teleport

To build Gravity Web UI

$ make gravity

Development

To avoid having to install a dedicated Teleport or Gravity cluster, you can use a local development server which can proxy network requests to an existing cluster.

For example, if https://example.com:3080/web is the URL of your cluster UI then:

to start your local Teleport development server

$ yarn start-teleport --target=https://example.com:3080/web

or to start your local Gravity development server

$ yarn start-gravity --target=https://example.com:3080/web

This service will serve your local javascript files and proxy network requests to the given target.

Keep in mind that you have to use a local user because social logins (google/github) are not supported by development server.

Unit-Tests

We use jest as our testing framework.

To run all jest unit-tests:

$ yarn run test

To run jest in watch-mode

$ yarn run tdd

Interactive Testing

We use storybook for our interactive testing. It allows us to browse our component library, view the different states of each component, and interactively develop and test components.

To start a storybook:

$ yarn run storybook

This command will open a new browser window with storybook in it. There you will see components from all packages so it makes it faster to work and iterate on shared functionality.