131 lines
3.9 KiB
JavaScript
131 lines
3.9 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useThemeProps } from '@mui/material/styles';
|
|
import { DEFAULT_LOCALE } from '../locales';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
export const MuiPickersAdapterContext = /*#__PURE__*/React.createContext(null);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
MuiPickersAdapterContext.displayName = 'MuiPickersAdapterContext';
|
|
}
|
|
|
|
let warnedOnce = false;
|
|
/**
|
|
* @ignore - do not document.
|
|
*/
|
|
|
|
export function LocalizationProvider(inProps) {
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiLocalizationProvider'
|
|
});
|
|
const {
|
|
children,
|
|
dateAdapter: Utils,
|
|
dateFormats,
|
|
dateLibInstance,
|
|
locale,
|
|
adapterLocale,
|
|
localeText
|
|
} = props;
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
if (!warnedOnce && locale !== undefined) {
|
|
warnedOnce = true;
|
|
console.warn("LocalizationProvider's prop `locale` is deprecated and replaced by `adapterLocale`");
|
|
}
|
|
}
|
|
|
|
const utils = React.useMemo(() => new Utils({
|
|
locale: adapterLocale != null ? adapterLocale : locale,
|
|
formats: dateFormats,
|
|
instance: dateLibInstance
|
|
}), [Utils, locale, adapterLocale, dateFormats, dateLibInstance]);
|
|
const defaultDates = React.useMemo(() => {
|
|
return {
|
|
minDate: utils.date('1900-01-01T00:00:00.000'),
|
|
maxDate: utils.date('2099-12-31T00:00:00.000')
|
|
};
|
|
}, [utils]);
|
|
const contextValue = React.useMemo(() => {
|
|
return {
|
|
utils,
|
|
defaultDates,
|
|
localeText: _extends({}, DEFAULT_LOCALE, localeText != null ? localeText : {})
|
|
};
|
|
}, [defaultDates, utils, localeText]);
|
|
return /*#__PURE__*/_jsx(MuiPickersAdapterContext.Provider, {
|
|
value: contextValue,
|
|
children: children
|
|
});
|
|
}
|
|
process.env.NODE_ENV !== "production" ? LocalizationProvider.propTypes = {
|
|
// ----------------------------- Warning --------------------------------
|
|
// | These PropTypes are generated from the TypeScript type definitions |
|
|
// | To update them edit the TypeScript types and run "yarn proptypes" |
|
|
// ----------------------------------------------------------------------
|
|
|
|
/**
|
|
* Locale for the date library you are using
|
|
*/
|
|
adapterLocale: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
|
|
children: PropTypes.node,
|
|
|
|
/**
|
|
* DateIO adapter class function
|
|
*/
|
|
dateAdapter: PropTypes.func.isRequired,
|
|
|
|
/**
|
|
* Formats that are used for any child pickers
|
|
*/
|
|
dateFormats: PropTypes.shape({
|
|
dayOfMonth: PropTypes.string,
|
|
fullDate: PropTypes.string,
|
|
fullDateTime: PropTypes.string,
|
|
fullDateTime12h: PropTypes.string,
|
|
fullDateTime24h: PropTypes.string,
|
|
fullDateWithWeekday: PropTypes.string,
|
|
fullTime: PropTypes.string,
|
|
fullTime12h: PropTypes.string,
|
|
fullTime24h: PropTypes.string,
|
|
hours12h: PropTypes.string,
|
|
hours24h: PropTypes.string,
|
|
keyboardDate: PropTypes.string,
|
|
keyboardDateTime: PropTypes.string,
|
|
keyboardDateTime12h: PropTypes.string,
|
|
keyboardDateTime24h: PropTypes.string,
|
|
minutes: PropTypes.string,
|
|
month: PropTypes.string,
|
|
monthAndDate: PropTypes.string,
|
|
monthAndYear: PropTypes.string,
|
|
monthShort: PropTypes.string,
|
|
normalDate: PropTypes.string,
|
|
normalDateWithWeekday: PropTypes.string,
|
|
seconds: PropTypes.string,
|
|
shortDate: PropTypes.string,
|
|
weekday: PropTypes.string,
|
|
weekdayShort: PropTypes.string,
|
|
year: PropTypes.string
|
|
}),
|
|
|
|
/**
|
|
* Date library instance you are using, if it has some global overrides
|
|
* ```jsx
|
|
* dateLibInstance={momentTimeZone}
|
|
* ```
|
|
*/
|
|
dateLibInstance: PropTypes.any,
|
|
|
|
/**
|
|
* Locale for the date library you are using
|
|
* @deprecated Use `adapterLocale` instead
|
|
*/
|
|
locale: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
|
|
|
|
/**
|
|
* Locale for components texts
|
|
*/
|
|
localeText: PropTypes.object
|
|
} : void 0; |