Skip to content

Given a set of events, render the events on a single day calendar (similar to Outlook, Calendar.app, and Google Calendar)

Notifications You must be signed in to change notification settings

vijayawoshe/calendar-coding-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Calendar Challenge

Calendar Challenge

Given a set of events, render the events on a single day calendar (similar to Outlook, Calendar.app, and Google Calendar). There are several properties of the layout:

  1. No events may visually overlap.
  2. If two events collide in time, they must have the same width.
  3. An event should utilize the maximum width available, but constraint 2) takes precedence over this constraint.

Each event is represented by a JS object with a start and end attribute. The value of these attributes is the number of minutes since 9am. So {start:30, end:90) represents an event from 9:30am to 10:30am. The events should be rendered in a container that is 620px wide (600px + 10px padding on the left/right) and 720px (the day will end at 9pm).

The styling of the events should match the attached screenshot. You may structure your code however you like, but you must implement the following function in the global namespace (can be called from the developer console). The function takes in an array of events and will lay out the events according to the above description.

function layOutDay(events) {}

This function will be invoked from the console for testing purposes. If it cannot be invoked, the submission will be rejected.

In your submission, please implement the calendar with the following input:

[ {start: 30, end: 150}, {start: 540, end: 600}, {start: 560, end: 620}, {start: 610, end: 670} ];

A screenshot of the expected output is attached.

FAQ

  1. Are frameworks such as JQuery, MooTools, etc. allowed? Yes, but please include the file with your source code.

  2. Is there a maximum bound on the number of events? You can assume a maximum of 100 events for rendering reasons, but your solution should be generalized.

  3. Does my solution need to match the image pixel for pixel? No, we will not be testing for pixel matching.

  4. Is it safe to assume that I am supposed to re-render the entire calendar day if the layOutDay method is called in the Console? Yes, you should throw everything away and re-render from scratch every time the function is called.

Screenshot of Final Result

Final Result

About

Given a set of events, render the events on a single day calendar (similar to Outlook, Calendar.app, and Google Calendar)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages