mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
832cffcdf9
* refactor: support type update * chore: update clear style * chore: bump color picker * chore: use slider * chore: bump color picker * chore: range slider * chore: layout * chore: useModeColor * chore: simplify * chore: bump color picker * refactor: event * chore: tmp lock check * chore: of it * chore: update ts def * chore: update ts def * chore: remove useless ts * chore: linear * chore: adjust style * chore: rm useless code * chore: fill color * chore: basic linear * chore: support toStr * chore: limit minCount * chore: use cache * chore: drag support: * chore: yes * chore: update demo * chore: useLayoutEffect instead * chore: fix click to add point * chore: add smmoth * chore: support of locale * chore: add locale * chore: fix lint * chore: adjust style * chore: fix lint * chore: fix style * test: fix test case * chore: fix popover * test: fix test case * chore: fix test * test: clean up * chore: fix lint * chore: fix lint * chore: fix lint * test: coverage * test: coverage * test: coverage * test: coverage * test: coverage * test: coverage * chore: fix docs * docs: update demo desc * chore: enhance hover range * fix: delete not working * chore: fix lint * test: coverage * test: coverage * chore: clean up * chore: adjust * chore: highlight * chore: adjust style * chore: fix lint * chore: update demo * chore: memo perf * refactor: up to down colors * test: update snapshot
105 lines
2.9 KiB
TypeScript
105 lines
2.9 KiB
TypeScript
import * as React from 'react';
|
|
import type { ValidateMessages } from 'rc-field-form/lib/interface';
|
|
|
|
import { devUseWarning } 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 { changeConfirmLocale } from '../modal/locale';
|
|
import type { PaginationLocale } from '../pagination/Pagination';
|
|
import type { PopconfirmLocale } from '../popconfirm/PurePanel';
|
|
import type { TableLocale } from '../table/interface';
|
|
import type { TourLocale } from '../tour/interface';
|
|
import type { TransferLocale } from '../transfer';
|
|
import type { UploadLocale } from '../upload/interface';
|
|
import type { LocaleContextProps } from './context';
|
|
import LocaleContext from './context';
|
|
|
|
export { default as useLocale } from './useLocale';
|
|
|
|
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>;
|
|
Icon?: Record<string, any>;
|
|
Text?: {
|
|
edit?: any;
|
|
copy?: any;
|
|
copied?: any;
|
|
expand?: any;
|
|
collapse?: any;
|
|
};
|
|
Form?: {
|
|
optional?: string;
|
|
defaultValidateMessages: ValidateMessages;
|
|
};
|
|
Image?: {
|
|
preview: string;
|
|
};
|
|
QRCode?: {
|
|
expired?: string;
|
|
refresh?: string;
|
|
scanned?: string;
|
|
};
|
|
ColorPicker?: {
|
|
presetEmpty: string;
|
|
transparent: string;
|
|
singleColor: string;
|
|
gradientColor: 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') {
|
|
const warning = devUseWarning('LocaleProvider');
|
|
|
|
warning(
|
|
_ANT_MARK__ === ANT_MARK,
|
|
'deprecated',
|
|
'`LocaleProvider` is deprecated. Please use `locale` with `ConfigProvider` instead: http://u.ant.design/locale',
|
|
);
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
const clearLocale = changeConfirmLocale(locale?.Modal);
|
|
return clearLocale;
|
|
}, [locale]);
|
|
|
|
const getMemoizedContextValue = React.useMemo<LocaleContextProps>(
|
|
() => ({ ...locale, exist: true }),
|
|
[locale],
|
|
);
|
|
|
|
return (
|
|
<LocaleContext.Provider value={getMemoizedContextValue}>{children}</LocaleContext.Provider>
|
|
);
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
LocaleProvider.displayName = 'LocaleProvider';
|
|
}
|
|
|
|
export default LocaleProvider;
|