12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 'use strict';
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- var _extends2 = require('babel-runtime/helpers/extends');
- var _extends3 = _interopRequireDefault(_extends2);
- var _vueTypes = require('../_util/vue-types');
- var _vueTypes2 = _interopRequireDefault(_vueTypes);
- var _default2 = require('./default');
- var _default3 = _interopRequireDefault(_default2);
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
- exports['default'] = {
- name: 'LocaleReceiver',
- props: {
- componentName: _vueTypes2['default'].string.def('global'),
- defaultLocale: _vueTypes2['default'].oneOfType([_vueTypes2['default'].object, _vueTypes2['default'].func]),
- children: _vueTypes2['default'].func
- },
- inject: {
- localeData: { 'default': function _default() {
- return {};
- } }
- },
- methods: {
- getLocale: function getLocale() {
- var componentName = this.componentName,
- defaultLocale = this.defaultLocale;
- var locale = defaultLocale || _default3['default'][componentName || 'global'];
- var antLocale = this.localeData.antLocale;
- var localeFromContext = componentName && antLocale ? antLocale[componentName] : {};
- return (0, _extends3['default'])({}, typeof locale === 'function' ? locale() : locale, localeFromContext || {});
- },
- getLocaleCode: function getLocaleCode() {
- var antLocale = this.localeData.antLocale;
- var localeCode = antLocale && antLocale.locale;
- // Had use LocaleProvide but didn't set locale
- if (antLocale && antLocale.exist && !localeCode) {
- return _default3['default'].locale;
- }
- return localeCode;
- }
- },
- render: function render() {
- var $scopedSlots = this.$scopedSlots;
- var children = this.children || $scopedSlots['default'];
- var antLocale = this.localeData.antLocale;
- return children(this.getLocale(), this.getLocaleCode(), antLocale);
- }
- };
|