ant-design/components/locale-provider/index.jsx

36 lines
672 B
React
Raw Normal View History

2016-03-03 16:28:02 +08:00
import React from 'react';
import { changeConfirmLocale } from '../modal/locale';
2016-03-03 16:28:02 +08:00
export default class LocaleProvider extends React.Component {
static propTypes = {
locale: React.PropTypes.object,
}
static childContextTypes = {
antLocale: React.PropTypes.object,
}
2016-03-03 16:28:02 +08:00
getChildContext() {
return {
2016-03-05 16:39:27 +08:00
antLocale: this.props.locale,
2016-03-03 16:28:02 +08:00
};
}
componentDidMount() {
this.componentDidUpdate();
}
componentDidUpdate() {
const { locale } = this.props;
changeConfirmLocale(locale && locale.Modal);
}
componentWillUnMount() {
changeConfirmLocale();
}
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
}
}