Commit Graph

4735 Commits (ece8cf3fedbd7ccd2f11e7e7f8edc52a79dbea15)

Author SHA1 Message Date
Andrew Watkins 72a487b3d8 Merge branch 'master' into fix/1633-windows-uptime-status 2017-08-14 13:23:38 -07:00
Hunter Trujillo 19cf8bd62d Merge pull request #1715 from influxdata/fix/ie11-support
Initial IE 11 rendering support
2017-08-14 14:22:29 -06:00
Tim Raymond 23cec7bdca
Update CHANGELOG with data corruption notes 2017-08-14 15:26:09 -04:00
Hunter Trujillo f1f65d0b41 Merge branch 'master' into fix/ie11-support 2017-08-14 12:47:58 -06:00
Hunter Trujillo a47722d2bc Change time range shortcut method name from moving time range due to refined issue scope. 2017-08-14 12:32:06 -06:00
Tim Raymond dda79d809e
Update CHANGELOG and version for v1.3.6.1 2017-08-14 14:27:18 -04:00
Tim Raymond c7eaef7df1 Merge single-stat hotfix (#1866) 2017-08-14 14:19:01 -04:00
Timothy J. Raymond 39f40671a9 Merge pull request #1866 from influxdata/bugfix/tr-missing-cell-type
Fix missing cell type
2017-08-14 14:04:36 -04:00
Tim Raymond 8575df5615
Update CHANGELOG w/ fix for single stat 2017-08-14 14:03:49 -04:00
Jared Scheib 8a04981628 Merge pull request #1863 from influxdata/update/type_new_sources-1861
Add 'type' to new-sources server flag example
2017-08-14 10:56:10 -07:00
Andrew Watkins 5fde250432 Update CHANGELOG.md 2017-08-14 10:43:24 -07:00
Tim Raymond 45e7bd8662
Fix missing cell type
Because we are now creating new instances of dashboards when we create a
response, it's critical to copy every element of Dashboards from the
previous to the new instance.

We were not previously copying the Type field of cells, so this was
defaulting to the empty string zero value. This patch adds "Type" to the
tests and ensures that it's properly copied
2017-08-14 13:41:31 -04:00
Luke Morris 37faf0582f No longer need to bind component class methods + cleanup 2017-08-11 19:42:33 -07:00
Luke Morris bcf38a0339 Target can be either grooveKnob or its container 2017-08-11 19:27:35 -07:00
Jared Scheib b3ca53628d WIP Remove Timeouts to make OptIn simpler and more reliable 2017-08-11 17:57:33 -07:00
Andrew Watkins 30e38e94e9 Merge branch 'master' into experiment/separate-data-explorer 2017-08-11 15:04:17 -07:00
Jared Scheib 74d2f160fa WIP Wire up OptIn input with basic onClickOutside 2017-08-11 14:48:29 -07:00
Andrew Watkins f3072b97f5 Remove unused props and proptypes 2017-08-11 14:45:31 -07:00
Andrew Watkins 1146130c4a Rename handler 2017-08-11 14:42:03 -07:00
Andrew Watkins 246857eadd Remove template variable logic from DataExplorer 2017-08-11 14:38:55 -07:00
Andrew Watkins c83254de88 Move QueryStatus component to shared dir 2017-08-11 14:31:25 -07:00
Andrew Watkins 750c851093 Use QueryStatus component 2017-08-11 14:29:17 -07:00
Andrew Watkins e921a312a4 Remove QueryBuilder component
Dont worry!  It's been replaced by smaller more
reusable components.
2017-08-11 14:19:04 -07:00
Andrew Watkins 256a8839bc Break QueryBuilder into smaller components 2017-08-11 14:18:24 -07:00
Andrew Watkins 30491af8b3 Make DataExplorer's QueryMaker an SFC 2017-08-11 14:05:58 -07:00
Jared Scheib 5c7dfd77ba Update boolean names to be more semantic 2017-08-11 13:58:20 -07:00
Andrew Watkins 5e40dc5923 Move QueryTabList to shared dir 2017-08-11 13:57:50 -07:00
Jared Scheib 3ed84ca3cf Remove unused prop 2017-08-11 13:56:15 -07:00
Jared Scheib 85601a179e Remove obsolete comments 2017-08-11 13:53:50 -07:00
Andrew Watkins 041265008c Use QueryTabList component 2017-08-11 13:53:13 -07:00
Andrew Watkins f9686f4a9a Move handlers into parent 2017-08-11 13:47:51 -07:00
Jared Scheib 044153a63e Make syntax more sugary 2017-08-11 13:46:29 -07:00
Andrew Watkins 06450854c8 Remove unused class property 2017-08-11 13:36:52 -07:00
Andrew Watkins 31d83ec9ab Remove templates from DataExplorer 2017-08-11 13:34:27 -07:00
Jared Scheib 7012674cc3 Update changelog 2017-08-11 13:34:26 -07:00
Alex P 03b6e62782 Updoot changelog 2017-08-11 13:33:51 -07:00
Nathan L Smith 84982f60a6 Fixes for file upload
- [ ] CHANGELOG.md updated with a link to the PR (not the Issue)
  - [X] Rebased/mergable
  - [X] Tests pass
  - [X] Sign [CLA](https://influxdata.com/community/cla/) (if not already signed)

Connect #

* When clicking on the upload file button in the write data form, nothing
  happens. This is because the div with the outline that says "Drag & Drop a File
  to Upload" is positioned in front of the button with opacity 0, so clicks
  intended for the button are just clicking on that transparent div instead.
* If you drag a file over the window then cancel the drag (usually by pressing
  ESC), the window will not return to its previous state, but stay with the drag
  & drop prompt until the page is reloaded.

* Make it so the drag & drop prompt is always present and the button is moved
  to be below the outlined prompt. The button label has also been changed to
  more closely match that of the drag outline.

Before:

![before screenshot](https://www.dropbox.com/s/t3j76wagracjw99/chronograf-drag-before.png?dl=0)

After:

![after screenshot](https://www.dropbox.com/s/6e68rgba8fq59jw/chronograf-drag-after.png?dl=0)

* Add an `onDragExit` handler to handle the case where the drag is exited
  rather than left.

Signed-off-by: Nathan L Smith <smith@nlsmith.com>
2017-08-11 19:16:20 +00:00
Jared Scheib 812de33be0 Add 'type' to new-sources server flag example 2017-08-11 11:54:16 -07:00
Alex P 2bcee88692 Add button to cell for improved user experience 2017-08-11 11:49:50 -07:00
Nathan L Smith 56f322ec4a Improvements to npm scripts
When trying to run `npm run test:dev`, I noticed that `nodemon` was not found,
so that task will not work unless you've done `npm install -g nodemon`.

Replace `nodemon`, which would watch for changes to files and restart
Karma, with [concurrenty](https://www.npmjs.com/package/concurrently) and
[eslint-watch](https://www.npmjs.com/package/eslint-watch).

The NPM scripts also had some full paths to binaries that were not necessary
which have been replaced with the shorter versions, and short configuration
options that have been replaced with longer ones for readability (`-w` vs
`--watch`, etc.)

The `eslint` package was updated to remove a warning about an incorrect peer
dependency with `eslint-plugin-prettier`.

Signed-off-by: Nathan L Smith <smith@nlsmith.com>
2017-08-11 01:53:37 +00:00
Andrew Watkins ab4ade6fcb Move EmptyQuery to shared dir 2017-08-10 18:23:33 -07:00
Andrew Watkins a6a5346fee Add accidentally removed prop 2017-08-10 18:20:04 -07:00
Andrew Watkins 7ec2b47044 Make QueryTextArea and QueryStatus components 2017-08-10 17:26:38 -07:00
Andrew Watkins 6c9b433e59 Rename QueryEditor to QueryTextArea 2017-08-10 17:19:48 -07:00
Andrew Watkins d258c23907 Separate QueryEditor from SchemaExplorer 2017-08-10 17:10:38 -07:00
Andrew Watkins f9fb707cb9 Make the QueryBuilder an SFC and rename it to SchemaExplorer 2017-08-10 16:51:40 -07:00
Andrew Watkins 12ed98d18c Move active query logic to container 2017-08-10 16:51:40 -07:00
Andrew Watkins 25482246a8 Move addQuery logic to container 2017-08-10 16:51:40 -07:00
Andrew Watkins 0fc115b2ed Make QueryMaker an SFC 2017-08-10 16:51:40 -07:00
Andrew Watkins bbd58716e4 Move empty state to separate component 2017-08-10 16:51:40 -07:00