mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
b0850139f2
* feat: init * feat: update * feat: upate * feat: update * feat: update * feat: init * feat: init * feat: init * feat: update * feat: update * feat: update * feat: update rc-tour * feat: init component * feat: init component * chore: update pck * doc: update doc * doc: update reviewer * doc: update reviewer * doc: update reviewer * feat: update reviewer * feat: update reviewer * feat: update doc * feat: update deme * feat: update demo doc * feat: update demo * feat: update demo * feat: update style * feat: update dom & style * feat: update dome * feat: update dome * docs: update demo * feat: update doc * feat: update dome * feat: add locale * doc: update locale * doc: add test * feat: add test case * feat: add test case * feat: update package * feat: update ts * feat: update ts * feat: update snapshots * feat: update demo * feat: update demo * feat: update demo * feat: edit maxSize * feat: edit maxSize * feat: update lint * feat: update lint * feat: update style reviewer * feat: update style * feat: merge next * feat: add locale * feat: reset bundleSize * feat: change maxSize * feat: update test coverage * feat: update test coverage * feat: add type * chore: simplify en locale * feat: update * feat: update test snap * docs: demo update * chore: adjust style * chore: adjust style * chore: bump rc-tour * Update package.json * feat: update package * feat: update package * feat: update cover * docs: update api * docs: update overview snap * feat: update token * feat: delete repeat ts * feat: remove finishButtonProps * chore: update demo * feat: tour style * test: fix lint * chore: code clean Co-authored-by: lijianan <574980606@qq.com> Co-authored-by: 二货机器人 <smith3816@gmail.com> Co-authored-by: MadCcc <1075746765@qq.com>
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import type { ValidateMessages } from 'rc-field-form/lib/interface';
|
|
import * as React from 'react';
|
|
import warning from '../_util/warning';
|
|
import type { PickerLocale as DatePickerLocale } from '../date-picker/generatePicker';
|
|
import type { TransferLocale as TransferLocaleForEmpty } from '../empty';
|
|
import type { ModalLocale } from '../modal/locale';
|
|
import type { TourLocale } from '../tour/interface';
|
|
import { changeConfirmLocale } from '../modal/locale';
|
|
import type { PaginationLocale } from '../pagination/Pagination';
|
|
import type { PopconfirmLocale } from '../popconfirm/PurePanel';
|
|
import type { TableLocale } from '../table/interface';
|
|
import type { TransferLocale } from '../transfer';
|
|
import type { UploadLocale } from '../upload/interface';
|
|
import type { LocaleContextProps } from './context';
|
|
import LocaleContext from './context';
|
|
|
|
export const ANT_MARK = 'internalMark';
|
|
|
|
export interface Locale {
|
|
locale: string;
|
|
Pagination?: PaginationLocale;
|
|
DatePicker?: DatePickerLocale;
|
|
TimePicker?: Record<string, any>;
|
|
Calendar?: Record<string, any>;
|
|
Table?: TableLocale;
|
|
Modal?: ModalLocale;
|
|
Tour?: TourLocale;
|
|
Popconfirm?: PopconfirmLocale;
|
|
Transfer?: TransferLocale;
|
|
Select?: Record<string, any>;
|
|
Upload?: UploadLocale;
|
|
Empty?: TransferLocaleForEmpty;
|
|
global?: Record<string, any>;
|
|
PageHeader?: { back: string };
|
|
Icon?: Record<string, any>;
|
|
Text?: {
|
|
edit?: any;
|
|
copy?: any;
|
|
copied?: any;
|
|
expand?: any;
|
|
};
|
|
Form?: {
|
|
optional?: string;
|
|
defaultValidateMessages: ValidateMessages;
|
|
};
|
|
Image?: {
|
|
preview: string;
|
|
};
|
|
}
|
|
|
|
export interface LocaleProviderProps {
|
|
locale: Locale;
|
|
children?: React.ReactNode;
|
|
/** @internal */
|
|
_ANT_MARK__?: string;
|
|
}
|
|
|
|
const LocaleProvider: React.FC<LocaleProviderProps> = props => {
|
|
const { locale = {} as Locale, children, _ANT_MARK__ } = props;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
warning(
|
|
_ANT_MARK__ === ANT_MARK,
|
|
'LocaleProvider',
|
|
'`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead: http://u.ant.design/locale',
|
|
);
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
changeConfirmLocale(locale && locale.Modal);
|
|
return () => {
|
|
changeConfirmLocale();
|
|
};
|
|
}, [locale]);
|
|
|
|
const getMemoizedContextValue = React.useMemo<LocaleContextProps>(
|
|
() => ({ ...locale, exist: true }),
|
|
[locale],
|
|
);
|
|
|
|
return (
|
|
<LocaleContext.Provider value={getMemoizedContextValue}>{children}</LocaleContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default LocaleProvider;
|