-
Notifications
You must be signed in to change notification settings - Fork 2
/
timeline.js
136 lines (116 loc) · 3.16 KB
/
timeline.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/**
* TimelineJS calculates the right differences between two dates based on
* given date or date ranges.
*
* @version 2.0
* @author Jakob Ploens <[email protected]>
* @copyright Jakob Ploens 2016
* @license The MIT License
*/
var Timeline = function(list, settings){
var self = this;
/**
* Define default settings we go for.
*/
this.defaults = {
spacing: 5,
vertical: true
};
/**
* Get options.
*/
this.options = merge(this.defaults, settings);
/**
* Save some objects.
*/
this.timeline = list;
this.items = this.timeline.children;
this.start = this.items[0].getAttribute('data-timeline-date');
this.end = this.items[this.items.length - 1].getAttribute('data-timeline-date');
/**
* Init function which builds our tooltip
*
* @return prototype
*/
this.init = function(){
self.range = self.convertDate(self.end) - self.convertDate(self.start);
/**
* Remove existing tooltips, just to be sure
*/
Array.prototype.forEach.call(self.items, function(item, i){
var previousevent = item.previousElementSibling;
if(!previousevent) return;
var date = item.getAttribute('data-timeline-date');
var previousdate = previousevent.getAttribute('data-timeline-end') || previousevent.getAttribute('data-timeline-date');
var interval = self.convertDate(date) - self.convertDate(previousdate);
var percentage = (interval / self.range) * 100;
var margin = self.options.spacing * percentage;
if(self.options.vertical){
item.style.marginTop = margin + 'px';
} else {
item.style.marginLeft = margin + 'px';
}
});
/**
* Return this
*/
return self;
};
/**
* Convert Date
*/
this.convertDate = function(date){
if(!date || date === ""){
return;
}
var d = date.toString().split("-");
var y = (d[0]) ? d[0] : "1970";
var m = (d[1]) ? d[1] : "01";
var t = (d[2]) ? d[2] : "01";
var b = new Date(y, m, t);
return Date.parse(b);
};
/**
* Destroy plugin and unbind events.
*/
this.destroy = function(){
self = null;
delete self;
return;
};
/**
* Return init function
*/
return this.init();
};
/**
* Short function to merge two objects.
*
* @param object (gets overwritten)
* @param object (overwrites)
* @return object (merged)
*/
function merge(objectA, objectB){
var result = {};
for(var attr in objectA){
result[attr] = objectA[attr];
}
for(attr in objectB){
result[attr] = objectB[attr];
}
return result;
}
if(window.jQuery){
(function($){
'use strict';
/**
* Initialize jQuery plugin
*/
$.fn.timeline = function(options){
$(this).each(function(){
var tooltip = new Timeline(this, options);
});
return;
};
})(jQuery);
}