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
5fc00979
Unverified
Commit
5fc00979
authored
7 years ago
by
Kyle Doherty
Browse files
Options
Downloads
Patches
Plain Diff
disable disallowed costs
parent
ac1a3326
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
frontend/src/metabase/xray/components/CostSelect.jsx
+18
-3
18 additions, 3 deletions
frontend/src/metabase/xray/components/CostSelect.jsx
frontend/src/metabase/xray/selectors.js
+2
-0
2 additions, 0 deletions
frontend/src/metabase/xray/selectors.js
with
20 additions
and
3 deletions
frontend/src/metabase/xray/components/CostSelect.jsx
+
18
−
3
View file @
5fc00979
import
React
from
'
react
'
import
cx
from
'
classnames
'
import
{
Link
,
withRouter
}
from
'
react-router
'
import
{
connect
}
from
'
react-redux
'
import
{
getMaxCost
}
from
'
metabase/xray/selectors
'
import
Icon
from
'
metabase/components/Icon
'
import
Tooltip
from
'
metabase/components/Tooltip
'
import
COSTS
from
'
metabase/xray/costs
'
const
CostSelect
=
({
currentCost
,
location
})
=>
{
const
mapStateToProps
=
(
state
)
=>
({
maxCost
:
getMaxCost
(
state
)
})
const
getDisabled
=
(
maxCost
)
=>
{
if
(
maxCost
===
'
approximate
'
)
{
return
[
'
extended
'
,
'
exact
'
]
}
else
if
(
maxCost
===
'
exact
'
)
{
return
[
'
extended
'
]
}
}
const
CostSelect
=
({
currentCost
,
location
,
maxCost
})
=>
{
const
urlWithoutCost
=
location
.
pathname
.
substr
(
0
,
location
.
pathname
.
lastIndexOf
(
'
/
'
))
return
(
<
ol
className
=
"bordered rounded shadowed bg-white flex align-center overflow-hidden"
>
...
...
@@ -23,7 +37,8 @@ const CostSelect = ({ currentCost, location }) => {
key
=
{
cost
}
className
=
{
cx
(
"
flex align-center justify-center cursor-pointer bg-brand-hover text-white-hover transition-background transition-text text-grey-2
"
,
{
'
bg-brand text-white
'
:
currentCost
===
cost
}
{
'
bg-brand text-white
'
:
currentCost
===
cost
},
{
'
disabled
'
:
getDisabled
(
maxCost
).
indexOf
(
cost
)
>
0
}
)
}
>
<
Tooltip
...
...
@@ -43,4 +58,4 @@ const CostSelect = ({ currentCost, location }) => {
)
}
export
default
withRouter
(
CostSelect
)
export
default
connect
(
mapStateToProps
)(
withRouter
(
CostSelect
)
)
This diff is collapsed.
Click to expand it.
frontend/src/metabase/xray/selectors.js
+
2
−
0
View file @
5fc00979
...
...
@@ -114,3 +114,5 @@ export const getTableItem = (state, index = 1) => createSelector(
export
const
getComparisonForField
=
createSelector
export
const
getMaxCost
=
state
=>
state
.
settings
.
values
[
'
xray-max-cost
'
]
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