Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: error bands support to graphs (all except pie) #1404

Closed
wants to merge 34 commits into from
Closed
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c2cea21
Initial Webpack setup
arikfr Oct 30, 2016
7282d17
Migrate filters
arikfr Oct 30, 2016
a696086
Migrated services & app header component
arikfr Oct 30, 2016
bef9659
First page implemented (home)
arikfr Oct 30, 2016
9effcfe
Separate npm modules to their own JS file
arikfr Oct 31, 2016
4346a66
Initial config
arikfr Oct 31, 2016
83415cb
Support for pushstate in dev server
arikfr Oct 31, 2016
5199c00
Queries page
arikfr Oct 31, 2016
5856a9e
Add alerts and admin pages
arikfr Nov 2, 2016
42012c9
Visualzations base & table visualization
arikfr Nov 4, 2016
5037470
working version of chart visualization
arikfr Nov 6, 2016
1191ce0
Remove unused test code
arikfr Nov 6, 2016
f8fe124
Remove code from rd_ui that was already migrated to frontend
arikfr Nov 7, 2016
4eee91b
Query snippets pages
arikfr Nov 7, 2016
eea0d6b
Add users list page
arikfr Nov 7, 2016
5430317
User show page
arikfr Nov 8, 2016
a67a13e
new user page
arikfr Nov 8, 2016
5668bf6
Fix new user form to show errors
arikfr Nov 9, 2016
fadfd06
Migrate the group list and show page
arikfr Nov 9, 2016
965ddde
remove edit-in-place directive
arikfr Nov 9, 2016
4c11023
Desitnations list
arikfr Nov 9, 2016
2433afe
Destinations editor
arikfr Nov 9, 2016
a8aab67
data sources pages
arikfr Nov 9, 2016
c067107
First version of query pages
arikfr Nov 9, 2016
68fa6ed
Query view/edit screens
arikfr Nov 13, 2016
b9f633e
Add widget dialog
arikfr Nov 14, 2016
ef0ab36
Make ui-sortable work again
arikfr Nov 14, 2016
3cd6d67
Make create dashboard work
arikfr Nov 16, 2016
0e43dd9
autofocus directive
arikfr Nov 16, 2016
ba4086e
add back the vendor scripts file
arikfr Nov 16, 2016
69dd64a
Adding errors to graphs (all except pie)
luke14free Nov 17, 2016
55e0a63
Fixing var naming issue and removing unused variable
luke14free Nov 18, 2016
e8b7a4b
Finalizing naming issues
luke14free Nov 18, 2016
1f72273
Set errors only if they are available
luke14free Nov 23, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ upload:

test:
nosetests --with-coverage --cover-package=redash tests/
#grunt test
3 changes: 3 additions & 0 deletions frontend/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015", "stage-2"]
}
2 changes: 2 additions & 0 deletions frontend/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/*.js
config/*.js
15 changes: 15 additions & 0 deletions frontend/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
root: true,
extends: 'airbnb-base',
env: {
"browser": true,
"node": true
},
rules: {
// allow debugger during development
'no-param-reassign': 0,
'no-mixed-operators': 0,
'no-underscore-dangle': 0,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
File renamed without changes.
Loading