2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2020-04-18 13:18:51 +08:00
|
|
|
import { ValidateMessages } from 'rc-field-form/lib/interface';
|
2020-05-14 15:57:04 +08:00
|
|
|
import devWarning from '../_util/devWarning';
|
2019-07-24 10:34:55 +08:00
|
|
|
|
2020-03-11 14:56:01 +08:00
|
|
|
import { ModalLocale, changeConfirmLocale } from '../modal/locale';
|
|
|
|
import { TransferLocale as TransferLocaleForEmpty } from '../empty';
|
|
|
|
import { PaginationLocale } from '../pagination/Pagination';
|
|
|
|
import { TableLocale } from '../table/interface';
|
|
|
|
import { PopconfirmLocale } from '../popconfirm';
|
|
|
|
import { UploadLocale } from '../upload/interface';
|
|
|
|
import { TransferLocale } from '../transfer';
|
2020-03-12 10:49:32 +08:00
|
|
|
import { PickerLocale as DatePickerLocale } from '../date-picker/generatePicker';
|
2020-03-30 22:54:12 +08:00
|
|
|
import LocaleContext from './context';
|
2020-03-11 14:56:01 +08:00
|
|
|
|
2019-07-24 10:34:55 +08:00
|
|
|
export const ANT_MARK = 'internalMark';
|
2016-03-03 16:28:02 +08:00
|
|
|
|
2018-01-13 17:53:25 +08:00
|
|
|
export interface Locale {
|
|
|
|
locale: string;
|
2020-03-11 14:56:01 +08:00
|
|
|
Pagination?: PaginationLocale;
|
2020-03-12 10:49:32 +08:00
|
|
|
DatePicker?: DatePickerLocale;
|
2018-01-13 17:53:25 +08:00
|
|
|
TimePicker?: Object;
|
|
|
|
Calendar?: Object;
|
2020-03-11 14:56:01 +08:00
|
|
|
Table?: TableLocale;
|
2018-01-13 17:53:25 +08:00
|
|
|
Modal?: ModalLocale;
|
2020-03-11 14:56:01 +08:00
|
|
|
Popconfirm?: PopconfirmLocale;
|
|
|
|
Transfer?: Partial<TransferLocale>;
|
2018-01-13 17:53:25 +08:00
|
|
|
Select?: Object;
|
2020-03-11 14:56:01 +08:00
|
|
|
Upload?: UploadLocale;
|
|
|
|
Empty?: TransferLocaleForEmpty;
|
|
|
|
global?: Object;
|
|
|
|
PageHeader?: Object;
|
|
|
|
Icon?: Object;
|
|
|
|
Text?: Object;
|
2020-04-18 13:18:51 +08:00
|
|
|
Form?: {
|
2020-08-21 12:58:14 +08:00
|
|
|
optional?: string;
|
2020-04-18 13:18:51 +08:00
|
|
|
defaultValidateMessages: ValidateMessages;
|
|
|
|
};
|
2020-12-07 17:08:48 +08:00
|
|
|
Image?: {
|
|
|
|
preview: string;
|
|
|
|
};
|
2018-01-13 17:53:25 +08:00
|
|
|
}
|
|
|
|
|
2016-08-02 16:10:26 +08:00
|
|
|
export interface LocaleProviderProps {
|
2018-01-13 17:53:25 +08:00
|
|
|
locale: Locale;
|
2018-12-13 22:03:12 +08:00
|
|
|
children?: React.ReactNode;
|
2019-07-24 10:34:55 +08:00
|
|
|
_ANT_MARK__?: string;
|
2016-08-02 16:10:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class LocaleProvider extends React.Component<LocaleProviderProps, any> {
|
2018-01-13 17:53:25 +08:00
|
|
|
static defaultProps = {
|
|
|
|
locale: {},
|
|
|
|
};
|
|
|
|
|
2018-04-15 15:09:13 +08:00
|
|
|
constructor(props: LocaleProviderProps) {
|
|
|
|
super(props);
|
|
|
|
changeConfirmLocale(props.locale && props.locale.Modal);
|
2019-07-24 10:34:55 +08:00
|
|
|
|
2020-05-14 15:57:04 +08:00
|
|
|
devWarning(
|
2019-07-24 10:34:55 +08:00
|
|
|
props._ANT_MARK__ === ANT_MARK,
|
|
|
|
'LocaleProvider',
|
|
|
|
'`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead: http://u.ant.design/locale',
|
|
|
|
);
|
2018-04-15 15:09:13 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 18:05:20 +08:00
|
|
|
componentDidMount() {
|
|
|
|
changeConfirmLocale(this.props.locale && this.props.locale.Modal);
|
|
|
|
}
|
|
|
|
|
2018-11-21 22:38:27 +08:00
|
|
|
componentDidUpdate(prevProps: LocaleProviderProps) {
|
2018-01-13 17:53:25 +08:00
|
|
|
const { locale } = this.props;
|
2018-11-21 22:38:27 +08:00
|
|
|
if (prevProps.locale !== locale) {
|
2019-09-16 11:23:26 +08:00
|
|
|
changeConfirmLocale(locale && locale.Modal);
|
2018-01-13 17:53:25 +08:00
|
|
|
}
|
2016-03-05 17:14:45 +08:00
|
|
|
}
|
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() {
|
2020-03-30 22:54:12 +08:00
|
|
|
const { locale, children } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<LocaleContext.Provider value={{ ...locale, exist: true }}>{children}</LocaleContext.Provider>
|
|
|
|
);
|
2016-03-03 16:28:02 +08:00
|
|
|
}
|
|
|
|
}
|