This repository has been archived by the owner on Apr 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
147 lines (119 loc) · 2.28 KB
/
index.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
137
138
139
140
141
142
143
144
145
146
147
/**
* dependencies
*/
var emitter = require('emitter')
, classes = require('classes')
, events = require('events')
, indexof = require('indexof');
/**
* export `Cycle`.
*/
module.exports = Cycle;
/**
* Initialize a `Cycle` with `el`.
*
* @param {Element} el
*/
function Cycle(el){
if (!(this instanceof Cycle)) return new Cycle(el);
if (!el) throw new TypeError('cycle(): requires an element');
this.events = events(el, this);
this.els = el.children;
this.el = el;
this.selected = el.children[1];
this.i = 1;
this.bind();
}
/**
* mixin `emitter`.
*/
emitter(Cycle.prototype);
/**
* bind internal events.
*
* @return {Cycle}
*/
Cycle.prototype.bind = function(){
this.events.bind('click');
this.events.bind('mousewheel');
return this;
};
/**
* unbind internal events.
*
* @return {Cycle}
*/
Cycle.prototype.unbind = function(){
this.events.unbind();
return this;
};
/**
* Select the given `el` or `i`.
*
* @param {Number|Element} el
* @return {Cycle}
*/
Cycle.prototype.select = function(el){
if ('number' == typeof el) el = this.els[el];
if (!this.selectable(el)) return;
// rect
var rect = el.getBoundingClientRect();
this.i = indexof(el);
// calculate top
var top = (this.i - 1) * rect.height;
// set top.
this.el.style.top = 0 > top
? (top + 'px').substr(1)
: '-' + top + 'px';
// select
classes(this.selected).remove('selected');
classes(el).add('selected');
this.selected = el;
this.emit('select', this.selected);
return this;
};
/**
* Go up.
*
* @return {Cycle}
*/
Cycle.prototype.up = function(e){
if (e) e.preventDefault();
return this.select(this.i - 1);
};
/**
* Go down.
*
* @return {Cycle}
*/
Cycle.prototype.down = function(e){
if (e) e.preventDefault();
return this.select(this.i + 1);
};
/**
* Check if the given `el` is selectable.
*
* @param {Element} el
* @return {Boolean}
* @api private
*/
Cycle.prototype.selectable = function(el){
return null != el
&& el.parentNode == this.el
&& !classes(el).has('selected');
};
/**
* on-click
*/
Cycle.prototype.onclick = function(e){
this.select(e.target);
};
/**
* on-mousewheel
*/
Cycle.prototype.onmousewheel = function(e){
e.preventDefault();
return 0 > e.wheelDelta
? this.down()
: this.up();
};