Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
008bfd48
Commit
008bfd48
authored
9 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Patches
Plain Diff
download link working again.
parent
454c2626
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
resources/frontend_client/app/card/card.controllers.js
+6
-7
6 additions, 7 deletions
resources/frontend_client/app/card/card.controllers.js
src/metabase/api/meta/dataset.clj
+2
-1
2 additions, 1 deletion
src/metabase/api/meta/dataset.clj
with
8 additions
and
8 deletions
resources/frontend_client/app/card/card.controllers.js
+
6
−
7
View file @
008bfd48
...
...
@@ -182,13 +182,6 @@ CardControllers.controller('CardDetail', [
renderAll
();
}
},
getDownloadLink
:
function
()
{
// TODO: this should be conditional and only return a valid url if we have valid
// data to be downloaded. otherwise return something falsey
if
(
queryResult
)
{
return
'
/api/meta/dataset/csv/?query=
'
+
encodeURIComponent
(
JSON
.
stringify
(
card
.
dataset_query
));
}
}
};
...
...
@@ -261,6 +254,12 @@ CardControllers.controller('CardDetail', [
// ensure rendering model is up to date
headerModel
.
card
=
card
;
if
(
queryResult
)
{
headerModel
.
downloadLink
=
'
/api/meta/dataset/csv?query=
'
+
encodeURIComponent
(
JSON
.
stringify
(
card
.
dataset_query
));
}
else
{
headerModel
.
downloadLink
=
null
;
}
React
.
render
(
new
QueryHeader
(
headerModel
),
document
.
getElementById
(
'
react_qb_header
'
));
};
...
...
This diff is collapsed.
Click to expand it.
src/metabase/api/meta/dataset.clj
+
2
−
1
View file @
008bfd48
...
...
@@ -18,7 +18,8 @@
[
query
]
{
query
[
Required
String->Dict
]}
(
read-check
Database
(
:database
query
))
(
let
[{{
:keys
[
columns
rows
]}
:data
:keys
[
status
]
:as
response
}
(
driver/dataset-query
query
{
:executed_by
*current-user-id*
})]
(
let
[{{
:keys
[
columns
rows
]}
:data
:keys
[
status
]
:as
response
}
(
driver/dataset-query
query
{
:executed_by
*current-user-id*
})
columns
(
map
name
columns
)]
; turn keywords into strings, otherwise we get colons in our output
(
if
(
=
status
:completed
)
;; successful query, send CSV file
{
:status
200
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment