UNPKG

react-js-cron-mantine

Version:

Fork of [react-js-cron](https://github.com/xrutayisire/react-js-cron), made to work with [mantine](https://mantine.dev)

55 lines (52 loc) 2.56 kB
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } import React, { useMemo } from 'react'; import CustomSelect from '../components/CustomSelect'; import { DEFAULT_LOCALE_EN } from '../locale'; import { classNames } from '../utils'; import { UNITS } from '../constants'; import { Group } from '@mantine/core'; export default function Months(props) { const { value, setValue, locale, className, humanizeLabels, disabled, readOnly, period, periodicityOnDoubleClick, mode } = props; const optionsList = locale.months || DEFAULT_LOCALE_EN.months; const internalClassName = useMemo(() => classNames({ 'react-js-cron-field': true, 'react-js-cron-months': true, [`${className}-field`]: !!className, [`${className}-months`]: !!className }), [className]); return React.createElement(Group, { align: "baseline", noWrap: true }, React.createElement(CustomSelect, { labelText: locale.prefixMonths !== '' && (locale.prefixMonths || DEFAULT_LOCALE_EN.prefixMonths), placeholder: locale.emptyMonths || DEFAULT_LOCALE_EN.emptyMonths, optionsList: optionsList, grid: false, value: value, unit: _objectSpread(_objectSpread({}, UNITS[3]), {}, { alt: locale.altMonths || DEFAULT_LOCALE_EN.altMonths }), setValue: setValue, locale: locale, className: className, humanizeLabels: humanizeLabels, disabled: disabled, readOnly: readOnly, period: period, periodicityOnDoubleClick: periodicityOnDoubleClick, mode: mode })); }