| 123456789101112131415161718192021222324252627282930 |
- import * as moment from 'moment'
- import { distributeHeight } from '../util'
- import BasicView from './BasicView'
- import MonthViewDateProfileGenerator from './MonthViewDateProfileGenerator'
- /* A month view with day cells running in rows (one-per-week) and columns
- ----------------------------------------------------------------------------------------------------------------------*/
- export default class MonthView extends BasicView {
- // Overrides the default BasicView behavior to have special multi-week auto-height logic
- setGridHeight(height, isAuto) {
- // if auto, make the height of each row the height that it would be if there were 6 weeks
- if (isAuto) {
- height *= this.dayGrid.rowCnt / 6
- }
- distributeHeight($(this.dayGrid.rowEls), height, !isAuto) // if auto, don't compensate for height-hogging rows
- }
- isDateInOtherMonth(date, dateProfile) {
- return date.month() !== moment.utc(dateProfile.currentUnzonedRange.startMs).month() // TODO: optimize
- }
- }
- MonthView.prototype.dateProfileGeneratorClass = MonthViewDateProfileGenerator
|