| /** |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| import { t } from '@superset-ui/core'; |
| import { styled } from '@apache-superset/core/ui'; |
| import ReactCronPicker from 'react-js-cron'; |
| import type { Locale, CronProps } from './types'; |
| |
| // Styles for the crontab-related lib |
| import 'react-js-cron/dist/styles.css'; |
| |
| export const LOCALE: Locale = { |
| everyText: t('every'), |
| emptyMonths: t('every month'), |
| emptyMonthDays: t('every day of the month'), |
| emptyMonthDaysShort: t('day of the month'), |
| emptyWeekDays: t('every day of the week'), |
| emptyWeekDaysShort: t('day of the week'), |
| emptyHours: t('every hour'), |
| emptyMinutes: t('every minute'), |
| emptyMinutesForHourPeriod: t('every'), |
| yearOption: t('year'), |
| monthOption: t('month'), |
| weekOption: t('week'), |
| dayOption: t('day'), |
| hourOption: t('hour'), |
| minuteOption: t('minute'), |
| rebootOption: t('reboot'), |
| prefixPeriod: t('Every'), |
| prefixMonths: t('in'), |
| prefixMonthDays: t('on'), |
| prefixWeekDays: t('on'), |
| prefixWeekDaysForMonthAndYearPeriod: t('or'), |
| prefixHours: t('at'), |
| prefixMinutes: t(':'), |
| prefixMinutesForHourPeriod: t('at'), |
| suffixMinutesForHourPeriod: t('minute(s)'), |
| errorInvalidCron: t('Invalid cron expression'), |
| clearButtonText: t('Clear'), |
| weekDays: [ |
| // Order is important, the index will be used as value |
| t('Sunday'), // Sunday must always be first, it's "0" |
| t('Monday'), |
| t('Tuesday'), |
| t('Wednesday'), |
| t('Thursday'), |
| t('Friday'), |
| t('Saturday'), |
| ], |
| months: [ |
| // Order is important, the index will be used as value |
| t('January'), |
| t('February'), |
| t('March'), |
| t('April'), |
| t('May'), |
| t('June'), |
| t('July'), |
| t('August'), |
| t('September'), |
| t('October'), |
| t('November'), |
| t('December'), |
| ], |
| // Order is important, the index will be used as value |
| altWeekDays: [ |
| t('SUN'), // Sunday must always be first, it's "0" |
| t('MON'), |
| t('TUE'), |
| t('WED'), |
| t('THU'), |
| t('FRI'), |
| t('SAT'), |
| ], |
| // Order is important, the index will be used as value |
| altMonths: [ |
| t('JAN'), |
| t('FEB'), |
| t('MAR'), |
| t('APR'), |
| t('MAY'), |
| t('JUN'), |
| t('JUL'), |
| t('AUG'), |
| t('SEP'), |
| t('OCT'), |
| t('NOV'), |
| t('DEC'), |
| ], |
| }; |
| |
| export const CronPicker = styled((props: CronProps) => ( |
| <ReactCronPicker locale={LOCALE} {...props} /> |
| ))` |
| ${({ theme }) => ` |
| |
| /* Boilerplate styling for ReactCronPicker imported explicitly in GlobalStyles.tsx */ |
| |
| /* When year period is selected */ |
| |
| :has(.react-js-cron-months) { |
| display: grid !important; |
| grid-template-columns: repeat(2, 50%); |
| column-gap: ${theme.sizeUnit}px; |
| row-gap: ${theme.sizeUnit * 2}px; |
| div:has(.react-js-cron-hours) { |
| grid-column: span 2; |
| display: flex; |
| justify-content: space-between; |
| .react-js-cron-field { |
| width: 50%; |
| } |
| } |
| } |
| |
| /* When month period is selected */ |
| |
| :not(:has(.react-js-cron-months)) { |
| display: grid; |
| grid-template-columns: repeat(2, 50%); |
| column-gap: ${theme.sizeUnit}px; |
| row-gap: ${theme.sizeUnit * 2}px; |
| .react-js-cron-period { |
| grid-column: span 2; |
| } |
| div:has(.react-js-cron-hours) { |
| grid-column: span 2; |
| display: flex; |
| justify-content: space-between; |
| .react-js-cron-field { |
| width: 50%; |
| } |
| } |
| } |
| |
| /* When week period is selected */ |
| |
| :not(:has(.react-js-cron-month-days)) { |
| .react-js-cron-week-days { |
| grid-column: span 2; |
| } |
| } |
| |
| /* For proper alignment of inputs and span elements */ |
| |
| :not(div:has(.react-js-cron-hours)) { |
| display: flex; |
| flex-wrap: nowrap; |
| } |
| |
| div:has(.react-js-cron-hours) { |
| width: 100%; |
| } |
| |
| .react-js-cron-minutes > span { |
| padding-left: ${theme.sizeUnit}px; |
| } |
| |
| /* Sizing of select container */ |
| |
| .react-js-cron-select.ant-select { |
| width: 100%; |
| .ant-select-selector { |
| flex-wrap: nowrap; |
| } |
| } |
| |
| .react-js-cron-field { |
| width: 100%; |
| margin-bottom: 0px; |
| > span { |
| margin-left: 0px; |
| } |
| } |
| |
| .react-js-cron-custom-select .ant-select-selection-placeholder { |
| flex: auto; |
| border-radius: ${theme.borderRadius}px; |
| } |
| |
| .react-js-cron-custom-select .ant-select-selection-overflow-item { |
| align-self: center; |
| } |
| |
| .react-js-cron-select > div:first-of-type, |
| .react-js-cron-custom-select { |
| border-radius: ${theme.borderRadius}px; |
| } |
| `} |
| `; |
| |
| export type { CronError } from './types'; |