Published
Edited
Jul 18, 2019
Fork of rSchedule
Insert cell
Insert cell
rschedule = import('@rschedule/rschedule@0.11.3')
Insert cell
// standardAdapter = import('https://unpkg.com/@rschedule/standard-date-adapter@0.11.0/build/module.js?module')
standardAdapter = import('@rschedule/standard-date-adapter@0.11.0')
Insert cell
// A schedule is analogous to a ruleset in rrule.js
schedule = new rschedule.Schedule({
rrules: [
{
start: new Date(2014, 10, 2),
frequency: "YEARLY",
duration: 1000 * 60 * 60 * 24, // Add a day, duration is specified in milliseconds
// count: 90 // The code below works if this is uncommented
}
],
dateAdapter: standardAdapter.StandardDateAdapter,
} );
Insert cell
// Get the first recurring event after START time. THIS WORKS :)
schedule
.occurrences({start: new Date(), take: 1 })
.toArray()
.map(adapter => adapter.date.toLocaleString());
Insert cell
// Get the event right before end time. THIS DOESN'T WORK :/
schedule
.occurrences({reverse: true, end: new Date(), take:1})
.toArray()
.map(adapter => adapter.date.toLocaleString());
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more