chronograf/ui
Tim Raymond 7ef85b6d54 Fix Flash of Unpopulated Graphs on Refresh
If a previous fetch of query results was unsuccessful, a "No Results"
message is displayed by the AutoRefresh component. When it went to fetch
results again, this would briefly be replaced by its composed compoenent
which would be instructed to show its "loading" treatment. Since "No
Results" is usually not a situation that would spontaneously change
without user intervention, this patch stores whether the previous fetch
was successful, and hides the loading treatment during subsequent
fetches if it wasn't.
2017-03-09 12:59:11 -05:00
..
.storybook Add React Storybook, in addition to stories and stubs for ValuesSection. Also… Add a nifty corsless proxy courtesy of yt. 2017-01-04 16:02:11 -08:00
assets/images spinner rotates the right direction now 2016-12-12 11:25:56 -08:00
spec Refactor to test combined appReducer, add tests for ephemeral app state reducer 2017-03-03 17:06:47 -08:00
src Fix Flash of Unpopulated Graphs on Refresh 2017-03-09 12:59:11 -05:00
stories \"\" 2017-01-06 11:11:18 -07:00
webpack Add frontend support for OAuth changes. 2017-02-15 11:57:52 -07:00
.babelrc Refactor to use async/await. 2017-01-12 14:59:07 -07:00
.eslintignore Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
.eslintrc Update eslintrc 2017-03-02 09:51:17 -08:00
.gitignore Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
.npmrc Bring over enterprise ui and configuration 2016-09-19 13:45:05 -07:00
README.md Update Makefile and webpack to make builds incremental 2017-02-08 21:15:56 -06:00
corsless.js Add React Storybook, in addition to stories and stubs for ValuesSection. Also… Add a nifty corsless proxy courtesy of yt. 2017-01-04 16:02:11 -08:00
karma.conf.js Add karma config 2016-09-20 11:50:15 -07:00
package.json Update Makefile and webpack to make builds incremental 2017-02-08 21:15:56 -06:00
yarn.lock Reuse shared sparse arrays for GC efficiency. Use fast.js methods to further optimize speed. 2017-01-30 08:05:57 -08:00

README.md

Packages

We are using yarn 0.19.1.

Adding new packages

To add a new package, run

yarn add packageName

Adding devDependency

yarn add --dev packageName

Updating a package

First, run

yarn 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:

yarn upgrade packageName