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
4993382f
Unverified
Commit
4993382f
authored
7 years ago
by
Kyle Doherty
Browse files
Options
Downloads
Patches
Plain Diff
dont redirect on save
parent
dcc3d219
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/dashboard/containers/AutomaticDashboardApp.jsx
+18
-5
18 additions, 5 deletions
...c/metabase/dashboard/containers/AutomaticDashboardApp.jsx
with
18 additions
and
5 deletions
frontend/src/metabase/dashboard/containers/AutomaticDashboardApp.jsx
+
18
−
5
View file @
4993382f
import
React
from
"
react
"
;
import
{
connect
}
from
"
react-redux
"
;
import
{
push
}
from
"
react-router-redux
"
;
import
{
Link
}
from
"
react-router
"
;
import
{
withBackground
}
from
"
metabase/hoc/Background
"
;
import
ActionButton
from
"
metabase/components/ActionButton
"
;
import
Icon
from
"
metabase/components/Icon
"
;
import
cxs
from
"
cxs
"
;
import
{
t
}
from
'
c-3po
'
import
{
Dashboard
}
from
"
./Dashboard
"
;
import
DashboardData
from
"
metabase/dashboard/hoc/DashboardData
"
;
import
Parameters
from
"
metabase/parameters/components/Parameters
"
;
import
{
addUndo
,
createUndo
}
from
'
metabase/redux/undo
'
import
{
DashboardApi
}
from
"
metabase/services
"
;
import
*
as
Urls
from
"
metabase/lib/urls
"
;
import
*
as
Urls
from
"
metabase/lib/urls
"
import
{
dissoc
}
from
"
icepick
"
;
...
...
@@ -68,14 +69,26 @@ const mapStateToProps = (state, props) => ({
dashboardId
:
getDashboardId
(
state
,
props
),
});
@
connect
(
mapStateToProps
,
{
push
})
@
connect
(
mapStateToProps
,
{
addUndo
,
createUndo
})
@
DashboardData
class
AutomaticDashboardApp
extends
React
.
Component
{
save
=
async
()
=>
{
const
{
dashboard
,
push
}
=
this
.
props
;
const
{
dashboard
,
addUndo
,
createUndo
}
=
this
.
props
;
// remove the transient id before trying to save
const
newDashboard
=
await
DashboardApi
.
save
(
dissoc
(
dashboard
,
"
id
"
));
push
(
Urls
.
dashboard
(
newDashboard
.
id
));
addUndo
(
createUndo
({
type
:
'
metabase/automatic-dashboards/link-to-created-object
'
,
message
:
()
=>
<
div
className
=
"flex align-center"
>
<
Icon
name
=
'dashboard'
size
=
{
22
}
className
=
"mr2"
/>
<
Link
className
=
"link"
to
=
{
Urls
.
dashboard
(
newDashboard
.
id
)
}
>
{
t
`View your recently created dashboard`
}
</
Link
>
</
div
>,
action
:
null
})
)
};
render
()
{
...
...
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