1.2.7-1 • Published 4 years ago

custom-cron-generator v1.2.7-1

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

react-cron-generator

Simple react component to generate cron expression

Getting Started

Package helps to build linux scheduler cron expression. Make sure you have include bootstrap in your project

data = '* * * * * * *'
npm install react-cron-generator

demo

Live demo

alt text

alt text

import React, { Component } from 'react'
import Cron from 'react-cron-generator'
import 'react-cron-generator/dist/cron-builder.css'


class App extends Component {

  constructor(props) {
      super(props);
      this.state = {
       
      };
  }

  render() {
    return (<div>
      <Cron
        onChange={(e)=> {this.setState({value:e});}}
        value={this.state.value}
        showResultText={true}
        showResultCron={true}
        />
                            
    </div>)
  }
}

export default App;

props

PropDescriptionDefaultMandatory
valuecron expressionNo
onChangeYes
showResultTextshow in readable text formatfalseNo
showResultCronshow cron expressionfalseNo
translateFntranslate function callbackmethodNo
localelocale for cronstrueenNo
optionsOptions for Cron component, *Must pass a valid cron value for available headersAll available headersNo

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

locale option should be set for correct ResultText translation. Please visit 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]
};

Ref

Added ref to the component now you can access state and functions using ref.

add the new prop onRef={ref => (this.cronGen = ref)}

      <Cron
        onRef={ref => (this.cronGen = ref)}  
        onChange={(e)=> {this.setState({value:e}); console.log(e)}}
        value={this.state.value}
        showResultText={true}
        showResultCron={true}
        />

Sojin Antony

Acknowledgments

cronstrue

Viswanath Lekshmanan