Published
Edited
Jul 19, 2019
Fork of rSchedule
1 fork
Insert cell
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
rschedule.RScheduleConfig.defaultDateAdapter = standardAdapter.StandardDateAdapter;
Insert cell
Insert cell
// A schedule is analogous to a ruleset in rrule.js
schedule = new rschedule.Schedule({
rrules: [
{
start: new Date(2014, 0, 2),
frequency: "YEARLY",
duration: 1000 * 60 * 60 * 6, // Add 6 hours, duration is specified in milliseconds
count: 10
}
],
dateAdapter: standardAdapter.StandardDateAdapter,
} );
Insert cell
Insert cell
schedule.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
// Create a new rrule
rrule2002 = new rschedule.Rule({
start: new Date(2002,2),
frequency: 'DAILY',
count: 4,
}, {data: 'dsfdfdfd', dateAdapter: standardAdapter.StandardDateAdapter},)
Insert cell
// Add the rule to the starting schedule
newSchedule1 = schedule.add('rrule', rrule2002)
Insert cell
Insert cell
// Check output
newSchedule1.occurrences().toArray().map(adapter => adapter.date.toLocaleString())
Insert cell
Insert cell
rdate2005 = new Date(2005,6,6)
Insert cell
// Add a rdate to the schedule
newSchedule2 = newSchedule1.add('rdate', rdate2005)
Insert cell
// Check output
newSchedule2.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
newSchedule3 = newSchedule2.add('exdate', rdate2005)
Insert cell
Insert cell
newSchedule3.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
// Add an exrule to the schedule (the same rrule we added earlier)
newSchedule4 = newSchedule3.add('exrule', rrule2002)
Insert cell
// Check output
newSchedule4.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
// Initialize a date
threeDatesWithDuration = new rschedule.Dates({
dates: [new Date(2000), new Date(2001), new Date(2002)],
duration: 32434,
// duration: [123, 2134, 233] //It is possible to set an array as a duration. That doesn't seem right?
dateAdapter: standardAdapter.StandardDateAdapter});
Insert cell
// How do I access the duration of a single date?
threeDatesWithDuration.occurrences //??
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