vitess-gh/web/vtadmin
Andrew Mason 12900724f6
Merge pull request #8331 from tinyspeck/sarabee-vtadmin-stream-lag-charts
[vtadmin-web] Add chart for stream vreplication lag across all streams in a workflow
2021-06-15 16:41:48 -04:00
..
bin
public
src Merge pull request #8331 from tinyspeck/sarabee-vtadmin-stream-lag-charts 2021-06-15 16:41:48 -04:00
.eslintignore
.gitignore
.prettiercc
.stylelintrc
README.md [vtadmin-web] Add source-map-explorer util 2021-05-10 17:49:20 -04:00
package-lock.json [vtadmin-web] Add client-side error handling interface + Bugsnag implementation 2021-06-09 08:41:08 -04:00
package.json [vtadmin-web] Add client-side error handling interface + Bugsnag implementation 2021-06-09 08:41:08 -04:00
tsconfig.json

README.md

VTAdmin

Running vtadmin-web locally

In this section, we'll get vtadmin-web, vtadmin-api, and Vitess all running locally. This process is still somewhat... cumbersome, apologies. 😰

  1. Run Vitess locally with Docker (or another way, if you prefer):

    make docker_local
    ./docker/local/run.sh
    
  2. Create an empty vtgate credentials file to avoid the gRPC dialer bug mentioned in https://github.com/vitessio/vitess/pull/7187. Location and filename don't matter since you'll be passing this in as a flag; I put mine at /Users/sarabee/vtadmin-creds.json:

    {
    	"Username": "",
    	"Password": ""
    }
    
  3. Create a cluster configuration file for the local Vitess you started up in step 1. Again, filename and location don't matter since we'll be passing in the path as a flag; I put mine at /Users/sarabee/vtadmin-cluster1.json. Here it is with default values for the local Vitess/Docker example we're following:

    {
    	"vtgates": [
    		{
    			"host": {
    				"hostname": "127.0.0.1:15991"
    			}
    		}
    	],
    	"vtctlds": [
    		{
    			"host": {
    				"hostname": "127.0.0.1:15999"
    			}
    		}
    	]
    }
    
  4. Start up vtadmin-api but make sure to update the filepaths for the vtgate creds file and static service discovery file you created above!

    make build
    
    ./bin/vtadmin \
    	--addr ":14200" \
    	--cluster-defaults "vtctld-credentials-path-tmpl=/Users/sarabee/vtadmin-creds.json,vtsql-credentials-path-tmpl=/Users/sarabee/vtadmin-creds.json" \
    	--cluster "name=cluster1,id=id1,discovery=staticFile,discovery-staticFile-path=/Users/sarabee/vtadmin-cluster1.json" \
    	--http-origin=http://localhost:3000
    
  5. Finally! Start up vtadmin-web on http://localhost:3000, pointed at the vtadmin-api server you started in the last step.

    cd web/vtadmin
    npm install
    REACT_APP_VTADMIN_API_ADDRESS="http://127.0.0.1:14200" npm start
    

Developer guide

This section contains notes for those that want to build and run vtadmin-web locally.

Available scripts

Scripts for common and not-so-common tasks. These are always run from the vitess/web/vtadmin directory (although some of them have counterparts in vitess/Makefile):

Command Description
npm start Start vtadmin-web on http://localhost:3000 with the development server. Changes you make will be automatically picked up in the browser, no need to refresh.
npm run test Launches the test runner in the interactive watch mode. See the create-react-app documentation about running tests for more information.
npm run lint Run all of the linters and formatters. The package.json file defines a bunch more scripts to run individual linters, if you prefer, like npm run lint:eslint.
npm run lint:fix Run all of the linters and fix errors (where possible) in place. Note that this will overwrite your files so you may want to consider committing your work beforehand!
npm run build Generates a build of vtadmin-web for production and outputs the files to the vitess/web/vtadmin/build folder. In most cases, you won't need to run this locally, but it can be useful for debugging production-specific issues. See the create-react-app documentation about deployment for more information.
npm run analyze Analyze and debug JavaScript build size using source-map-explorer. In most cases, you'll first want to run npm run build to update the build/ directory.

Toolchain

Environment Variables

Under the hood, we use create-react-app's environment variable set-up which is very well documented: https://create-react-app.dev/docs/adding-custom-environment-variables.

All of our environment variables are enumerated and commented in react-app-env.d.ts. This also gives us type hinting on process.env, for editors that support it.

Configuring your editor

VS Code

To set up automatic formatting on save:

  1. Install the Prettier VS Code plugin.
  2. Add the following to your VS Code workspace:
{
	// ... other workspace config ...

	"settings": {
		// ... other settings ..

		"prettier.useEditorConfig": false,

		// You may have to adjust this depending on which folder is the root of your workspace.
		// By default, this configuration assumes that you have your workspace settings 
		// at `vitess/.vscode/settings.json`. 
		"prettier.configPath": "web/vtadmin/.prettiercc",
		
		"[typescriptreact]": {
			"editor.defaultFormatter": "esbenp.prettier-vscode",
			"editor.formatOnSave": true,
		},
		
		"[typescript]": {
			"editor.defaultFormatter": "esbenp.prettier-vscode",
			"editor.formatOnSave": true,
		},
		
		"[javascript]": {
			"editor.defaultFormatter": "esbenp.prettier-vscode",
			"editor.formatOnSave": true,
		},

		"[css]": {
			"editor.codeActionsOnSave": {
				"source.fixAll.stylelint": true
			}
		},

		"[scss]": {
			"editor.codeActionsOnSave": {
				"source.fixAll.stylelint": true
			}
		}
	}
}

For more, check out "Setting Up Your Editor" in the create-react-app docs.