Skip to content
Snippets Groups Projects
Unverified Commit 5fc00979 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

disable disallowed costs

parent ac1a3326
No related branches found
No related tags found
No related merge requests found
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))
......@@ -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']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment