feat: update affix

pull/2351/head
tanjinzhou 2020-06-03 18:36:18 +08:00
parent 8cbd2c0035
commit 4682cccc4a
4 changed files with 27 additions and 81 deletions

View File

@ -1,3 +1,4 @@
import { inject } from 'vue';
import PropTypes from '../_util/vue-types'; import PropTypes from '../_util/vue-types';
import classNames from 'classnames'; import classNames from 'classnames';
import omit from 'omit.js'; import omit from 'omit.js';
@ -5,7 +6,6 @@ import ResizeObserver from '../vc-resize-observer';
import BaseMixin from '../_util/BaseMixin'; import BaseMixin from '../_util/BaseMixin';
import throttleByAnimationFrame from '../_util/throttleByAnimationFrame'; import throttleByAnimationFrame from '../_util/throttleByAnimationFrame';
import { ConfigConsumerProps } from '../config-provider'; import { ConfigConsumerProps } from '../config-provider';
import Base from '../base';
import warning from '../_util/warning'; import warning from '../_util/warning';
import { import {
addObserveTarget, addObserveTarget,
@ -31,7 +31,7 @@ const AffixProps = {
/** 固定状态改变时触发的回调函数 */ /** 固定状态改变时触发的回调函数 */
// onChange?: (affixed?: boolean) => void; // onChange?: (affixed?: boolean) => void;
/** 设置 Affix 需要监听其滚动事件的元素,值为一个返回对应 DOM 元素的函数 */ /** 设置 Affix 需要监听其滚动事件的元素,值为一个返回对应 DOM 元素的函数 */
target: PropTypes.func.def(getDefaultTarget), target: PropTypes.func.def(() => getDefaultTarget),
prefixCls: PropTypes.string, prefixCls: PropTypes.string,
}; };
const AffixStatus = { const AffixStatus = {
@ -42,8 +42,10 @@ const Affix = {
name: 'AAffix', name: 'AAffix',
props: AffixProps, props: AffixProps,
mixins: [BaseMixin], mixins: [BaseMixin],
inject: { setup() {
configProvider: { default: () => ConfigConsumerProps }, return {
configProvider: inject('configProvider', ConfigConsumerProps),
};
}, },
data() { data() {
return { return {
@ -238,9 +240,7 @@ const Affix = {
[getPrefixCls('affix', prefixCls)]: affixStyle, [getPrefixCls('affix', prefixCls)]: affixStyle,
}); });
const props = { const props = omit($props, ['prefixCls', 'offsetTop', 'offsetBottom', 'target']);
attrs: omit($props, ['prefixCls', 'offsetTop', 'offsetBottom', 'target']),
};
return ( return (
<ResizeObserver <ResizeObserver
onResize={() => { onResize={() => {
@ -249,7 +249,7 @@ const Affix = {
> >
<div {...props} style={placeholderStyle} ref="placeholderNode"> <div {...props} style={placeholderStyle} ref="placeholderNode">
<div class={className} ref="fixedNode" style={affixStyle}> <div class={className} ref="fixedNode" style={affixStyle}>
{$slots.default} {$slots.default && $slots.default()}
</div> </div>
</div> </div>
</ResizeObserver> </ResizeObserver>
@ -258,9 +258,8 @@ const Affix = {
}; };
/* istanbul ignore next */ /* istanbul ignore next */
Affix.install = function(Vue) { Affix.install = function(app) {
Vue.use(Base); app.component(Affix.name, Affix);
Vue.component(Affix.name, Affix);
}; };
export default Affix; export default Affix;

View File

@ -78,7 +78,7 @@ const VueResizeObserver = {
}, },
render() { render() {
return this.$slots.default[0]; return this.$slots.default && this.$slots.default()[0];
}, },
}; };

View File

@ -1,80 +1,26 @@
<template> <template>
<div> <div>
<a-button type="primary" @click="showDrawer"> <a-affix :offset-top="top">
Open <a-button type="primary" @click="top += 10">
Affix top
</a-button> </a-button>
<a-drawer </a-affix>
title="Multi-level drawer" <br />
width="520" <a-affix :offset-bottom="bottom">
:closable="false" <a-button type="primary" @click="bottom += 10">
:visible="visible" Affix bottom
style="color: red"
@close="onClose"
>
<template v-slot:handle>
<a-button @click="() => {}">
hahah
</a-button> </a-button>
</template> </a-affix>
<a-button type="primary" @click="showChildrenDrawer">
Two-level drawer
</a-button>
<a-drawer
title="Two-level Drawer"
width="320"
:closable="false"
:visible="childrenDrawer"
@close="onChildrenDrawerClose"
>
<a-button type="primary" @click="showChildrenDrawer">
This is two-level drawer
</a-button>
</a-drawer>
<div
:style="{
position: 'absolute',
bottom: 0,
width: '100%',
borderTop: '1px solid #e8e8e8',
padding: '10px 16px',
textAlign: 'right',
left: 0,
background: '#fff',
borderRadius: '0 0 4px 4px',
boxSizing: 'border-box',
}"
>
<a-button style="marginRight: 8px" @click="onClose">
Cancel
</a-button>
<a-button type="primary" @click="onClose">
Submit
</a-button>
</div>
</a-drawer>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
visible: false, top: 10,
childrenDrawer: false, bottom: 10,
}; };
}, },
methods: {
showDrawer() {
this.visible = true;
},
onClose() {
this.visible = false;
},
showChildrenDrawer() {
this.childrenDrawer = true;
},
onChildrenDrawerClose() {
this.childrenDrawer = false;
},
},
}; };
</script> </script>

View File

@ -3,12 +3,13 @@ import { createApp } from 'vue';
import App from './App.vue'; import App from './App.vue';
import Button from 'ant-design-vue/button'; import Button from 'ant-design-vue/button';
import Drawer from 'ant-design-vue/drawer'; import Drawer from 'ant-design-vue/drawer';
import Affix from 'ant-design-vue/affix';
import ConfigProvider from 'ant-design-vue/config-provider'; import ConfigProvider from 'ant-design-vue/config-provider';
import 'ant-design-vue/button/style/index.less'; import 'ant-design-vue/style.js';
import 'ant-design-vue/drawer/style/index.less';
createApp(App) createApp(App)
.use(Button) .use(Button)
.use(ConfigProvider) .use(ConfigProvider)
.use(Drawer) .use(Drawer)
.use(Affix)
.mount('#app'); .mount('#app');