ant-design-vue/components/config-provider/index.jsx

77 lines
1.9 KiB
Vue
Raw Normal View History

2019-03-15 07:12:28 +00:00
import Vue from 'vue';
2019-01-12 03:33:27 +00:00
import PropTypes from '../_util/vue-types';
2019-04-10 05:28:07 +00:00
import { filterEmpty, getComponentFromProp } from '../_util/props-util';
import defaultRenderEmpty from './renderEmpty';
2019-01-02 12:13:25 +00:00
2019-03-15 07:12:28 +00:00
function getWatch(keys = []) {
const watch = {};
keys.forEach(k => {
watch[k] = function() {
this._proxyVm._data[k] = value;
};
});
return watch;
}
2019-01-02 12:13:25 +00:00
const ConfigProvider = {
name: 'AConfigProvider',
props: {
getPopupContainer: PropTypes.func,
prefixCls: PropTypes.string,
renderEmpty: PropTypes.any,
csp: PropTypes.any,
autoInsertSpaceInButton: PropTypes.bool,
2019-01-02 12:13:25 +00:00
},
2019-01-12 03:33:27 +00:00
provide() {
2019-03-15 07:12:28 +00:00
const _self = this;
this._proxyVm = new Vue({
data() {
return {
..._self.$props,
getPrefixCls: _self.getPrefixCls,
renderEmpty: _self.renderEmptyComponent,
};
},
});
2019-01-02 12:13:25 +00:00
return {
2019-03-15 07:12:28 +00:00
configProvider: this._proxyVm._data,
2019-01-12 03:33:27 +00:00
};
2019-01-02 12:13:25 +00:00
},
2019-03-15 07:12:28 +00:00
watch: {
...getWatch([
'prefixCls',
'csp',
'autoInsertSpaceInButton',
]),
},
2019-03-15 02:04:14 +00:00
methods: {
renderEmptyComponent() {
2019-04-10 05:28:07 +00:00
const customRender = getComponentFromProp(this,'renderEmpty');
2019-03-14 13:21:58 +00:00
return this.$props.renderEmpty || customRender || defaultRenderEmpty;
},
getPrefixCls(suffixCls, customizePrefixCls) {
const { prefixCls = 'ant' } = this.$props;
if (customizePrefixCls) return customizePrefixCls;
return suffixCls ? `${prefixCls}-${suffixCls}` : prefixCls;
},
},
2019-01-12 03:33:27 +00:00
render() {
return this.$slots.default ? filterEmpty(this.$slots.default) : null;
},
};
export const ConfigConsumerProps = {
getPrefixCls: (suffixCls, customizePrefixCls) => {
if (customizePrefixCls) return customizePrefixCls;
return `ant-${suffixCls}`;
2019-01-02 12:13:25 +00:00
},
2019-03-14 13:21:58 +00:00
renderEmpty: defaultRenderEmpty,
2019-01-12 03:33:27 +00:00
};
2019-01-02 12:13:25 +00:00
/* istanbul ignore next */
2019-01-12 03:33:27 +00:00
ConfigProvider.install = function(Vue) {
Vue.component(ConfigProvider.name, ConfigProvider);
};
2019-01-02 12:13:25 +00:00
2019-01-12 03:33:27 +00:00
export default ConfigProvider;