2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2017-04-12 04:49:08 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2018-01-13 17:53:25 +08:00
|
|
|
import * as moment from 'moment';
|
2018-03-29 10:42:33 +08:00
|
|
|
import interopDefault from '../_util/interopDefault';
|
2017-07-31 01:50:46 +08:00
|
|
|
import { ModalLocale, changeConfirmLocale } from '../modal/locale';
|
2016-03-03 16:28:02 +08:00
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
export interface Locale {
|
|
|
|
locale: string;
|
|
|
|
Pagination?: Object;
|
|
|
|
DatePicker?: Object;
|
|
|
|
TimePicker?: Object;
|
|
|
|
Calendar?: Object;
|
|
|
|
Table?: Object;
|
|
|
|
Modal?: ModalLocale;
|
|
|
|
Popconfirm?: Object;
|
|
|
|
Transfer?: Object;
|
|
|
|
Select?: Object;
|
|
|
|
Upload?: Object;
|
|
|
|
}
|
|
|
|
|
2016-08-02 16:10:26 +08:00
|
|
|
export interface LocaleProviderProps {
|
2018-01-13 17:53:25 +08:00
|
|
|
locale: Locale;
|
2016-12-16 16:42:50 +08:00
|
|
|
children?: React.ReactElement<any>;
|
2016-08-02 16:10:26 +08:00
|
|
|
}
|
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
function setMomentLocale(locale: Locale) {
|
|
|
|
if (locale && locale.locale) {
|
2018-03-29 10:42:33 +08:00
|
|
|
interopDefault(moment).locale(locale.locale);
|
2018-01-15 14:56:15 +08:00
|
|
|
} else {
|
2018-03-29 10:42:33 +08:00
|
|
|
interopDefault(moment).locale('en');
|
2018-01-13 17:53:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-02 16:10:26 +08:00
|
|
|
export default class LocaleProvider extends React.Component<LocaleProviderProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static propTypes = {
|
2017-04-12 04:49:08 +08:00
|
|
|
locale: PropTypes.object,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
static defaultProps = {
|
|
|
|
locale: {},
|
|
|
|
};
|
|
|
|
|
2016-03-29 14:01:10 +08:00
|
|
|
static childContextTypes = {
|
2017-04-12 04:49:08 +08:00
|
|
|
antLocale: PropTypes.object,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2016-03-03 16:28:02 +08:00
|
|
|
getChildContext() {
|
|
|
|
return {
|
2017-01-09 16:25:58 +08:00
|
|
|
antLocale: {
|
|
|
|
...this.props.locale,
|
|
|
|
exist: true,
|
|
|
|
},
|
2016-03-03 16:28:02 +08:00
|
|
|
};
|
|
|
|
}
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2018-04-14 13:37:24 +08:00
|
|
|
componentDidMount() {
|
2018-01-13 17:53:25 +08:00
|
|
|
setMomentLocale(this.props.locale);
|
2016-03-05 17:14:45 +08:00
|
|
|
this.componentDidUpdate();
|
|
|
|
}
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
componentWillReceiveProps(nextProps: LocaleProviderProps) {
|
|
|
|
const { locale } = this.props;
|
|
|
|
const nextLocale = nextProps.locale;
|
2018-01-14 01:30:21 +08:00
|
|
|
if (locale !== nextLocale) {
|
2018-01-13 17:53:25 +08:00
|
|
|
setMomentLocale(nextProps.locale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-05 17:14:45 +08:00
|
|
|
componentDidUpdate() {
|
|
|
|
const { locale } = this.props;
|
|
|
|
changeConfirmLocale(locale && locale.Modal);
|
|
|
|
}
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
componentWillUnmount() {
|
2016-03-05 17:14:45 +08:00
|
|
|
changeConfirmLocale();
|
|
|
|
}
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2016-03-03 16:28:02 +08:00
|
|
|
render() {
|
2016-03-05 16:39:27 +08:00
|
|
|
return React.Children.only(this.props.children);
|
2016-03-03 16:28:02 +08:00
|
|
|
}
|
|
|
|
}
|