| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035 |
- import * as $ from 'jquery'
- import * as moment from 'moment'
- import { parseFieldSpecs, proxy, isPrimaryMouseButton } from './util'
- import { assignTo } from './util/object'
- import RenderQueue from './common/RenderQueue'
- import Calendar from './Calendar'
- import DateProfileGenerator from './DateProfileGenerator'
- import InteractiveDateComponent from './component/InteractiveDateComponent'
- import GlobalEmitter from './common/GlobalEmitter'
- import UnzonedRange from './models/UnzonedRange'
- import EventInstance from './models/event/EventInstance'
- /* An abstract class from which other views inherit from
- ----------------------------------------------------------------------------------------------------------------------*/
- export default abstract class View extends InteractiveDateComponent {
- type: string // subclass' view name (string)
- name: string // deprecated. use `type` instead
- title: string // the text that will be displayed in the header's title
- calendar: Calendar // owner Calendar object
- viewSpec: any
- options: any // hash containing all options. already merged with view-specific-options
- renderQueue: RenderQueue
- batchRenderDepth: number = 0
- queuedScroll: object
- isSelected: boolean = false // boolean whether a range of time is user-selected or not
- selectedEventInstance: EventInstance
- eventOrderSpecs: any // criteria for ordering events when they have same date/time
- // for date utils, computed from options
- isHiddenDayHash: boolean[]
- // now indicator
- isNowIndicatorRendered: boolean
- initialNowDate: moment.Moment // result first getNow call
- initialNowQueriedMs: number // ms time the getNow was called
- nowIndicatorTimeoutID: any // for refresh timing of now indicator
- nowIndicatorIntervalID: any // "
- dateProfileGeneratorClass: any // initialized after class
- dateProfileGenerator: any
- // whether minTime/maxTime will affect the activeUnzonedRange. Views must opt-in.
- // initialized after class
- usesMinMaxTime: boolean
- // DEPRECATED
- start: moment.Moment // use activeUnzonedRange
- end: moment.Moment // use activeUnzonedRange
- intervalStart: moment.Moment // use currentUnzonedRange
- intervalEnd: moment.Moment // use currentUnzonedRange
- constructor(calendar, viewSpec) {
- super(null, viewSpec.options)
- this.calendar = calendar
- this.viewSpec = viewSpec
- // shortcuts
- this.type = viewSpec.type
- // .name is deprecated
- this.name = this.type
- this.initRenderQueue()
- this.initHiddenDays()
- this.dateProfileGenerator = new this.dateProfileGeneratorClass(this)
- this.bindBaseRenderHandlers()
- this.eventOrderSpecs = parseFieldSpecs(this.opt('eventOrder'))
- // legacy
- if (this['initialize']) {
- this['initialize']()
- }
- }
- _getView() {
- return this
- }
- // Retrieves an option with the given name
- opt(name) {
- return this.options[name]
- }
- /* Render Queue
- ------------------------------------------------------------------------------------------------------------------*/
- initRenderQueue() {
- this.renderQueue = new RenderQueue({
- event: this.opt('eventRenderWait')
- })
- this.renderQueue.on('start', this.onRenderQueueStart.bind(this))
- this.renderQueue.on('stop', this.onRenderQueueStop.bind(this))
- this.on('before:change', this.startBatchRender)
- this.on('change', this.stopBatchRender)
- }
- onRenderQueueStart() {
- this.calendar.freezeContentHeight()
- this.addScroll(this.queryScroll())
- }
- onRenderQueueStop() {
- if (this.calendar.updateViewSize()) { // success?
- this.popScroll()
- }
- this.calendar.thawContentHeight()
- }
- startBatchRender() {
- if (!(this.batchRenderDepth++)) {
- this.renderQueue.pause()
- }
- }
- stopBatchRender() {
- if (!(--this.batchRenderDepth)) {
- this.renderQueue.resume()
- }
- }
- requestRender(func, namespace, actionType) {
- this.renderQueue.queue(func, namespace, actionType)
- }
- // given func will auto-bind to `this`
- whenSizeUpdated(func) {
- if (this.renderQueue.isRunning) {
- this.renderQueue.one('stop', func.bind(this))
- } else {
- func.call(this)
- }
- }
- /* Title and Date Formatting
- ------------------------------------------------------------------------------------------------------------------*/
- // Computes what the title at the top of the calendar should be for this view
- computeTitle(dateProfile) {
- let unzonedRange
- // for views that span a large unit of time, show the proper interval, ignoring stray days before and after
- if (/^(year|month)$/.test(dateProfile.currentRangeUnit)) {
- unzonedRange = dateProfile.currentUnzonedRange
- } else { // for day units or smaller, use the actual day range
- unzonedRange = dateProfile.activeUnzonedRange
- }
- return this.formatRange(
- {
- start: this.calendar.msToMoment(unzonedRange.startMs, dateProfile.isRangeAllDay),
- end: this.calendar.msToMoment(unzonedRange.endMs, dateProfile.isRangeAllDay)
- },
- dateProfile.isRangeAllDay,
- this.opt('titleFormat') || this.computeTitleFormat(dateProfile),
- this.opt('titleRangeSeparator')
- )
- }
- // Generates the format string that should be used to generate the title for the current date range.
- // Attempts to compute the most appropriate format if not explicitly specified with `titleFormat`.
- computeTitleFormat(dateProfile) {
- let currentRangeUnit = dateProfile.currentRangeUnit
- if (currentRangeUnit === 'year') {
- return 'YYYY'
- } else if (currentRangeUnit === 'month') {
- return this.opt('monthYearFormat') // like "September 2014"
- } else if (dateProfile.currentUnzonedRange.as('days') > 1) {
- return 'll' // multi-day range. shorter, like "Sep 9 - 10 2014"
- } else {
- return 'LL' // one day. longer, like "September 9 2014"
- }
- }
- // Date Setting/Unsetting
- // -----------------------------------------------------------------------------------------------------------------
- setDate(date) {
- let currentDateProfile = this.get('dateProfile')
- let newDateProfile = this.dateProfileGenerator.build(date, undefined, true) // forceToValid=true
- if (
- !currentDateProfile ||
- !currentDateProfile.activeUnzonedRange.equals(newDateProfile.activeUnzonedRange)
- ) {
- this.set('dateProfile', newDateProfile)
- }
- }
- unsetDate() {
- this.unset('dateProfile')
- }
- // Event Data
- // -----------------------------------------------------------------------------------------------------------------
- fetchInitialEvents(dateProfile, callback) {
- let calendar = this.calendar
- let forceAllDay = dateProfile.isRangeAllDay && !this.usesMinMaxTime
- calendar.requestEvents(
- calendar.msToMoment(dateProfile.activeUnzonedRange.startMs, forceAllDay),
- calendar.msToMoment(dateProfile.activeUnzonedRange.endMs, forceAllDay),
- callback
- )
- }
- bindEventChanges() {
- this.listenTo(this.calendar, 'eventsReset', this.resetEvents) // TODO: make this a real event
- }
- unbindEventChanges() {
- this.stopListeningTo(this.calendar, 'eventsReset')
- }
- setEvents(eventsPayload) {
- this.set('currentEvents', eventsPayload)
- this.set('hasEvents', true)
- }
- unsetEvents() {
- this.unset('currentEvents')
- this.unset('hasEvents')
- }
- resetEvents(eventsPayload) {
- this.startBatchRender()
- this.unsetEvents()
- this.setEvents(eventsPayload)
- this.stopBatchRender()
- }
- // Date High-level Rendering
- // -----------------------------------------------------------------------------------------------------------------
- requestDateRender(dateProfile) {
- this.requestRender(() => {
- this.executeDateRender(dateProfile)
- }, 'date', 'init')
- }
- requestDateUnrender() {
- this.requestRender(() => {
- this.executeDateUnrender()
- }, 'date', 'destroy')
- }
- // if dateProfile not specified, uses current
- executeDateRender(dateProfile) {
- super.executeDateRender(dateProfile)
- if (this['render']) {
- this['render']() // TODO: deprecate
- }
- this.trigger('datesRendered')
- this.addScroll({ isDateInit: true })
- this.startNowIndicator() // shouldn't render yet because updateSize will be called soon
- }
- executeDateUnrender() {
- this.unselect()
- this.stopNowIndicator()
- this.trigger('before:datesUnrendered')
- if (this['destroy']) {
- this['destroy']() // TODO: deprecate
- }
- super.executeDateUnrender()
- }
- // "Base" rendering
- // -----------------------------------------------------------------------------------------------------------------
- bindBaseRenderHandlers() {
- this.on('datesRendered', () => {
- this.whenSizeUpdated(
- this.triggerViewRender
- )
- })
- this.on('before:datesUnrendered', () => {
- this.triggerViewDestroy()
- })
- }
- triggerViewRender() {
- this.publiclyTrigger('viewRender', {
- context: this,
- args: [ this, this.el ]
- })
- }
- triggerViewDestroy() {
- this.publiclyTrigger('viewDestroy', {
- context: this,
- args: [ this, this.el ]
- })
- }
- // Event High-level Rendering
- // -----------------------------------------------------------------------------------------------------------------
- requestEventsRender(eventsPayload) {
- this.requestRender(() => {
- this.executeEventRender(eventsPayload)
- this.whenSizeUpdated(
- this.triggerAfterEventsRendered
- )
- }, 'event', 'init')
- }
- requestEventsUnrender() {
- this.requestRender(() => {
- this.triggerBeforeEventsDestroyed()
- this.executeEventUnrender()
- }, 'event', 'destroy')
- }
- // Business Hour High-level Rendering
- // -----------------------------------------------------------------------------------------------------------------
- requestBusinessHoursRender(businessHourGenerator) {
- this.requestRender(() => {
- this.renderBusinessHours(businessHourGenerator)
- }, 'businessHours', 'init')
- }
- requestBusinessHoursUnrender() {
- this.requestRender(() => {
- this.unrenderBusinessHours()
- }, 'businessHours', 'destroy')
- }
- // Misc view rendering utils
- // -----------------------------------------------------------------------------------------------------------------
- // Binds DOM handlers to elements that reside outside the view container, such as the document
- bindGlobalHandlers() {
- super.bindGlobalHandlers()
- this.listenTo(GlobalEmitter.get(), {
- touchstart: this.processUnselect,
- mousedown: this.handleDocumentMousedown
- })
- }
- // Unbinds DOM handlers from elements that reside outside the view container
- unbindGlobalHandlers() {
- super.unbindGlobalHandlers()
- this.stopListeningTo(GlobalEmitter.get())
- }
- /* Now Indicator
- ------------------------------------------------------------------------------------------------------------------*/
- // Immediately render the current time indicator and begins re-rendering it at an interval,
- // which is defined by this.getNowIndicatorUnit().
- // TODO: somehow do this for the current whole day's background too
- startNowIndicator() {
- let unit
- let update
- let delay // ms wait value
- if (this.opt('nowIndicator')) {
- unit = this.getNowIndicatorUnit()
- if (unit) {
- update = proxy(this, 'updateNowIndicator') // bind to `this`
- this.initialNowDate = this.calendar.getNow()
- this.initialNowQueriedMs = new Date().valueOf()
- // wait until the beginning of the next interval
- delay = this.initialNowDate.clone().startOf(unit).add(1, unit).valueOf() - this.initialNowDate.valueOf()
- this.nowIndicatorTimeoutID = setTimeout(() => {
- this.nowIndicatorTimeoutID = null
- update()
- delay = +moment.duration(1, unit)
- delay = Math.max(100, delay) // prevent too frequent
- this.nowIndicatorIntervalID = setInterval(update, delay) // update every interval
- }, delay)
- }
- // rendering will be initiated in updateSize
- }
- }
- // rerenders the now indicator, computing the new current time from the amount of time that has passed
- // since the initial getNow call.
- updateNowIndicator() {
- if (
- this.isDatesRendered &&
- this.initialNowDate // activated before?
- ) {
- this.unrenderNowIndicator() // won't unrender if unnecessary
- this.renderNowIndicator(
- this.initialNowDate.clone().add(new Date().valueOf() - this.initialNowQueriedMs) // add ms
- )
- this.isNowIndicatorRendered = true
- }
- }
- // Immediately unrenders the view's current time indicator and stops any re-rendering timers.
- // Won't cause side effects if indicator isn't rendered.
- stopNowIndicator() {
- if (this.isNowIndicatorRendered) {
- if (this.nowIndicatorTimeoutID) {
- clearTimeout(this.nowIndicatorTimeoutID)
- this.nowIndicatorTimeoutID = null
- }
- if (this.nowIndicatorIntervalID) {
- clearInterval(this.nowIndicatorIntervalID)
- this.nowIndicatorIntervalID = null
- }
- this.unrenderNowIndicator()
- this.isNowIndicatorRendered = false
- }
- }
- /* Dimensions
- ------------------------------------------------------------------------------------------------------------------*/
- updateSize(totalHeight, isAuto, isResize) {
- if (this['setHeight']) { // for legacy API
- this['setHeight'](totalHeight, isAuto)
- } else {
- super.updateSize(totalHeight, isAuto, isResize)
- }
- this.updateNowIndicator()
- }
- /* Scroller
- ------------------------------------------------------------------------------------------------------------------*/
- addScroll(scroll) {
- let queuedScroll = this.queuedScroll || (this.queuedScroll = {})
- assignTo(queuedScroll, scroll)
- }
- popScroll() {
- this.applyQueuedScroll()
- this.queuedScroll = null
- }
- applyQueuedScroll() {
- if (this.queuedScroll) {
- this.applyScroll(this.queuedScroll)
- }
- }
- queryScroll() {
- let scroll = {}
- if (this.isDatesRendered) {
- assignTo(scroll, this.queryDateScroll())
- }
- return scroll
- }
- applyScroll(scroll) {
- if (scroll.isDateInit && this.isDatesRendered) {
- assignTo(scroll, this.computeInitialDateScroll())
- }
- if (this.isDatesRendered) {
- this.applyDateScroll(scroll)
- }
- }
- computeInitialDateScroll() {
- return {} // subclasses must implement
- }
- queryDateScroll() {
- return {} // subclasses must implement
- }
- applyDateScroll(scroll) {
- // subclasses must implement
- }
- /* Event Drag-n-Drop
- ------------------------------------------------------------------------------------------------------------------*/
- reportEventDrop(eventInstance, eventMutation, el, ev) {
- let eventManager = this.calendar.eventManager
- let undoFunc = eventManager.mutateEventsWithId(
- eventInstance.def.id,
- eventMutation
- )
- let dateMutation = eventMutation.dateMutation
- // update the EventInstance, for handlers
- if (dateMutation) {
- eventInstance.dateProfile = dateMutation.buildNewDateProfile(
- eventInstance.dateProfile,
- this.calendar
- )
- }
- this.triggerEventDrop(
- eventInstance,
- // a drop doesn't necessarily mean a date mutation (ex: resource change)
- (dateMutation && dateMutation.dateDelta) || moment.duration(),
- undoFunc,
- el, ev
- )
- }
- // Triggers event-drop handlers that have subscribed via the API
- triggerEventDrop(eventInstance, dateDelta, undoFunc, el, ev) {
- this.publiclyTrigger('eventDrop', {
- context: el[0],
- args: [
- eventInstance.toLegacy(),
- dateDelta,
- undoFunc,
- ev,
- {}, // {} = jqui dummy
- this
- ]
- })
- }
- /* External Element Drag-n-Drop
- ------------------------------------------------------------------------------------------------------------------*/
- // Must be called when an external element, via jQuery UI, has been dropped onto the calendar.
- // `meta` is the parsed data that has been embedded into the dragging event.
- // `dropLocation` is an object that contains the new zoned start/end/allDay values for the event.
- reportExternalDrop(singleEventDef, isEvent, isSticky, el, ev, ui) {
- if (isEvent) {
- this.calendar.eventManager.addEventDef(singleEventDef, isSticky)
- }
- this.triggerExternalDrop(singleEventDef, isEvent, el, ev, ui)
- }
- // Triggers external-drop handlers that have subscribed via the API
- triggerExternalDrop(singleEventDef, isEvent, el, ev, ui) {
- // trigger 'drop' regardless of whether element represents an event
- this.publiclyTrigger('drop', {
- context: el[0],
- args: [
- singleEventDef.dateProfile.start.clone(),
- ev,
- ui,
- this
- ]
- })
- if (isEvent) {
- // signal an external event landed
- this.publiclyTrigger('eventReceive', {
- context: this,
- args: [
- singleEventDef.buildInstance().toLegacy(),
- this
- ]
- })
- }
- }
- /* Event Resizing
- ------------------------------------------------------------------------------------------------------------------*/
- // Must be called when an event in the view has been resized to a new length
- reportEventResize(eventInstance, eventMutation, el, ev) {
- let eventManager = this.calendar.eventManager
- let undoFunc = eventManager.mutateEventsWithId(
- eventInstance.def.id,
- eventMutation
- )
- // update the EventInstance, for handlers
- eventInstance.dateProfile = eventMutation.dateMutation.buildNewDateProfile(
- eventInstance.dateProfile,
- this.calendar
- )
- this.triggerEventResize(
- eventInstance,
- eventMutation.dateMutation.endDelta,
- undoFunc,
- el, ev
- )
- }
- // Triggers event-resize handlers that have subscribed via the API
- triggerEventResize(eventInstance, durationDelta, undoFunc, el, ev) {
- this.publiclyTrigger('eventResize', {
- context: el[0],
- args: [
- eventInstance.toLegacy(),
- durationDelta,
- undoFunc,
- ev,
- {}, // {} = jqui dummy
- this
- ]
- })
- }
- /* Selection (time range)
- ------------------------------------------------------------------------------------------------------------------*/
- // Selects a date span on the view. `start` and `end` are both Moments.
- // `ev` is the native mouse event that begin the interaction.
- select(footprint, ev?) {
- this.unselect(ev)
- this.renderSelectionFootprint(footprint)
- this.reportSelection(footprint, ev)
- }
- renderSelectionFootprint(footprint) {
- if (this['renderSelection']) { // legacy method in custom view classes
- this['renderSelection'](
- footprint.toLegacy(this.calendar)
- )
- } else {
- super.renderSelectionFootprint(footprint)
- }
- }
- // Called when a new selection is made. Updates internal state and triggers handlers.
- reportSelection(footprint, ev?) {
- this.isSelected = true
- this.triggerSelect(footprint, ev)
- }
- // Triggers handlers to 'select'
- triggerSelect(footprint, ev?) {
- let dateProfile = this.calendar.footprintToDateProfile(footprint) // abuse of "Event"DateProfile?
- this.publiclyTrigger('select', {
- context: this,
- args: [
- dateProfile.start,
- dateProfile.end,
- ev,
- this
- ]
- })
- }
- // Undoes a selection. updates in the internal state and triggers handlers.
- // `ev` is the native mouse event that began the interaction.
- unselect(ev?) {
- if (this.isSelected) {
- this.isSelected = false
- if (this['destroySelection']) {
- this['destroySelection']() // TODO: deprecate
- }
- this.unrenderSelection()
- this.publiclyTrigger('unselect', {
- context: this,
- args: [ ev, this ]
- })
- }
- }
- /* Event Selection
- ------------------------------------------------------------------------------------------------------------------*/
- selectEventInstance(eventInstance) {
- if (
- !this.selectedEventInstance ||
- this.selectedEventInstance !== eventInstance
- ) {
- this.unselectEventInstance()
- this.getEventSegs().forEach(function(seg) {
- if (
- seg.footprint.eventInstance === eventInstance &&
- seg.el // necessary?
- ) {
- seg.el.addClass('fc-selected')
- }
- })
- this.selectedEventInstance = eventInstance
- }
- }
- unselectEventInstance() {
- if (this.selectedEventInstance) {
- this.getEventSegs().forEach(function(seg) {
- if (seg.el) { // necessary?
- seg.el.removeClass('fc-selected')
- }
- })
- this.selectedEventInstance = null
- }
- }
- isEventDefSelected(eventDef) {
- // event references might change on refetchEvents(), while selectedEventInstance doesn't,
- // so compare IDs
- return this.selectedEventInstance && this.selectedEventInstance.def.id === eventDef.id
- }
- /* Mouse / Touch Unselecting (time range & event unselection)
- ------------------------------------------------------------------------------------------------------------------*/
- // TODO: move consistently to down/start or up/end?
- // TODO: don't kill previous selection if touch scrolling
- handleDocumentMousedown(ev) {
- if (isPrimaryMouseButton(ev)) {
- this.processUnselect(ev)
- }
- }
- processUnselect(ev) {
- this.processRangeUnselect(ev)
- this.processEventUnselect(ev)
- }
- processRangeUnselect(ev) {
- let ignore
- // is there a time-range selection?
- if (this.isSelected && this.opt('unselectAuto')) {
- // only unselect if the clicked element is not identical to or inside of an 'unselectCancel' element
- ignore = this.opt('unselectCancel')
- if (!ignore || !$(ev.target).closest(ignore).length) {
- this.unselect(ev)
- }
- }
- }
- processEventUnselect(ev) {
- if (this.selectedEventInstance) {
- if (!$(ev.target).closest('.fc-selected').length) {
- this.unselectEventInstance()
- }
- }
- }
- /* Triggers
- ------------------------------------------------------------------------------------------------------------------*/
- triggerBaseRendered() {
- this.publiclyTrigger('viewRender', {
- context: this,
- args: [ this, this.el ]
- })
- }
- triggerBaseUnrendered() {
- this.publiclyTrigger('viewDestroy', {
- context: this,
- args: [ this, this.el ]
- })
- }
- // Triggers handlers to 'dayClick'
- // Span has start/end of the clicked area. Only the start is useful.
- triggerDayClick(footprint, dayEl, ev) {
- let dateProfile = this.calendar.footprintToDateProfile(footprint) // abuse of "Event"DateProfile?
- this.publiclyTrigger('dayClick', {
- context: dayEl,
- args: [ dateProfile.start, ev, this ]
- })
- }
- /* Date Utils
- ------------------------------------------------------------------------------------------------------------------*/
- // For DateComponent::getDayClasses
- isDateInOtherMonth(date, dateProfile) {
- return false
- }
- // Arguments after name will be forwarded to a hypothetical function value
- // WARNING: passed-in arguments will be given to generator functions as-is and can cause side-effects.
- // Always clone your objects if you fear mutation.
- getUnzonedRangeOption(name) {
- let val = this.opt(name)
- if (typeof val === 'function') {
- val = val.apply(
- null,
- Array.prototype.slice.call(arguments, 1)
- )
- }
- if (val) {
- return this.calendar.parseUnzonedRange(val)
- }
- }
- /* Hidden Days
- ------------------------------------------------------------------------------------------------------------------*/
- // Initializes internal variables related to calculating hidden days-of-week
- initHiddenDays() {
- let hiddenDays = this.opt('hiddenDays') || [] // array of day-of-week indices that are hidden
- let isHiddenDayHash = [] // is the day-of-week hidden? (hash with day-of-week-index -> bool)
- let dayCnt = 0
- let i
- if (this.opt('weekends') === false) {
- hiddenDays.push(0, 6) // 0=sunday, 6=saturday
- }
- for (i = 0; i < 7; i++) {
- if (
- !(isHiddenDayHash[i] = hiddenDays.indexOf(i) !== -1)
- ) {
- dayCnt++
- }
- }
- if (!dayCnt) {
- throw new Error('invalid hiddenDays') // all days were hidden? bad.
- }
- this.isHiddenDayHash = isHiddenDayHash
- }
- // Remove days from the beginning and end of the range that are computed as hidden.
- // If the whole range is trimmed off, returns null
- trimHiddenDays(inputUnzonedRange) {
- let start = inputUnzonedRange.getStart()
- let end = inputUnzonedRange.getEnd()
- if (start) {
- start = this.skipHiddenDays(start)
- }
- if (end) {
- end = this.skipHiddenDays(end, -1, true)
- }
- if (start === null || end === null || start < end) {
- return new UnzonedRange(start, end)
- }
- return null
- }
- // Is the current day hidden?
- // `day` is a day-of-week index (0-6), or a Moment
- isHiddenDay(day) {
- if (moment.isMoment(day)) {
- day = day.day()
- }
- return this.isHiddenDayHash[day]
- }
- // Incrementing the current day until it is no longer a hidden day, returning a copy.
- // DOES NOT CONSIDER validUnzonedRange!
- // If the initial value of `date` is not a hidden day, don't do anything.
- // Pass `isExclusive` as `true` if you are dealing with an end date.
- // `inc` defaults to `1` (increment one day forward each time)
- skipHiddenDays(date, inc= 1, isExclusive= false) {
- let out = date.clone()
- while (
- this.isHiddenDayHash[(out.day() + (isExclusive ? inc : 0) + 7) % 7]
- ) {
- out.add(inc, 'days')
- }
- return out
- }
- }
- View.prototype.usesMinMaxTime = false
- View.prototype.dateProfileGeneratorClass = DateProfileGenerator
- View.watch('displayingDates', [ 'isInDom', 'dateProfile' ], function(deps) {
- this.requestDateRender(deps.dateProfile)
- }, function() {
- this.requestDateUnrender()
- })
- View.watch('displayingBusinessHours', [ 'displayingDates', 'businessHourGenerator' ], function(deps) {
- this.requestBusinessHoursRender(deps.businessHourGenerator)
- }, function() {
- this.requestBusinessHoursUnrender()
- })
- View.watch('initialEvents', [ 'dateProfile' ], function(deps, callback) {
- this.fetchInitialEvents(deps.dateProfile, callback)
- }, null, true) // async=true
- View.watch('bindingEvents', [ 'initialEvents' ], function(deps) {
- this.setEvents(deps.initialEvents)
- this.bindEventChanges()
- }, function() {
- this.unbindEventChanges()
- this.unsetEvents()
- })
- View.watch('displayingEvents', [ 'displayingDates', 'hasEvents' ], function() {
- this.requestEventsRender(this.get('currentEvents'))
- }, function() {
- this.requestEventsUnrender()
- })
- View.watch('title', [ 'dateProfile' ], function(deps) {
- return (this.title = this.computeTitle(deps.dateProfile)) // assign to View for legacy reasons
- })
- View.watch('legacyDateProps', [ 'dateProfile' ], function(deps) {
- let calendar = this.calendar
- let dateProfile = deps.dateProfile
- // DEPRECATED, but we need to keep it updated...
- this.start = calendar.msToMoment(dateProfile.activeUnzonedRange.startMs, dateProfile.isRangeAllDay)
- this.end = calendar.msToMoment(dateProfile.activeUnzonedRange.endMs, dateProfile.isRangeAllDay)
- this.intervalStart = calendar.msToMoment(dateProfile.currentUnzonedRange.startMs, dateProfile.isRangeAllDay)
- this.intervalEnd = calendar.msToMoment(dateProfile.currentUnzonedRange.endMs, dateProfile.isRangeAllDay)
- })
|