Published
Edited
Aug 8, 2019
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
// jsonTools = import('https://unpkg.com/@rschedule/json-tools@0.11.0/build/main.js?module')
jsonTools = import('@rschedule/json-tools')
Insert cell
rschedule.RScheduleConfig.defaultDateAdapter = standardAdapter.StandardDateAdapter;
Insert cell
Insert cell
schedule = new rschedule.Schedule({
// rdates: [new Date(1800,10,23)], // This works
// rdates: [{start: [new Date(1800,10,23), new Date()], duration: 1212}], // Throws "invalid date" ERROR
// rdates: [{start: new Date(1800,10,23), duration: 1212}], // Throws "invalid date" ERROR
// rdates: [{start: new Date(1969), data: 'USA lands on the moon'}], // Throws "invalid date" ERROR
data: "Event Title",
dateAdapter: standardAdapter.StandardDateAdapter,
});
Insert cell
Insert cell
dates = new rschedule.Dates({
dates: [new standardAdapter.StandardDateAdapter(new Date(), {duration: 1000}),
new standardAdapter.StandardDateAdapter(new Date(2002,4,2), {duration: 1000})],
// duration: 5454,
data: 'Title of date',
dateAdapter: standardAdapter.StandardDateAdapter
});
Insert cell
workingSchedule = new rschedule.Schedule({
rdates: [new Date(1800,10,23)], // This works
data: "Event Title",
dateAdapter: standardAdapter.StandardDateAdapter,
});
Insert cell
workingSchedule.add('rdate', dates)
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