Below is a list of props that can be passed to the List schedules atom.
Name | Required | Description |
---|---|---|
getRedirectUrl | No | Callback function that determines where the user should be redirected when they click on a schedule from the atom |
Combining list schedules atom with availability settings atom
The List schedules atom works best when combined with the Availability settings atom to provide a seamless experience. In order to combine both of atom, here are the steps we recommend:1
Setup list schedules atom
Create a page for demostrating the list schedules atom.Below code snippet can be used to setup the list schedules atom on a new page
getRedirectUrl
prop is a callback function that determines where the user should be redirected when they click on a schedule from the atom. Say if you want to display your availability settings atom on the page /availability/:scheduleId
, you need to make sure you return the exact same url when you call the getRedirectUrl
function.2
Setup availability settings atom
Create a page for demonstrating the availability settings atom. This should be a dynamic route that accepts a schedule id as a query parameter, and then the schedule id gets passed to the availability settings atom.Below code snippet can be used to obtain the
scheduleId
and display the availability settings atomLink to the example app can be found
here