Simple, customizable & draggable timetable.
Demo located here: http://drag-timetable.herokuapp.com
- Generates table, with custom sizes
- Easy drag-and-drop for changing times of tasks
- Simple API to add/remove/retrieve tasks
- Resizable tasks (change duration of tasks)
- 24 hour time format option
- Ability to drag tasks to/from other containers
- Multiple days (i.e. a full week timetable)
- Horizontal orientation option
Install via NPM.
npm install drag-timetable --save
Embed style.css in your page.
Will return a drag context object. All other methods in this README belong to this context object. The container is an element which will become the parent of the timetable. If you wish to create a timetable with the default options, pass in an empty object into the options parameter. Otherwise, you can specify some or all of the possible options in this parameter.
Here are the default options:
var options = {
timeHeaderSize: '100px', // width of the time header column
taskAreaSize: '150px', // width of the task column
quarterHourAreaSize: '17px', // height of a 15 minute segment
hourStart = 8, // starting time of timetable, 0 to 23
hourEnd = 16, // ending time of timetable, 0 to 23
clickThreshold = 200, // max. time in ms between mousedown and mouseup for click event
};
Sets the callback which is invoked whenever a task is moved. The updated task object will be passed into the callback.
Sets the callback which is invoked whenever a task is clicked. The updated task object will be passed into the callback.
Attaches a task to the timetable. If isAddingToTimetable
is true, the task will be added to the timetable DOM (just set this to true for now).
Here is an example of a valid task object:
var task = {
id: 1, // unique id for task
start: 9, // starting time for task
end: 11, // ending time for task
text: 'Task 1 - Get this stuff done!' // This can be a string or an element
};
Removes task from timetable.
Returns task object from timetable;
Returns an object of task ids mapped to task objects.