ant-design-vue/components/align/Align.vue

122 lines
2.9 KiB
Vue
Raw Normal View History

2017-12-12 07:05:45 +00:00
<script>
2017-12-26 11:04:28 +00:00
import PropTypes from '../_util/vue-types'
2017-12-12 07:05:45 +00:00
import align from 'dom-align'
2017-12-25 10:08:36 +00:00
import clonedeep from 'lodash.clonedeep'
2017-12-12 07:05:45 +00:00
import addEventListener from '../_util/Dom/addEventListener'
2017-12-14 04:13:15 +00:00
import { cloneElement } from '../_util/vnode.js'
2017-12-13 02:06:26 +00:00
import isWindow from './isWindow'
2017-12-12 07:05:45 +00:00
function noop () {
}
function buffer (fn, ms) {
let timer
function clear () {
if (timer) {
clearTimeout(timer)
timer = null
}
}
function bufferFn () {
clear()
timer = setTimeout(fn, ms)
}
bufferFn.clear = clear
return bufferFn
}
export default {
props: {
childrenProps: PropTypes.object,
align: PropTypes.object.isRequired,
target: PropTypes.func.def(noop),
monitorBufferTime: PropTypes.number.def(50),
monitorWindowResize: PropTypes.bool.def(false),
disabled: PropTypes.bool.def(false),
},
2017-12-13 02:06:26 +00:00
watch: {
'$props': {
2017-12-25 10:08:36 +00:00
handler: function (props) {
const prevProps = this.prevProps
2017-12-13 02:06:26 +00:00
this.$nextTick(() => {
let reAlign = false
if (!props.disabled) {
if (prevProps.disabled || prevProps.align !== props.align) {
reAlign = true
} else {
const lastTarget = prevProps.target()
const currentTarget = props.target()
if (isWindow(lastTarget) && isWindow(currentTarget)) {
reAlign = false
} else if (lastTarget !== currentTarget) {
reAlign = true
}
}
}
2017-12-12 07:05:45 +00:00
2017-12-13 02:06:26 +00:00
if (reAlign) {
this.forceAlign()
}
if (props.monitorWindowResize && !props.disabled) {
this.startMonitorWindowResize()
} else {
this.stopMonitorWindowResize()
}
})
},
deep: true,
},
},
2017-12-12 07:05:45 +00:00
mounted () {
const props = this.$props
// if parent ref not attached .... use document.getElementById
this.forceAlign()
if (!props.disabled && props.monitorWindowResize) {
this.startMonitorWindowResize()
}
},
2017-12-13 02:06:26 +00:00
beforeDestroy () {
2017-12-12 07:05:45 +00:00
this.stopMonitorWindowResize()
},
methods: {
startMonitorWindowResize () {
if (!this.resizeHandler) {
this.bufferMonitor = buffer(this.forceAlign, this.$props.monitorBufferTime)
this.resizeHandler = addEventListener(window, 'resize', this.bufferMonitor)
}
},
stopMonitorWindowResize () {
if (this.resizeHandler) {
this.bufferMonitor.clear()
this.resizeHandler.remove()
this.resizeHandler = null
}
},
forceAlign () {
const props = this.$props
if (!props.disabled) {
const source = this.$el
this.$emit('align', source, align(source, props.target(), props.align))
}
},
},
render () {
2017-12-25 10:08:36 +00:00
this.prevProps = clonedeep(this.$props)
2017-12-12 07:05:45 +00:00
const { childrenProps } = this.$props
const child = this.$slots.default[0]
if (childrenProps) {
2017-12-25 10:08:36 +00:00
return cloneElement(child, { props: childrenProps })
2017-12-12 07:05:45 +00:00
}
return child
},
}
</script>