Merge branch 'master' of github.com:9th-js/wcui

master
yutent 2023-03-24 11:07:03 +08:00
commit 183beac037
1 changed files with 70 additions and 34 deletions

View File

@ -13,8 +13,8 @@ class Slider extends Component {
default: 0,
observer() {}
},
max: null,
min: null,
max: 100,
min: 0,
step: 1,
disabled: false,
readonly: false,
@ -75,6 +75,7 @@ class Slider extends Component {
}
}
.tips {
user-select: none;
position: absolute;
top: -100%;
border-radius: 4px;
@ -98,66 +99,101 @@ class Slider extends Component {
}
}
.cursor-default {
cursor: default;
cursor: grabbing !important;
}
`
progress = 0
mounted() {
console.log('slider mounted')
console.log(this.$refs, 'refs')
this.$bar = this.root.querySelector('.bar')
this.$dotWrap = this.root.querySelector('.dot-wrapper')
this.$runway = this.root.querySelector('.runway')
this.$tips = this.root.querySelector('.tips')
this.$bar = this.$refs.bar
this.$dotWrap = this.$refs.dotWrap
this.$runway = this.$refs.runway
this.$tips = this.$refs.tips
}
onMousedown(e) {
console.log(e)
document.documentElement.classList.toggle('cursor-default')
const start = e.clientX
const preValue = this.value
let { value: preValue, step, max, min, progress } = this
preValue = preValue || min
const onMousemove = bind(document, 'mousemove', e => {
const distance = e.clientX - start
const diff = Math.round((distance / this.$runway.clientWidth) * 100)
let newValue = preValue + diff
newValue = Math.floor(newValue)
if (newValue < 0) {
newValue = 0
const scale = distance / this.$runway.clientWidth
const diff = Math.round(scale * (max - min))
let newValue = Math.floor(preValue + diff)
// console.log({ diff, preValue })
let newProgress = progress + Math.floor(scale * 100)
if (newValue < min) {
newValue = min
}
if (newValue > 100) {
newValue = 100
if (newValue > max) {
newValue = max
}
this.$bar.style.width = newValue + '%'
this.$dotWrap.style.left = newValue + '%'
this.$tips.style.left = newValue + '%'
if (newValue % step) {
return
}
// console.warn(newValue)
this.value = newValue
this.setProgress(newProgress)
})
bind(document, 'mouseup', e => {
const onMouseup = bind(document, 'mouseup', () => {
unbind(document, 'mousemove', onMousemove)
document.documentElement.classList.toggle('cursor-default')
unbind(document, 'mouseup', onMouseup)
})
}
onClick(e) {
console.log(e)
if (e.target !== this.$refs.runway) {
return
}
const { max, min, step } = this
const { clientWidth } = e.target
const { offsetX } = e
this.value = Math.floor((offsetX / clientWidth) * 100)
const barWidth = `${this.value}%`
this.$bar.style.width = barWidth
this.$dotWrap.style.left = barWidth
this.$tips.style.left = barWidth
const range = max - min
const scale = offsetX / clientWidth
// console.log(
// {
// scale,
// range
// },
// scale * range + min
// )
let newValue = Math.floor(scale * range + min)
const mod = newValue % step
if (mod) {
const half = step / 2
if (mod > half) {
newValue += step - mod
} else {
newValue -= mod
}
}
this.value = newValue
console.log(scale * 100)
//const progress = Math.floor(scale * 100)
const progress = Math.floor(((newValue - min) / range) * 100)
// console.log({ progress })
this.setProgress(progress)
}
setProgress(val) {
val = Math.floor(val)
val = val > 100 ? 100 : val
val = val < 0 ? 0 : val
this.$bar.style.width = `${val}%`
this.$dotWrap.style.left = `${val}%`
this.$tips.style.left = `${val}%`
this.progress = val
}
render() {
return html`<div class="slider" ref="slider">
<div class="runway" @click=${this.onClick}>
<div class="bar"></div>
<div class="dot-wrapper" @mousedown=${this.onMousedown}>
<div class="dot" ref="dot"></div>
<div ref="runway" class="runway" @click=${this.onClick}>
<div class="bar" ref="bar"></div>
<div class="dot-wrapper" ref="dotWrap" @mousedown=${this.onMousedown}>
<div class="dot"></div>
</div>
</div>
<div class="tips">${this.value}</div>
<div class="tips" ref="tips">${this.value}</div>
</div>`
}
}