influxdb/ui
Deniz Kusefoglu 9edf9bd6ee
Add x and y column pickers to graph types (#14052)
* Add x and y column picker to line graph

* Use column selector in heatmap options

* Add column selector to histogram

* Add column selector to scatter plot

* Fix tests

* Add xColumn and yColumn to data structure in line graph tests

* Move scatter container defaults to visSwitcher

* Add fillcolumn validity checking to histogram

* regularize XYcontainer and render it and lineplussingle stat in visSwitcher

* Initialize all views with null columns

* Place Line and Scatter Options x-y column selector behind cloud feature flag

* Rename getGroupableColumnSelection

* Add defaults to x/y column selections in line graphs

* Add defaults to x/y column selections in scatter
2019-06-04 18:07:53 -07:00
..
assets/images Update final onboarding step to offer next step options to the user (#11145) 2019-01-16 12:16:56 -08:00
cypress fix(ui): update ui telegraf orgID 2019-06-03 19:40:33 -04:00
mocks fix(ui): update ui telegraf orgID 2019-06-03 19:40:33 -04:00
scripts Add scripts for Docker builds 2019-05-30 13:09:28 -07:00
src Add x and y column pickers to graph types (#14052) 2019-06-04 18:07:53 -07:00
.browserslistrc chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
.eslintrc.js chore(ui/lint): no unnecessary curly braces for string props (#12909) 2019-03-26 13:55:58 -07:00
.npmrc Make npm less noisy 2019-02-20 18:15:09 -08:00
.prettierrc.json Migrate from TSLint to ESLint 2019-02-20 18:15:09 -08:00
Makefile fix(ui/dash.clone): add orgID to clone (#13266) 2019-04-09 16:43:57 -04:00
README.md Remove yarn in favor of just npm 2018-11-30 17:02:31 -08:00
cypress.json test(e2e/orgs): strengthen org delete test 2019-03-06 16:35:30 -08:00
index.d.ts Extract and update templates 2019-05-09 15:58:55 -07:00
jestSetup.ts test(ui): component integration testing w/ mock redux store (#11577) 2019-01-25 14:08:57 -08:00
package-lock.json feat(ui): enable formatting line graph y ticks with binary prefix 2019-06-04 17:37:31 -07:00
package.json fix(ui): update ui telegraf orgID 2019-06-03 19:40:33 -04:00
testSetup.ts chore(ui): move ui from chronograf/ui to ui 2018-10-29 14:00:54 -04:00
tsconfig.json feat(kv): implemented key/value store with end-to-end integration tests 2019-02-19 17:47:19 -06:00

README.md

Packages

Adding new packages

To add a new package, run

npm i packageName

Adding devDependency

npm i packageName -D

Updating a package

First, run

npm outdated

... to determine which packages may need upgrading.

We really should not upgrade all packages at once, but, one at a time and make darn sure to test.

To upgrade a single package named packageName:

npm upgrade packageName

Testing

Tests can be run via command line with npm test, from within the /ui directory. For more detailed reporting, use yarn test -- --reporters=verbose.