forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect-callback.js
187 lines (182 loc) · 6.62 KB
/
select-callback.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
describe('select callback', function() {
var options;
beforeEach(function() {
affix('#cal');
options = {
defaultDate: '2014-05-25',
selectable: true
};
});
afterEach(function() {
$('#cal').fullCalendar('destroy');
});
[ false, true ].forEach(function(isRTL) {
describe('when isRTL is ' + isRTL, function() {
beforeEach(function() {
options.isRTL = isRTL;
});
describe('when in month view', function() {
beforeEach(function() {
options.defaultView = 'month';
});
it('gets fired correctly when the user selects cells', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(false);
expect(end.hasTime()).toEqual(false);
expect(start).toEqualMoment('2014-04-28');
expect(end).toEqualMoment('2014-05-07');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('.fc-day[data-date="2014-04-28"]').simulate('drag-n-drop', {
dropTarget: '.fc-day[data-date="2014-05-06"]',
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
it('gets fired correctly when the user selects just one cell', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(false);
expect(end.hasTime()).toEqual(false);
expect(start).toEqualMoment('2014-04-28');
expect(end).toEqualMoment('2014-04-29');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('.fc-day[data-date="2014-04-28"]').simulate('drag-n-drop', {
dropTarget: '.fc-day[data-date="2014-04-28"]',
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
});
describe('when in agendaWeek view', function() {
beforeEach(function() {
options.defaultView = 'agendaWeek';
});
describe('when selecting all-day slots', function() {
it('gets fired correctly when the user selects cells', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(false);
expect(end.hasTime()).toEqual(false);
expect(start).toEqualMoment('2014-05-28');
expect(end).toEqualMoment('2014-05-30');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('.fc-agenda-allday .fc-day-content').simulate('drag-n-drop', { // middle will be 2014-05-28
dx: $('.fc-sun').outerWidth() * (isRTL ? -1 : 1), // the width of one column
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
it('gets fired correctly when the user selects a single cell', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(false);
expect(end.hasTime()).toEqual(false);
expect(start).toEqualMoment('2014-05-28');
expect(end).toEqualMoment('2014-05-29');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('.fc-agenda-allday .fc-day-content').simulate('drag-n-drop', { // middle will be 2014-05-28
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
});
describe('when selecting timed slots', function(done) {
it('gets fired correctly when the user selects slots', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(true);
expect(end.hasTime()).toEqual(true);
expect(start).toEqualMoment('2014-05-28T09:00:00');
expect(end).toEqualMoment('2014-05-28T10:30:00');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('tr.fc-slot18 td').simulate('drag-n-drop', { // middle will be 2014-05-28T09:00:00
dy: $('tr.fc-slot18 td').outerHeight() * 2, // move down two slots
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
it('gets fired correctly when the user selects a single slot', function(done) {
options.select = function(start, end, jsEvent, view) {
expect(moment.isMoment(start)).toEqual(true);
expect(moment.isMoment(end)).toEqual(true);
expect(typeof jsEvent).toEqual('object'); // TODO: more descrimination
expect(typeof view).toEqual('object'); // "
expect(start.hasTime()).toEqual(true);
expect(end.hasTime()).toEqual(true);
expect(start).toEqualMoment('2014-05-28T09:00:00');
expect(end).toEqualMoment('2014-05-28T09:30:00');
};
spyOn(options, 'select').and.callThrough();
$('#cal').fullCalendar(options);
$('tr.fc-slot18 td').simulate('drag-n-drop', { // middle will be 2014-05-28T09:00:00
interpolation: {
stepCount: 10,
duration: 100
},
callback: function() {
expect(options.select).toHaveBeenCalled();
done();
}
});
});
});
});
});
});
});