| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- import { assignTo } from './util/object'
- import { elementClosest } from './util/dom-manip'
- import { isPrimaryMouseButton } from './util/dom-event'
- import { parseFieldSpecs } from './util/misc'
- import Calendar from './Calendar'
- import { default as DateProfileGenerator, DateProfile } from './DateProfileGenerator'
- import InteractiveDateComponent from './component/InteractiveDateComponent'
- import GlobalEmitter from './common/GlobalEmitter'
- import UnzonedRange from './models/UnzonedRange'
- import { DateMarker, addDays, addMs, diffWholeDays } from './datelib/marker'
- import { createDuration } from './datelib/duration'
- import { createFormatter } from './datelib/formatting'
- import { EventInstance } from './reducers/event-store'
- import { Selection } from './reducers/selection'
- /* 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
- 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: DateMarker // 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: DateProfileGenerator
- // whether minTime/maxTime will affect the activeUnzonedRange. Views must opt-in.
- // initialized after class
- usesMinMaxTime: boolean
- // DEPRECATED
- start: Date // use activeUnzonedRange
- end: Date // use activeUnzonedRange
- intervalStart: Date // use currentUnzonedRange
- intervalEnd: Date // 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.initHiddenDays()
- this.dateProfileGenerator = new this.dateProfileGeneratorClass(this)
- this.bindBaseRenderHandlers()
- this.eventOrderSpecs = parseFieldSpecs(this.opt('eventOrder'))
- // legacy
- if (this['initialize']) {
- this['initialize']()
- }
- }
- // Retrieves an option with the given name
- opt(name) {
- return this.options[name]
- }
- /* Render Queue
- ------------------------------------------------------------------------------------------------------------------*/
- // given func will auto-bind to `this`
- whenSizeUpdated(func) {
- }
- /* Title and Date Formatting
- ------------------------------------------------------------------------------------------------------------------*/
- // Computes what the title at the top of the calendar should be for this view
- computeTitle(dateProfile) {
- let dateEnv = this.getDateEnv()
- 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
- }
- // TODO: precompute
- // TODO: how will moment plugin deal with this?
- let rawTitleFormat = this.opt('titleFormat') || this.computeTitleFormat(dateProfile)
- if (typeof rawTitleFormat === 'object') {
- rawTitleFormat = assignTo(
- { separator: this.opt('titleRangeSeparator') },
- rawTitleFormat
- )
- }
- return dateEnv.formatRange(
- unzonedRange.start,
- unzonedRange.end,
- createFormatter(rawTitleFormat),
- { isEndExclusive: dateProfile.isRangeAllDay }
- )
- }
- // 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 { year: 'numeric' }
- } else if (currentRangeUnit === 'month') {
- return { year: 'numeric', month: 'long' } // like "September 2014"
- } else {
- let days = diffWholeDays(
- dateProfile.currentUnzonedRange.start,
- dateProfile.currentUnzonedRange.end
- )
- if (days !== null && days > 1) {
- // multi-day range. shorter, like "Sep 9 - 10 2014"
- return { year: 'numeric', month: 'short', day: 'numeric' }
- } else {
- // one day. longer, like "September 9 2014"
- return { year: 'numeric', month: 'long', day: 'numeric' }
- }
- }
- }
- // Date Setting/Unsetting
- // -----------------------------------------------------------------------------------------------------------------
- computeNewDateProfile(date: DateMarker): DateProfile {
- let currentDateProfile = this.dateProfile
- let newDateProfile = this.dateProfileGenerator.build(date, undefined, true) // forceToValid=true
- if (
- !currentDateProfile ||
- !currentDateProfile.activeUnzonedRange.equals(newDateProfile.activeUnzonedRange)
- ) {
- return newDateProfile
- }
- }
- updateMiscDateProps(dateProfile) {
- let dateEnv = this.getDateEnv()
- this.title = this.computeTitle(dateProfile)
- // DEPRECATED, but we need to keep it updated...
- this.start = dateEnv.toDate(dateProfile.activeUnzonedRange.start)
- this.end = dateEnv.toDate(dateProfile.activeUnzonedRange.end)
- this.intervalStart = dateEnv.toDate(dateProfile.currentUnzonedRange.start)
- this.intervalEnd = dateEnv.toDate(dateProfile.currentUnzonedRange.end)
- }
- // Date Rendering
- // -----------------------------------------------------------------------------------------------------------------
- // if dateProfile not specified, uses current
- renderDates() {
- super.renderDates()
- this.trigger('datesRendered')
- this.addScroll({ isDateInit: true })
- this.startNowIndicator() // shouldn't render yet because updateSize will be called soon
- }
- unrenderDates() {
- this.unselect()
- this.stopNowIndicator()
- this.trigger('before:datesUnrendered')
- super.unrenderDates()
- }
- // "Base" rendering
- // -----------------------------------------------------------------------------------------------------------------
- bindBaseRenderHandlers() {
- this.on('datesRendered', () => {
- this.whenSizeUpdated(
- this.triggerViewRender
- )
- })
- this.on('before:datesUnrendered', () => {
- this.triggerViewDestroy()
- })
- }
- triggerViewRender() {
- this.publiclyTrigger('viewRender', [
- {
- view: this,
- el: this.el
- }
- ])
- }
- triggerViewDestroy() {
- this.publiclyTrigger('viewDestroy', [
- {
- view: this,
- el: this.el
- }
- ])
- }
- // 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 dateEnv = this.getDateEnv()
- let unit
- let update
- let delay // ms wait value
- if (this.opt('nowIndicator')) {
- unit = this.getNowIndicatorUnit()
- if (unit) {
- update = this.updateNowIndicator.bind(this)
- this.initialNowDate = this.calendar.getNow()
- this.initialNowQueriedMs = new Date().valueOf()
- // wait until the beginning of the next interval
- delay = dateEnv.add(
- dateEnv.startOf(this.initialNowDate, unit),
- createDuration(1, unit)
- ).valueOf() - this.initialNowDate.valueOf()
- // TODO: maybe always use setTimeout, waiting until start of next unit
- this.nowIndicatorTimeoutID = setTimeout(() => {
- this.nowIndicatorTimeoutID = null
- update()
- if (unit === 'second') {
- delay = 1000 // every second
- } else {
- delay = 1000 * 60 // otherwise, every minute
- }
- 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(
- addMs(this.initialNowDate, new Date().valueOf() - this.initialNowQueriedMs)
- )
- 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() {
- 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
- }
- /* 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(selection: Selection, ev?) {
- this.unselect(ev)
- this.renderSelection(selection)
- this.reportSelection(selection, ev)
- }
- // Called when a new selection is made. Updates internal state and triggers handlers.
- reportSelection(selection: Selection, ev?) {
- this.isSelected = true
- this.triggerSelect(selection, ev)
- }
- // Triggers handlers to 'select'
- triggerSelect(selection: Selection, ev?) {
- let dateEnv = this.getDateEnv()
- this.publiclyTrigger('select', [
- {
- start: dateEnv.toDate(selection.range.start),
- end: dateEnv.toDate(selection.range.end),
- isAllDay: selection.isAllDay,
- jsEvent: ev,
- view: 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', [
- {
- jsEvent: ev,
- view: this
- }
- ])
- }
- }
- /* Event Selection
- ------------------------------------------------------------------------------------------------------------------*/
- selectEventInstance(eventInstance) {
- if (
- !this.selectedEventInstance ||
- this.selectedEventInstance.instanceId !== eventInstance.instanceId
- ) {
- this.unselectEventInstance()
- this.getEventSegs().forEach(function(seg) {
- if (
- seg.eventRange.eventInstance.instanceId === eventInstance.instanceId &&
- seg.el // necessary?
- ) {
- seg.el.classList.add('fc-selected')
- }
- })
- this.selectedEventInstance = eventInstance
- }
- }
- unselectEventInstance() {
- if (this.selectedEventInstance) {
- this.getEventSegs().forEach(function(seg) {
- if (seg.el) { // necessary?
- seg.el.classList.remove('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.defId === eventDef.defId
- }
- /* 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 || !elementClosest(ev.target, ignore)) {
- this.unselect(ev)
- }
- }
- }
- processEventUnselect(ev) {
- if (this.selectedEventInstance) {
- if (!elementClosest(ev.target, '.fc-selected')) {
- this.unselectEventInstance()
- }
- }
- }
- /* Triggers
- ------------------------------------------------------------------------------------------------------------------*/
- triggerBaseRendered() {
- this.publiclyTrigger('viewRender', [
- {
- view: this,
- el: this.el
- }
- ])
- }
- triggerBaseUnrendered() {
- this.publiclyTrigger('viewDestroy', [
- {
- view: this,
- el: this.el
- }
- ])
- }
- /* Date Utils
- ------------------------------------------------------------------------------------------------------------------*/
- // For DateComponent::getDayClasses
- isDateInOtherMonth(date: DateMarker, 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, ...otherArgs) {
- let val = this.opt(name)
- if (typeof val === 'function') {
- val = val.apply(null, otherArgs)
- }
- 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.start
- let end = inputUnzonedRange.end
- 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 Date (used for UTC)
- isHiddenDay(day) {
- if (day instanceof Date) {
- day = day.getUTCDay()
- }
- 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: DateMarker, inc = 1, isExclusive = false) {
- while (
- this.isHiddenDayHash[(date.getUTCDay() + (isExclusive ? inc : 0) + 7) % 7]
- ) {
- date = addDays(date, inc)
- }
- return date
- }
- }
- View.prototype.usesMinMaxTime = false
- View.prototype.dateProfileGeneratorClass = DateProfileGenerator
|