A library that helps the user graphically build a CRON expression using Angular 2+. It is a fork of the vincentjames501's angular-cron-gen for AngularJS 1.5+.
This project was generated with Angular CLI version 1.2.0. To run the sample app just run npm run start
and go to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
-
Install the npm package:
$ npm i cron-editor -S
-
Import the module in your own module:
import { CronEditorModule } from "cron-editor/cron-editor"; @NgModule({ imports: [..., CronEditorModule], ... }) export class MyModule { }
-
Use the component in your html code:
<cron-editor [(cron)]="cronExpression"></cron-editor>
-
That's it, you're done!
<cron-editor [(cron)]="cronExpression" [options]="cronOptions"></cron-editor>
import { CronOptions } from "cron-editor/cron-editor";
@Component({
...
})
export class MyComponent {
public cronOptions: CronOptions = {
formInputClass: 'form-control cron-editor-input',
formSelectClass: 'form-control cron-editor-select',
formRadioClass: 'cron-editor-radio',
formCheckboxClass: 'cron-editor-checkbox',
defaultTime: "10:00:00",
hideMinutesTab: false,
hideHourlyTab: false,
hideDailyTab: false,
hideWeeklyTab: false,
hideMonthlyTab: false,
hideYearlyTab: false,
hideAdvancedTab: true,
use24HourTime: true,
hideSeconds: false
};
}
Licensed under the MIT license