@rschedule/rschedule
Version:
A typescript library for working with recurring dates and events.
35 lines (25 loc) • 938 B
text/typescript
import { RuleOption } from '../rule-options';
import { IPipeRule, IPipeRunFn, PipeRule } from './interfaces';
export interface IByMinuteOfHourRulePipe {
byMinuteOfHour: RuleOption.ByMinuteOfHour[];
}
export class ByMinuteOfHourPipe extends PipeRule<IByMinuteOfHourRulePipe>
implements IPipeRule<IByMinuteOfHourRulePipe> {
run(args: IPipeRunFn) {
if (args.invalidDate) {
return this.nextPipe.run(args);
}
let date = args.date;
const currentMinute = date.get('minute');
for (const minute of this.options.byMinuteOfHour) {
if (currentMinute > minute) continue;
if (currentMinute === minute) return this.nextPipe.run({ date });
return this.nextValidDate(args, date.granularity('hour').set('minute', minute));
}
date = date
.granularity('hour')
.add(1, 'hour')
.set('minute', this.options.byMinuteOfHour[0]);
return this.nextValidDate(args, date);
}
}