influxdb/ui
lukevmorris b4e97fa21f :dashboardTime: (#1391)
* Add Range.Lower and Range.Upper to query config to persist custom ranges

* Update CHANGELOG to mention adding query build duration support

* Remove automatic application of global timeRange

If a user supplies a timeRange.  Add that to the queryConfig and use
that to generate the SELECT statement.  If a user omits a time range,
do not automatically include one...yet

* Update swagger.json to mention queryConfig's range

* Add test to influxql AST parsing of durations with no WHERE clause

* Implement first iteration of templated dashboard time range

* Range is nested within query.queryConfig

* DE will not use :dashboardTime:

* Clarify intention with a comment

* If there are no templates present, don't open the drawer

* Make TemplateControlBar its own component

* Rename dashTime to dashboardTime

* Cleanup TemplateControlBar

* Update CHANGELOG

* Update TemplateControlBar min height

* Polish template control bar

Inspired by @lukevmorris’ screenshot with the manage button on the right

* Reconstitute presentation mode styles
2017-05-04 16:57:50 -07: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 Remove custom cursors 2017-04-04 17:41:42 -07:00
spec Change default global time range to past 1 hour (#1395) 2017-05-04 13:00:30 -07:00
src :dashboardTime: (#1391) 2017-05-04 16:57:50 -07:00
stories Small styles changes. 2017-03-03 15:25:12 -07:00
webpack Use more supported .cur format instead of .png 2017-04-04 12:22:47 -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 Merge branch 'master' into feature/template-variables 2017-04-28 13:12:57 -07: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
karma.conf.js Add karma config 2016-09-20 11:50:15 -07:00
package.json Resolve missing binding for Node Sass error 2017-04-26 06:17:41 -07:00
storybook.js Storybook fixes. Add stateful class MultiSelectDropdown shared component. Add Select Roles story for that component. 2017-03-01 13:32:54 -07:00
yarn.lock Update /queries endpoint to handle templates 2017-04-28 15:12:28 -05: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