| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- describe('select callback', function() {
- var options
- beforeEach(function() {
- affix('#cal')
- options = {
- defaultDate: '2014-05-25',
- selectable: true,
- longPressDelay: 100
- }
- })
- 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', {
- end: '.fc-day[data-date="2014-05-06"]',
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- it('gets fired correctly when the user selects cells via touch', 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', {
- isTouch: true,
- delay: 200,
- end: '.fc-day[data-date="2014-05-06"]',
- 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', {
- end: '.fc-day[data-date="2014-04-28"]',
- 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-view .fc-day-grid .fc-day:eq(3)').simulate('drag', { // will be 2014-05-28 for LTR and RTL
- dx: $('.fc-sun').outerWidth() * (isRTL ? -1 : 1), // the width of one column
- 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-view .fc-day-grid .fc-day:eq(3)').simulate('drag', { // will be 2014-05-28 for LTR and RTL
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- })
- describe('when selecting timed slots', function() {
- 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)
- $('.fc-slats tr:eq(18) td:not(.fc-time)').simulate('drag', { // middle will be 2014-05-28T09:00:00
- dy: $('.fc-slats tr:eq(18)').outerHeight() * 2, // move down two slots
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- it('gets fired correctly when the user selects slots via touch', 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)
- setTimeout(function() { // prevent scroll from being triggered, killing the select interaction
- $('.fc-slats tr:eq(18) td:not(.fc-time)').simulate('drag', { // middle will be 2014-05-28T09:00:00
- isTouch: true,
- delay: 200,
- dy: $('.fc-slats tr:eq(18)').outerHeight() * 2, // move down two slots
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- }, 0)
- })
- it('gets fired correctly when the user selects slots in a different day', 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-29T10:30:00')
- }
- spyOn(options, 'select').and.callThrough()
- $('#cal').fullCalendar(options)
- $('.fc-slats tr:eq(18) td:not(.fc-time)').simulate('drag', { // middle will be 2014-05-28T09:00:00
- dx: $('.fc-day-header:first').outerWidth() * 0.9 * (isRTL ? -1 : 1), // one day ahead
- dy: $('.fc-slats tr:eq(18)').outerHeight() * 2, // move down two slots
- 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)
- $('.fc-slats tr:eq(18) td:not(.fc-time)').simulate('drag', { // middle will be 2014-05-28T09:00:00
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- })
- })
- })
- })
- describe('when selectMinDistance', function() {
- beforeEach(function() {
- options.selectMinDistance = 10
- })
- it('will fire when dragged beyond distance', function(done) {
- options.select = function() {}
- spyOn(options, 'select').and.callThrough()
- $('#cal').fullCalendar(options)
- $('.fc-day[data-date="2014-04-28"]').simulate('drag', {
- dx: 12,
- dy: 0,
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- it('will not fire when not dragged beyond distance', function(done) {
- options.select = function() {}
- spyOn(options, 'select').and.callThrough()
- $('#cal').fullCalendar(options)
- $('.fc-day[data-date="2014-04-28"]').simulate('drag', {
- dx: 8,
- dy: 0,
- callback: function() {
- expect(options.select).not.toHaveBeenCalled()
- done()
- }
- })
- })
- })
- it('will keep the correct locale', function(done) {
- options.locale = 'fr'
- options.select = function(start, end) {
- expect(start.locale()).toBe('fr')
- expect(end.locale()).toBe('fr')
- }
- spyOn(options, 'select').and.callThrough()
- $('#cal').fullCalendar(options)
- $('.fc-day[data-date="2014-04-28"]').simulate('drag', {
- callback: function() {
- expect(options.select).toHaveBeenCalled()
- done()
- }
- })
- })
- })
|