UNPKG

react-native-dates-picker

Version:
155 lines (154 loc) 7.83 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _react = require("react"); var _reactNative = require("react-native"); var _CalendarContext = require("../CalendarContext"); var _dayjs = _interopRequireDefault(require("dayjs")); var _utils = require("../utils"); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } const Header = ({ buttonPrevIcon, buttonNextIcon }) => { const { mode, date, currentDate, currentYear, onChangeMonth, onChangeYear, calendarView, setCalendarView, theme, locale, timePicker } = (0, _CalendarContext.useCalendarContext)(); const currentMonthText = (0, _dayjs.default)(currentDate).locale(locale).format('MMMM'); const renderPrevButton = /*#__PURE__*/React.createElement(_reactNative.Pressable, { disabled: calendarView === 'time', onPress: () => calendarView === 'day' ? onChangeMonth(-1) : calendarView === 'month' ? onChangeYear(currentYear - 1) : calendarView === 'year' && onChangeYear(currentYear - _utils.YEAR_PAGE_SIZE), accessibilityRole: "button", accessibilityLabel: "Prev" }, /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.iconContainer, styles.prev, theme === null || theme === void 0 ? void 0 : theme.headerButtonStyle] }, buttonPrevIcon || /*#__PURE__*/React.createElement(_reactNative.Image, { source: { uri: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAiCAYAAABStIn6AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAD3SURBVHgBzdY7DoJAEAbgkUdJSSJ0lnZewc5byI08glra6Q08gregVBMS7NZZYwjKPmZmKfibWZovsGFmF2AqyfN8pesMAlKW5V4pVeHyEoEwPQSw3kVv1Ecwt7Zt12zIhDwwLMiG6Acy5ELIkA8hQRTEC1ERJ8RBrBAXMUISZABJkR8oBOmgUEQnKopiF4p8IESeMELipmmuWZYtcK0n3TxN002SJKcXhgN1m42feMCy/T7KNnsMbPBDSjFji0gwa9NyMecY4WDewUbFSKOWgpGHvw9jHUcujH1A2jDRkW3CYhAEG/381+hL8W2krusKy1Gv9W3kDcFNM0FmBbDoAAAAAElFTkSuQmCC' }, resizeMode: "contain", style: { width: (theme === null || theme === void 0 ? void 0 : theme.headerButtonSize) || 18, height: (theme === null || theme === void 0 ? void 0 : theme.headerButtonSize) || 18, tintColor: theme === null || theme === void 0 ? void 0 : theme.headerButtonColor } }))); const renderNextButton = /*#__PURE__*/React.createElement(_reactNative.Pressable, { disabled: calendarView === 'time', onPress: () => calendarView === 'day' ? onChangeMonth(1) : calendarView === 'month' ? onChangeYear(currentYear + 1) : calendarView === 'year' && onChangeYear(currentYear + _utils.YEAR_PAGE_SIZE), accessibilityRole: "button", accessibilityLabel: "Next" }, /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.iconContainer, styles.next, theme === null || theme === void 0 ? void 0 : theme.headerButtonStyle] }, buttonNextIcon || /*#__PURE__*/React.createElement(_reactNative.Image, { source: { uri: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAYCAYAAAAh8HdUAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACESURBVHgB7dQhDoUwDAbglT0xMfHklhmu8G7wOAlwMo7CUZicRCyZLH8FmuIQ/EnTin5iWVIbQvh7702tdTfKdES0SgH3asTMM3p/FxosTzFGRm0vfCQkLcTnLxhza+3XaZC1ls/ZOfe9BCml8da7XvAMgJAA9IxbMZRSsgZ9ZFmQFkgOQ1ZeTkHFbCQAAAAASUVORK5CYII=' }, resizeMode: "contain", style: { width: (theme === null || theme === void 0 ? void 0 : theme.headerButtonSize) || 18, height: (theme === null || theme === void 0 ? void 0 : theme.headerButtonSize) || 18, tintColor: theme === null || theme === void 0 ? void 0 : theme.headerButtonColor } }))); const yearSelector = (0, _react.useCallback)(() => { const years = (0, _utils.getYearRange)(currentYear); return /*#__PURE__*/React.createElement(_reactNative.Pressable, { onPress: () => { setCalendarView(calendarView === 'year' ? 'day' : 'year'); onChangeYear((0, _utils.getDateYear)(currentDate)); }, accessibilityRole: "button", accessibilityLabel: (0, _dayjs.default)(currentDate).format('YYYY') }, /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.textContainer, theme === null || theme === void 0 ? void 0 : theme.headerTextContainerStyle] }, /*#__PURE__*/React.createElement(_reactNative.Text, { style: [styles.text, theme === null || theme === void 0 ? void 0 : theme.headerTextStyle] }, calendarView === 'year' ? `${years[0]} - ${years[years.length - 1]}` : (0, _dayjs.default)(currentDate).format('YYYY')))); }, [calendarView, currentDate, currentYear, setCalendarView, onChangeYear, theme]); const monthSelector = /*#__PURE__*/React.createElement(_reactNative.Pressable, { onPress: () => setCalendarView(calendarView === 'month' ? 'day' : 'month'), accessibilityRole: "button", accessibilityLabel: currentMonthText }, /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.textContainer, theme === null || theme === void 0 ? void 0 : theme.headerTextContainerStyle] }, /*#__PURE__*/React.createElement(_reactNative.Text, { style: [styles.text, theme === null || theme === void 0 ? void 0 : theme.headerTextStyle] }, currentMonthText))); const renderSelectors = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.selectorContainer }, calendarView !== 'year' ? monthSelector : null, yearSelector()), timePicker && mode === 'single' && calendarView !== 'year' ? /*#__PURE__*/React.createElement(_reactNative.Pressable, { onPress: () => setCalendarView(calendarView === 'time' ? 'day' : 'time'), accessibilityRole: "button", accessibilityLabel: (0, _dayjs.default)(date).format('HH:mm:ss') }, /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.textContainer, theme === null || theme === void 0 ? void 0 : theme.headerTextContainerStyle] }, /*#__PURE__*/React.createElement(_reactNative.Text, { style: [styles.text, theme === null || theme === void 0 ? void 0 : theme.headerTextStyle] }, (0, _dayjs.default)(date).format('HH:mm:ss')))) : null); return /*#__PURE__*/React.createElement(_reactNative.View, { style: [styles.headerContainer, theme === null || theme === void 0 ? void 0 : theme.headerContainerStyle], accessibilityRole: "header" }, (theme === null || theme === void 0 ? void 0 : theme.headerButtonsPosition) === 'left' ? /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.container }, /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.row }, renderPrevButton, renderNextButton), renderSelectors) : (theme === null || theme === void 0 ? void 0 : theme.headerButtonsPosition) === 'right' ? /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.container }, renderSelectors, /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.row }, renderPrevButton, renderNextButton)) : /*#__PURE__*/React.createElement(_reactNative.View, { style: styles.container }, renderPrevButton, renderSelectors, renderNextButton)); }; const styles = _reactNative.StyleSheet.create({ headerContainer: { marginBottom: 5 }, container: { padding: 5, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between' }, selectorContainer: { flexDirection: 'row', alignItems: 'center' }, textContainer: { marginHorizontal: 1, paddingHorizontal: 5, paddingVertical: 5, borderRadius: 5 }, text: { fontWeight: 'bold', fontSize: 15 }, iconContainer: { padding: 4 }, prev: { marginRight: 3 }, next: { marginLeft: 3 }, row: { flexDirection: 'row' } }); var _default = exports.default = Header; //# sourceMappingURL=Header.js.map