-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: The 0 in pvc autosizer input can not be deleted (#4227)
fix:The 0 in pvc autosizer input can not be deleted Signed-off-by: harrisonliu5 <[email protected]>
- Loading branch information
1 parent
87d7b21
commit d2e0f1b
Showing
4 changed files
with
447 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,346 @@ | ||
import React from 'react' | ||
import PropTypes from 'prop-types' | ||
import classNames from 'classnames' | ||
import { isUndefined, isEmpty, clone, throttle } from 'lodash' | ||
|
||
import { Tooltip } from '@kube-design/components' | ||
import NumberInput from 'components/Inputs/NumberInput' | ||
|
||
export default class Slider extends React.Component { | ||
static propTypes = { | ||
value: PropTypes.oneOfType([ | ||
PropTypes.number, | ||
PropTypes.string, | ||
PropTypes.arrayOf( | ||
PropTypes.oneOfType([PropTypes.number, PropTypes.string]) | ||
), | ||
]), | ||
defaultValue: PropTypes.oneOfType([ | ||
PropTypes.number, | ||
PropTypes.string, | ||
PropTypes.arrayOf( | ||
PropTypes.oneOfType([PropTypes.number, PropTypes.string]) | ||
), | ||
]), | ||
min: PropTypes.number, | ||
max: PropTypes.number, | ||
step: PropTypes.number, | ||
marks: PropTypes.object, | ||
unit: PropTypes.string, | ||
range: PropTypes.bool, | ||
hasTooltip: PropTypes.bool, | ||
className: PropTypes.string, | ||
style: PropTypes.object, | ||
railStyle: PropTypes.object, | ||
handlerStyle: PropTypes.object, | ||
trackStyle: PropTypes.object, | ||
onChange: PropTypes.func, | ||
} | ||
|
||
static defaultProps = { | ||
min: 0, | ||
unit: '', | ||
step: 1, | ||
marks: {}, | ||
range: false, | ||
hasTooltip: false, | ||
className: '', | ||
style: {}, | ||
railStyle: {}, | ||
handlerStyle: {}, | ||
trackStyle: {}, | ||
onChange() {}, | ||
} | ||
|
||
constructor(props) { | ||
super(props) | ||
|
||
this.state = this.getStateFromProps() | ||
|
||
const index = String(props.step).indexOf('.') | ||
this.precision = | ||
index === -1 ? 0 : String(props.step).slice(index).length - 1 | ||
|
||
this.ref = React.createRef() | ||
} | ||
|
||
getValueFromPercent(percent) { | ||
const { min, max, step } = this.props | ||
const value = ((max - min) * percent) / 100 + min | ||
return Math.min( | ||
(value - ((value - min) % step)).toFixed(this.precision), | ||
max | ||
) | ||
} | ||
|
||
getValuePercent(value) { | ||
const { min, max } = this.props | ||
return Math.min((value - min) / (max - min), 1) | ||
} | ||
|
||
getStateFromProps() { | ||
const { unit, range, min, value: _value, defaultValue } = this.props | ||
let value = clone(!isUndefined(_value) ? _value : defaultValue) | ||
|
||
let left | ||
let right | ||
let stateValue | ||
|
||
if (range) { | ||
if (!value) { | ||
value = [min, min] | ||
} else { | ||
value[0] = Number(String(value[0]).replace(unit, '')) | ||
value[1] = Number(String(value[1]).replace(unit, '')) | ||
} | ||
left = this.getValuePercent(value[0]) * 100 | ||
right = this.getValuePercent(value[1]) * 100 | ||
stateValue = value | ||
} else { | ||
if (!value) { | ||
value = min | ||
} else { | ||
value = Number(String(value).replace(unit, '')) | ||
} | ||
left = 0 | ||
right = this.getValuePercent(value) * 100 | ||
stateValue = [min, value] | ||
} | ||
|
||
return { left, right, value: stateValue, originValue: _value } | ||
} | ||
|
||
componentDidMount() { | ||
if (this.ref && this.ref.current) { | ||
this.ref.current.addEventListener('mousedown', this.handleMouseDown) | ||
} | ||
window.addEventListener('resize', this.handleResize) | ||
} | ||
|
||
componentDidUpdate(prevProps, prevState) { | ||
if (this.props.value !== prevState.originValue) { | ||
this.setState(this.getStateFromProps()) | ||
} | ||
} | ||
|
||
componentWillUnmount() { | ||
document.removeEventListener('mousedown', this.handleMouseDown) | ||
document.removeEventListener('mousemove', this.handleMouseMove) | ||
document.removeEventListener('mouseup', this.handleMouseUp) | ||
window.removeEventListener('resize', this.handleResize) | ||
} | ||
|
||
triggerChange = ({ left, right }) => { | ||
const { range, onChange } = this.props | ||
|
||
const value = [ | ||
this.getValueFromPercent(left), | ||
this.getValueFromPercent(right), | ||
] | ||
|
||
if (value[0] !== this.state.value[0] || value[1] !== this.state.value[1]) { | ||
this.setState( | ||
{ | ||
left: this.getValuePercent(value[0]) * 100, | ||
right: this.getValuePercent(value[1]) * 100, | ||
value, | ||
}, | ||
() => { | ||
onChange(range ? value : value[1]) | ||
} | ||
) | ||
} | ||
} | ||
|
||
handleResize = () => { | ||
this.rect = this.ref.current.getBoundingClientRect() | ||
} | ||
|
||
handleMouseDown = e => { | ||
document.removeEventListener('mouseup', this.handleMouseUp) | ||
document.addEventListener('mouseup', this.handleMouseUp) | ||
|
||
if (this.ref.current.contains(e.target)) { | ||
this.rect = this.ref.current.getBoundingClientRect() | ||
|
||
if (e.target.getAttribute('role') === 'slider') { | ||
document.addEventListener('mousemove', this.handleMouseMove) | ||
this.type = e.target.dataset.type | ||
return | ||
} | ||
|
||
const { left, right } = this.state | ||
const { range } = this.props | ||
|
||
let dx = ((e.x - this.rect.x) / this.rect.width) * 100 | ||
if (dx > this.endPercent) { | ||
dx = 100 | ||
} | ||
|
||
const middle = range ? left + right / 2 : 0 | ||
this.triggerChange( | ||
dx < middle ? { left: dx, right } : { left, right: dx } | ||
) | ||
} | ||
} | ||
|
||
handleMouseMove = throttle(e => { | ||
const { range } = this.props | ||
const { left, right } = this.state | ||
let percent = ((e.x - this.rect.x) * 100) / this.rect.width | ||
|
||
if (percent > this.endPercent) { | ||
percent = 100 | ||
} | ||
|
||
if (percent < 0) { | ||
percent = 0 | ||
} | ||
|
||
if (this.type === 'left' && range) { | ||
if (percent >= right) { | ||
this.type = 'right' | ||
|
||
return this.triggerChange({ | ||
left: right, | ||
right: percent, | ||
}) | ||
} | ||
|
||
return this.triggerChange({ | ||
left: percent, | ||
right, | ||
}) | ||
} | ||
|
||
if (percent <= left) { | ||
this.type = 'left' | ||
|
||
return this.triggerChange({ | ||
left: percent, | ||
right: left, | ||
}) | ||
} | ||
|
||
return this.triggerChange({ | ||
left, | ||
right: percent, | ||
}) | ||
}, 80) | ||
|
||
handleMouseUp = () => { | ||
document.removeEventListener('mousemove', this.handleMouseMove) | ||
} | ||
|
||
handleInputChange = value => { | ||
const { min, unit, onChange } = this.props | ||
const _value = value === '' ? '' : Number(value) | ||
|
||
this.setState( | ||
{ | ||
value: [min, _value], | ||
left: 0, | ||
right: this.getValuePercent(Number(value)) * 100, | ||
}, | ||
() => { | ||
onChange(`${value || 0}${unit}`) | ||
} | ||
) | ||
} | ||
|
||
renderSlider(type) { | ||
const { hasTooltip, handlerStyle, unit } = this.props | ||
const { value } = this.state | ||
const percent = this.state[type] | ||
|
||
const slider = ( | ||
<div | ||
className="slider-handler" | ||
role="slider" | ||
data-type={type} | ||
style={{ ...handlerStyle, left: `calc(${percent}% - 10px)` }} | ||
/> | ||
) | ||
|
||
if (!hasTooltip) { | ||
return slider | ||
} | ||
|
||
const tip = `${type === 'left' ? value[0] : value[1]} ${unit}` | ||
|
||
return <Tooltip content={tip}>{slider}</Tooltip> | ||
} | ||
|
||
renderMarks() { | ||
const { marks, max, min } = this.props | ||
|
||
if (isEmpty(marks)) { | ||
return null | ||
} | ||
|
||
return ( | ||
<div className="slider-marks"> | ||
{Object.keys(marks).map(key => ( | ||
<span | ||
key={key} | ||
style={{ | ||
left: `${100 * Math.min((key - min) / (max - min), 1)}%`, | ||
}} | ||
> | ||
{marks[key]} | ||
</span> | ||
))} | ||
</div> | ||
) | ||
} | ||
|
||
render() { | ||
const { left, right, value } = this.state | ||
const { | ||
className, | ||
style, | ||
railStyle, | ||
trackStyle, | ||
range, | ||
unit, | ||
withInput, | ||
min, | ||
max, | ||
} = this.props | ||
|
||
return ( | ||
<div className="slider-wrapper"> | ||
<div | ||
className={classNames('slider', className)} | ||
ref={this.ref} | ||
style={style} | ||
> | ||
<div className="slider-rail" style={railStyle} /> | ||
<div | ||
className="slider-track" | ||
role="track" | ||
style={{ | ||
...trackStyle, | ||
left: `${left}%`, | ||
width: `${right - left}%`, | ||
}} | ||
/> | ||
{range && this.renderSlider('left')} | ||
{this.renderSlider('right')} | ||
{this.renderMarks()} | ||
</div> | ||
{withInput && ( | ||
<div className="has-icons-right"> | ||
<NumberInput | ||
value={value[1]} | ||
onChange={this.handleInputChange} | ||
max={max} | ||
min={min} | ||
/> | ||
{unit && <span className="is-right">{unit}</span>} | ||
</div> | ||
)} | ||
</div> | ||
) | ||
} | ||
} |
Oops, something went wrong.