You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
673 B
35 lines
673 B
import React from 'react';
|
|
import { changeConfirmLocale } from '../modal/confirm';
|
|
|
|
export default class LocaleProvider extends React.Component {
|
|
static propTypes = {
|
|
locale: React.PropTypes.object,
|
|
}
|
|
|
|
static childContextTypes = {
|
|
antLocale: React.PropTypes.object,
|
|
}
|
|
|
|
getChildContext() {
|
|
return {
|
|
antLocale: this.props.locale,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.componentDidUpdate();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
const { locale } = this.props;
|
|
changeConfirmLocale(locale && locale.Modal);
|
|
}
|
|
|
|
componentWillUnMount() {
|
|
changeConfirmLocale();
|
|
}
|
|
|
|
render() {
|
|
return React.Children.only(this.props.children);
|
|
}
|
|
}
|
|
|