https://github.com/sojinantony01/react-cron-generator
Simple react component to generate cron expressions
https://github.com/sojinantony01/react-cron-generator
cron cronjob cronjob-scheduler react
Last synced: 6 months ago
JSON representation
Simple react component to generate cron expressions
- Host: GitHub
- URL: https://github.com/sojinantony01/react-cron-generator
- Owner: sojinantony01
- License: mit
- Created: 2019-06-05T14:10:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T16:01:14.000Z (almost 2 years ago)
- Last Synced: 2024-04-23T17:17:14.629Z (over 1 year ago)
- Topics: cron, cronjob, cronjob-scheduler, react
- Language: TypeScript
- Homepage:
- Size: 2.89 MB
- Stars: 77
- Watchers: 4
- Forks: 61
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# react-cron-generator
Simple react component to generate cron expression
## Getting Started
Package helps to build linux scheduler cron expression.
[](https://badge.fury.io/js/react-cron-generator) 
![]()
E2E tests passing.```
data = '* * * * * * *'
```
```
npm install react-cron-generator```
## demo
[Live demo](https://sojinantony01.github.io/react-cron-generator/)

```
import React, { useState } from 'react'
import Cron from 'react-cron-generator'
import 'react-cron-generator/dist/cron-builder.css'const App = () => {
const [state, setState] = useState({});return (
{
setState({ value: e });
}}
value={state.value}
showResultText={true}
showResultCron={true}
/>
);
};export default App;
```
## props| Prop | Description | Default | Mandatory
| --- | --- | -- | -- |
| value | cron expression | | No |
| onChange | have 2 arguments, 1st is cron value and 2nd is cron result text from cronstrue | | Yes
| showResultText | show in readable text format | false | No
| showResultCron | show cron expression | false | No
| translateFn | translate function callback | method | No
| locale | locale for cronstrue | en | No
| options | Options for Cron component, *Must pass a valid cron value for available headers | All available headers | No
| disabled | Disable cron selector | false | No**translateFn**
Expects a method. Use this prop for localization support. `react-cron-generator` will call this method for every key. List of keys are available [here](https://github.com/sojinantony01/react-cron-generator/tree/master/src/lib/localization/translation.json)
`locale` option should be set for correct `ResultText` translation. Please visit [cronstrue](https://github.com/bradymholt/cRonstrue) for supported locales.
## Options
**options.headers**
```
import { HEADER } from 'react-cron-generator';const options = {
headers: [HEADER.MONTHLY, HEADER.WEEKLY, HEADER.MINUTES, HEADER.HOURLY, HEADER.DAILY, HEADER.CUSTOM]
};```
## Importables
Cron - The react Cron component. - Default
CronProp - Cron component types.
cronsture - Cronsture/i18 - [cronstrue](https://www.npmjs.com/package/cronstrue)## Release notes 2.x.x
1. Build Procedure updated
2. Updated to latest react(18)
3. Migrated to hooks and typescript[Sojin Antony](https://github.com/sojinantony01)
[](https://www.buymeacoffee.com/sojinantony)
## Acknowledgments
**cronstrue**
[Viswanath Lekshmanan](https://viswanathl.in/)