ant-design-vue/components/grid/Row.jsx

139 lines
3.4 KiB
Vue
Raw Normal View History

2018-03-19 02:16:27 +00:00
2018-03-08 05:55:49 +00:00
import PropTypes from '../_util/vue-types'
import BaseMixin from '../_util/BaseMixin'
// matchMedia polyfill for
// https://github.com/WickyNilliams/enquire.js/issues/82
let enquire = null
if (typeof window !== 'undefined') {
const matchMediaPolyfill = (mediaQuery) => {
return {
media: mediaQuery,
matches: false,
addListener () {
},
2018-03-08 05:55:49 +00:00
removeListener () {
},
2018-03-08 05:55:49 +00:00
}
}
window.matchMedia = window.matchMedia || matchMediaPolyfill
enquire = require('enquire.js')
}
const BreakpointMap = PropTypes.shape({
2018-08-08 02:13:28 +00:00
xs: PropTypes.number,
sm: PropTypes.number,
md: PropTypes.number,
lg: PropTypes.number,
xl: PropTypes.number,
xxl: PropTypes.number,
2018-03-08 05:55:49 +00:00
}).loose
const RowProps = {
gutter: PropTypes.oneOfType([PropTypes.number, BreakpointMap]),
type: PropTypes.oneOf(['flex']),
align: PropTypes.oneOf(['top', 'middle', 'bottom']),
justify: PropTypes.oneOf(['start', 'end', 'center', 'space-around', 'space-between']),
prefixCls: PropTypes.string,
}
const responsiveArray = ['xxl', 'xl', 'lg', 'md', 'sm', 'xs']
const responsiveMap = {
xs: '(max-width: 575px)',
sm: '(min-width: 576px)',
md: '(min-width: 768px)',
lg: '(min-width: 992px)',
xl: '(min-width: 1200px)',
xxl: '(min-width: 1600px)',
}
export default {
2018-04-08 13:17:20 +00:00
name: 'ARow',
2018-03-08 05:55:49 +00:00
mixins: [BaseMixin],
props: {
...RowProps,
gutter: PropTypes.oneOfType([PropTypes.number, BreakpointMap]).def(0),
},
2018-12-09 02:58:50 +00:00
provide () {
return {
rowContext: this,
}
},
2018-03-08 05:55:49 +00:00
data () {
return {
screens: {},
}
},
mounted () {
this.$nextTick(() => {
Object.keys(responsiveMap)
.map((screen) => enquire.register(responsiveMap[screen], {
match: () => {
if (typeof this.gutter !== 'object') {
return
}
this.setState((prevState) => ({
screens: {
...prevState.screens,
[screen]: true,
},
}))
},
unmatch: () => {
if (typeof this.gutter !== 'object') {
return
}
this.setState((prevState) => ({
screens: {
...prevState.screens,
[screen]: false,
},
}))
},
// Keep a empty destory to avoid triggering unmatch when unregister
destroy () {},
},
2018-03-08 05:55:49 +00:00
))
})
},
beforeDestroy () {
Object.keys(responsiveMap)
.map((screen) => enquire.unregister(responsiveMap[screen]))
},
methods: {
getGutter () {
const { gutter } = this
if (typeof gutter === 'object') {
2019-01-03 12:51:56 +00:00
for (let i = 0; i < responsiveArray.length; i++) {
2018-03-08 05:55:49 +00:00
const breakpoint = responsiveArray[i]
2018-08-08 02:13:28 +00:00
if (this.screens[breakpoint] && gutter[breakpoint] !== undefined) {
2018-03-08 05:55:49 +00:00
return gutter[breakpoint]
}
}
}
2018-03-08 05:55:49 +00:00
return gutter
},
2018-03-08 05:55:49 +00:00
},
render () {
const {
type, justify, align,
prefixCls = 'ant-row', $slots,
} = this
const gutter = this.getGutter()
const classes = {
[prefixCls]: !type,
[`${prefixCls}-${type}`]: type,
[`${prefixCls}-${type}-${justify}`]: type && justify,
[`${prefixCls}-${type}-${align}`]: type && align,
}
const rowStyle = gutter > 0 ? {
marginLeft: `${gutter / -2}px`,
marginRight: `${gutter / -2}px`,
} : {}
2018-12-09 02:58:50 +00:00
return <div class={classes} style={rowStyle}>{$slots.default}</div>
2018-03-08 05:55:49 +00:00
},
}
2018-03-19 02:16:27 +00:00