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

[dashboard] New, list view (react) #8845

Merged
merged 36 commits into from
Jan 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2fc56c9
adds dashboard listview component
nytai Dec 10, 2019
ea59734
use new api
nytai Dec 12, 2019
e3bf413
use json over rison
nytai Dec 12, 2019
412dcb9
lint
nytai Dec 12, 2019
8827fc2
adds seperate dashboard list view
nytai Dec 14, 2019
b96130d
edit and delete actions
nytai Dec 16, 2019
77164b3
fix lint ignore
nytai Dec 16, 2019
d48f78d
fix common_bootstrap_payload is now a function
nytai Dec 16, 2019
1a34ad1
fix license
nytai Dec 16, 2019
96418f6
fix pylint
nytai Dec 16, 2019
ef0213c
isort
nytai Dec 16, 2019
4224a21
fix tests
nytai Dec 17, 2019
e906583
lint
nytai Dec 17, 2019
604b9e9
lint ts
nytai Dec 18, 2019
bb19037
fix js tests
nytai Dec 18, 2019
f89e267
fix double import from bad rebase
nytai Dec 18, 2019
754b489
fix indent error
nytai Dec 19, 2019
eb4f50e
lookup permissions
nytai Dec 19, 2019
cd9a0fa
generic permission lookup
nytai Dec 19, 2019
bb8f3c9
get tslint to pass
nytai Dec 19, 2019
dae5e3f
adds js specs
nytai Dec 20, 2019
64857a3
lint
nytai Dec 20, 2019
a36d3c1
fix rebase
nytai Dec 20, 2019
b3a14ba
lint
nytai Dec 20, 2019
d8f3943
lint again
nytai Dec 20, 2019
99d321a
fix type errors preventing build
nytai Dec 23, 2019
5dc799e
adds more specs
nytai Jan 4, 2020
fb043e4
fix tslint error
nytai Jan 4, 2020
95a7016
fix null check
nytai Jan 6, 2020
a6a040b
remove unecessary code
nytai Jan 13, 2020
e6de4c8
use translations provided by api
nytai Jan 13, 2020
5a50fcc
more translations
nytai Jan 13, 2020
00551c5
linting
nytai Jan 13, 2020
2485ca0
fix spec
nytai Jan 14, 2020
d026df4
i18n
nytai Jan 15, 2020
8262355
fix register order
nytai Jan 15, 2020
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
15 changes: 9 additions & 6 deletions superset/assets/.babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,19 @@
* specific language governing permissions and limitations
* under the License.
*/
{
{
"sourceMaps": true,
"retainLines": true,
"presets" : ["airbnb", "@babel/preset-react", "@babel/preset-env"],
"plugins": ["lodash", "@babel/plugin-syntax-dynamic-import", "react-hot-loader/babel"],
"presets": ["airbnb", "@babel/preset-react", "@babel/preset-env"],
"plugins": [
"lodash",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties",
"react-hot-loader/babel"
],
"env": {
"test": {
"plugins": [
"babel-plugin-dynamic-import-node"
]
"plugins": ["babel-plugin-dynamic-import-node"]
}
}
}
7 changes: 7 additions & 0 deletions superset/assets/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,11 @@ module.exports = {
'^.+\\.tsx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
globals: {
'ts-jest': {
diagnostics: {
warnOnly: true,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so type errors don't cause jest tests to fail (they're still reported though)

},
},
},
};
Loading