button.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <div
  3. class="el-slider__button-wrapper"
  4. @mouseenter="handleMouseEnter"
  5. @mouseleave="handleMouseLeave"
  6. @mousedown="onButtonDown"
  7. @touchstart="onButtonDown"
  8. :class="{ hover: hovering, dragging: dragging }"
  9. :style="wrapperStyle"
  10. ref="button"
  11. tabindex="0"
  12. @focus="handleMouseEnter"
  13. @blur="handleMouseLeave"
  14. @keydown.left="onLeftKeyDown"
  15. @keydown.right="onRightKeyDown"
  16. @keydown.down.prevent="onLeftKeyDown"
  17. @keydown.up.prevent="onRightKeyDown">
  18. <el-tooltip
  19. placement="top"
  20. ref="tooltip"
  21. :popper-class="tooltipClass"
  22. :disabled="!showTooltip">
  23. <span slot="content">{{ formatValue }}</span>
  24. <div
  25. class="el-slider__button"
  26. :class="{ hover: hovering, dragging: dragging }"></div>
  27. </el-tooltip>
  28. </div>
  29. </template>
  30. <script>
  31. // import ElTooltip from 'element-ui/packages/tooltip'
  32. export default {
  33. name: 'ElSliderButton',
  34. components: {
  35. // ElTooltip,
  36. },
  37. props: {
  38. value: {
  39. type: Number,
  40. default: 0,
  41. },
  42. vertical: {
  43. type: Boolean,
  44. default: false,
  45. },
  46. tooltipClass: String,
  47. marks: Object,
  48. },
  49. data() {
  50. return {
  51. hovering: false,
  52. dragging: false,
  53. isClick: false,
  54. startX: 0,
  55. currentX: 0,
  56. startY: 0,
  57. currentY: 0,
  58. startPosition: 0,
  59. newPosition: null,
  60. oldValue: this.value,
  61. }
  62. },
  63. computed: {
  64. disabled() {
  65. return this.$parent.sliderDisabled
  66. },
  67. max() {
  68. return this.$parent.max
  69. },
  70. min() {
  71. return this.$parent.min
  72. },
  73. step() {
  74. return this.$parent.step
  75. },
  76. showTooltip() {
  77. return this.$parent.showTooltip
  78. },
  79. precision() {
  80. return this.$parent.precision
  81. },
  82. currentPosition() {
  83. if (this.marks) {
  84. // 同父组件index中barSize的计算逻辑. 直接从那边抄过来的. 不要在这里改, 在index改完再抄过来.
  85. // 注意父组件的 this.firstValue, 这里是 this.value
  86. const marks = Object.keys(this.marks).map(Number)
  87. // 找出目标值位于marks的那个档位, 即 即将到达哪一个'档'
  88. const index = marks.findIndex(i => this.value < i)
  89. if (index === -1) return '100%'
  90. // 经过后一个档位之后占总进度条的比例 + (当前值超出后一个档位的差值 / 前一个档位与后一个档位的差值) / (进度被marks划分成的档位数量)
  91. // 上述公式要除档位数量是因为, 当前值与档位差值占单个档位区间的百分比 !== 单个区间值占总进度条的百分比
  92. const value =
  93. (index - 1) / (marks.length - 1) +
  94. (this.value - marks[index - 1]) /
  95. (marks[index] - marks[index - 1]) /
  96. (marks.length - 1)
  97. return value > 1 ? '100%' : `${value * 100}%`
  98. } else {
  99. // 这里是原本的逻辑. 没有传marks的.
  100. return `${((this.value - this.min) / (this.max - this.min)) * 100}%`
  101. }
  102. },
  103. enableFormat() {
  104. return this.$parent.formatTooltip instanceof Function
  105. },
  106. formatValue() {
  107. return (
  108. (this.enableFormat && this.$parent.formatTooltip(this.value)) ||
  109. this.value
  110. )
  111. },
  112. wrapperStyle() {
  113. return this.vertical
  114. ? { bottom: this.currentPosition }
  115. : { left: this.currentPosition }
  116. },
  117. },
  118. watch: {
  119. dragging(val) {
  120. this.$parent.dragging = val
  121. },
  122. },
  123. methods: {
  124. displayTooltip() {
  125. this.$refs.tooltip && (this.$refs.tooltip.showPopper = true)
  126. },
  127. hideTooltip() {
  128. this.$refs.tooltip && (this.$refs.tooltip.showPopper = false)
  129. },
  130. handleMouseEnter() {
  131. this.hovering = true
  132. this.displayTooltip()
  133. },
  134. handleMouseLeave() {
  135. this.hovering = false
  136. this.hideTooltip()
  137. },
  138. onButtonDown(event) {
  139. if (this.disabled) return
  140. event.preventDefault()
  141. this.onDragStart(event)
  142. window.addEventListener('mousemove', this.onDragging)
  143. window.addEventListener('touchmove', this.onDragging)
  144. window.addEventListener('mouseup', this.onDragEnd)
  145. window.addEventListener('touchend', this.onDragEnd)
  146. window.addEventListener('contextmenu', this.onDragEnd)
  147. },
  148. onLeftKeyDown() {
  149. if (this.disabled) return
  150. this.newPosition =
  151. parseFloat(this.currentPosition) -
  152. (this.step / (this.max - this.min)) * 100
  153. this.setPosition(this.newPosition)
  154. this.$parent.emitChange()
  155. },
  156. onRightKeyDown() {
  157. if (this.disabled) return
  158. this.newPosition =
  159. parseFloat(this.currentPosition) +
  160. (this.step / (this.max - this.min)) * 100
  161. this.setPosition(this.newPosition)
  162. this.$parent.emitChange()
  163. },
  164. onDragStart(event) {
  165. this.dragging = true
  166. this.isClick = true
  167. if (event.type === 'touchstart') {
  168. event.clientY = event.touches[0].clientY
  169. event.clientX = event.touches[0].clientX
  170. }
  171. if (this.vertical) {
  172. this.startY = event.clientY
  173. } else {
  174. this.startX = event.clientX
  175. }
  176. this.startPosition = parseFloat(this.currentPosition)
  177. this.newPosition = this.startPosition
  178. },
  179. onDragging(event) {
  180. if (this.dragging) {
  181. this.isClick = false
  182. this.displayTooltip()
  183. this.$parent.resetSize()
  184. let diff = 0
  185. if (event.type === 'touchmove') {
  186. event.clientY = event.touches[0].clientY
  187. event.clientX = event.touches[0].clientX
  188. }
  189. if (this.vertical) {
  190. this.currentY = event.clientY
  191. diff = ((this.startY - this.currentY) / this.$parent.sliderSize) * 100
  192. } else {
  193. this.currentX = event.clientX
  194. diff = ((this.currentX - this.startX) / this.$parent.sliderSize) * 100
  195. }
  196. this.newPosition = this.startPosition + diff
  197. this.setPosition(this.newPosition)
  198. }
  199. },
  200. onDragEnd() {
  201. if (this.dragging) {
  202. /*
  203. * 防止在 mouseup 后立即触发 click,导致滑块有几率产生一小段位移
  204. * 不使用 preventDefault 是因为 mouseup 和 click 没有注册在同一个 DOM 上
  205. */
  206. setTimeout(() => {
  207. this.dragging = false
  208. this.hideTooltip()
  209. if (!this.isClick) {
  210. this.setPosition(this.newPosition)
  211. this.$parent.emitChange()
  212. }
  213. }, 0)
  214. window.removeEventListener('mousemove', this.onDragging)
  215. window.removeEventListener('touchmove', this.onDragging)
  216. window.removeEventListener('mouseup', this.onDragEnd)
  217. window.removeEventListener('touchend', this.onDragEnd)
  218. window.removeEventListener('contextmenu', this.onDragEnd)
  219. }
  220. },
  221. setPosition(newPosition) {
  222. if (newPosition === null || isNaN(newPosition)) return
  223. if (newPosition < 0) {
  224. newPosition = 0
  225. } else if (newPosition > 100) {
  226. newPosition = 100
  227. }
  228. const lengthPerStep = 100 / ((this.max - this.min) / this.step)
  229. const steps = Math.round(newPosition / lengthPerStep)
  230. let value =
  231. steps * lengthPerStep * (this.max - this.min) * 0.01 + this.min
  232. if (this.marks) {
  233. // 处理传递marks时的逻辑. 没有传marks的保持原样.
  234. // 有marks时无视原计算逻辑. 重新赋值
  235. const marks = Object.keys(this.marks).map((current, index, arr) => {
  236. return {
  237. value: Number(current),
  238. perc: (100 * index) / (arr.length - 1),
  239. }
  240. })
  241. // 找出目标值位于marks的那个档位, 即 即将到达哪一个'档'
  242. if (newPosition === 100) {
  243. value = marks[marks.length - 1].value
  244. } else {
  245. const index = marks.findIndex(item => item.perc > newPosition)
  246. // 后一个区间的代表值 + ((区间数量 * 超出后一个区间的百分比值 / 100) * 所处区间的值差)
  247. if (index === -1) {
  248. // 在最后一个区间
  249. value =
  250. marks[marks.length - 2].value +
  251. (marks.length - 1) *
  252. (((newPosition - marks[marks.length - 2].perc) / 100) *
  253. (marks[marks.length - 1].value -
  254. marks[marks.length - 2].value))
  255. } else {
  256. value =
  257. marks[index - 1].value +
  258. (marks.length - 1) *
  259. (((newPosition - marks[index - 1].perc) / 100) *
  260. (marks[index].value - marks[index - 1].value))
  261. }
  262. }
  263. }
  264. value = parseFloat(value.toFixed(this.precision))
  265. this.$emit('input', value)
  266. this.$nextTick(() => {
  267. this.displayTooltip()
  268. this.$refs.tooltip && this.$refs.tooltip.updatePopper()
  269. })
  270. if (!this.dragging && this.value !== this.oldValue) {
  271. this.oldValue = this.value
  272. }
  273. },
  274. },
  275. }
  276. </script>