12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145 |
- import { Splitter, hasBgRendering, createFormatter, ViewContextType, ContentContainer, BaseComponent, DateComponent, diffDays, buildNavLinkAttrs, WeekNumberContainer, getStickyHeaderDates, ViewContainer, SimpleScrollGrid, getStickyFooterScrollbar, NowTimer, NowIndicatorContainer, renderScrollShim, rangeContainsMarker, startOfDay, asRoughMs, createDuration, RefMap, PositionCache, MoreLinkContainer, SegHierarchy, groupIntersectingEntries, binarySearch, getEntrySpanEnd, buildEntryKey, StandardEvent, memoize, sortEventSegs, DayCellContainer, hasCustomDayCellContent, getSegMeta, buildIsoString, computeEarliestSegStart, buildEventRangeKey, BgEvent, renderFill, addDurations, multiplyDuration, wholeDivideDurations, Slicer, intersectRanges, formatIsoTimeString, DayHeader, DaySeriesModel, DayTableModel, injectStyles } from '@fullcalendar/core/internal.js';
- import { createElement, createRef, Fragment } from '@fullcalendar/core/preact.js';
- import { DayTable } from '@fullcalendar/daygrid/internal.js';
- class AllDaySplitter extends Splitter {
- getKeyInfo() {
- return {
- allDay: {},
- timed: {},
- };
- }
- getKeysForDateSpan(dateSpan) {
- if (dateSpan.allDay) {
- return ['allDay'];
- }
- return ['timed'];
- }
- getKeysForEventDef(eventDef) {
- if (!eventDef.allDay) {
- return ['timed'];
- }
- if (hasBgRendering(eventDef)) {
- return ['timed', 'allDay'];
- }
- return ['allDay'];
- }
- }
- const DEFAULT_SLAT_LABEL_FORMAT = createFormatter({
- hour: 'numeric',
- minute: '2-digit',
- omitZeroMinute: true,
- meridiem: 'short',
- });
- function TimeColsAxisCell(props) {
- let classNames = [
- 'fc-timegrid-slot',
- 'fc-timegrid-slot-label',
- props.isLabeled ? 'fc-scrollgrid-shrink' : 'fc-timegrid-slot-minor',
- ];
- return (createElement(ViewContextType.Consumer, null, (context) => {
- if (!props.isLabeled) {
- return (createElement("td", { className: classNames.join(' '), "data-time": props.isoTimeStr }));
- }
- let { dateEnv, options, viewApi } = context;
- let labelFormat = // TODO: fully pre-parse
- options.slotLabelFormat == null ? DEFAULT_SLAT_LABEL_FORMAT :
- Array.isArray(options.slotLabelFormat) ? createFormatter(options.slotLabelFormat[0]) :
- createFormatter(options.slotLabelFormat);
- let renderProps = {
- level: 0,
- time: props.time,
- date: dateEnv.toDate(props.date),
- view: viewApi,
- text: dateEnv.format(props.date, labelFormat),
- };
- return (createElement(ContentContainer, { elTag: "td", elClasses: classNames, elAttrs: {
- 'data-time': props.isoTimeStr,
- }, renderProps: renderProps, generatorName: "slotLabelContent", customGenerator: options.slotLabelContent, defaultGenerator: renderInnerContent, classNameGenerator: options.slotLabelClassNames, didMount: options.slotLabelDidMount, willUnmount: options.slotLabelWillUnmount }, (InnerContent) => (createElement("div", { className: "fc-timegrid-slot-label-frame fc-scrollgrid-shrink-frame" },
- createElement(InnerContent, { elTag: "div", elClasses: [
- 'fc-timegrid-slot-label-cushion',
- 'fc-scrollgrid-shrink-cushion',
- ] })))));
- }));
- }
- function renderInnerContent(props) {
- return props.text;
- }
- class TimeBodyAxis extends BaseComponent {
- render() {
- return this.props.slatMetas.map((slatMeta) => (createElement("tr", { key: slatMeta.key },
- createElement(TimeColsAxisCell, Object.assign({}, slatMeta)))));
- }
- }
- const DEFAULT_WEEK_NUM_FORMAT = createFormatter({ week: 'short' });
- const AUTO_ALL_DAY_MAX_EVENT_ROWS = 5;
- class TimeColsView extends DateComponent {
- constructor() {
- super(...arguments);
- this.allDaySplitter = new AllDaySplitter(); // for use by subclasses
- this.headerElRef = createRef();
- this.rootElRef = createRef();
- this.scrollerElRef = createRef();
- this.state = {
- slatCoords: null,
- };
- this.handleScrollTopRequest = (scrollTop) => {
- let scrollerEl = this.scrollerElRef.current;
- if (scrollerEl) { // TODO: not sure how this could ever be null. weirdness with the reducer
- scrollerEl.scrollTop = scrollTop;
- }
- };
- /* Header Render Methods
- ------------------------------------------------------------------------------------------------------------------*/
- this.renderHeadAxis = (rowKey, frameHeight = '') => {
- let { options } = this.context;
- let { dateProfile } = this.props;
- let range = dateProfile.renderRange;
- let dayCnt = diffDays(range.start, range.end);
- // only do in day views (to avoid doing in week views that dont need it)
- let navLinkAttrs = (dayCnt === 1)
- ? buildNavLinkAttrs(this.context, range.start, 'week')
- : {};
- if (options.weekNumbers && rowKey === 'day') {
- return (createElement(WeekNumberContainer, { elTag: "th", elClasses: [
- 'fc-timegrid-axis',
- 'fc-scrollgrid-shrink',
- ], elAttrs: {
- 'aria-hidden': true,
- }, date: range.start, defaultFormat: DEFAULT_WEEK_NUM_FORMAT }, (InnerContent) => (createElement("div", { className: [
- 'fc-timegrid-axis-frame',
- 'fc-scrollgrid-shrink-frame',
- 'fc-timegrid-axis-frame-liquid',
- ].join(' '), style: { height: frameHeight } },
- createElement(InnerContent, { elTag: "a", elClasses: [
- 'fc-timegrid-axis-cushion',
- 'fc-scrollgrid-shrink-cushion',
- 'fc-scrollgrid-sync-inner',
- ], elAttrs: navLinkAttrs })))));
- }
- return (createElement("th", { "aria-hidden": true, className: "fc-timegrid-axis" },
- createElement("div", { className: "fc-timegrid-axis-frame", style: { height: frameHeight } })));
- };
- /* Table Component Render Methods
- ------------------------------------------------------------------------------------------------------------------*/
- // only a one-way height sync. we don't send the axis inner-content height to the DayGrid,
- // but DayGrid still needs to have classNames on inner elements in order to measure.
- this.renderTableRowAxis = (rowHeight) => {
- let { options, viewApi } = this.context;
- let renderProps = {
- text: options.allDayText,
- view: viewApi,
- };
- return (
- // TODO: make reusable hook. used in list view too
- createElement(ContentContainer, { elTag: "td", elClasses: [
- 'fc-timegrid-axis',
- 'fc-scrollgrid-shrink',
- ], elAttrs: {
- 'aria-hidden': true,
- }, renderProps: renderProps, generatorName: "allDayContent", customGenerator: options.allDayContent, defaultGenerator: renderAllDayInner, classNameGenerator: options.allDayClassNames, didMount: options.allDayDidMount, willUnmount: options.allDayWillUnmount }, (InnerContent) => (createElement("div", { className: [
- 'fc-timegrid-axis-frame',
- 'fc-scrollgrid-shrink-frame',
- rowHeight == null ? ' fc-timegrid-axis-frame-liquid' : '',
- ].join(' '), style: { height: rowHeight } },
- createElement(InnerContent, { elTag: "span", elClasses: [
- 'fc-timegrid-axis-cushion',
- 'fc-scrollgrid-shrink-cushion',
- 'fc-scrollgrid-sync-inner',
- ] })))));
- };
- this.handleSlatCoords = (slatCoords) => {
- this.setState({ slatCoords });
- };
- }
- // rendering
- // ----------------------------------------------------------------------------------------------------
- renderSimpleLayout(headerRowContent, allDayContent, timeContent) {
- let { context, props } = this;
- let sections = [];
- let stickyHeaderDates = getStickyHeaderDates(context.options);
- if (headerRowContent) {
- sections.push({
- type: 'header',
- key: 'header',
- isSticky: stickyHeaderDates,
- chunk: {
- elRef: this.headerElRef,
- tableClassName: 'fc-col-header',
- rowContent: headerRowContent,
- },
- });
- }
- if (allDayContent) {
- sections.push({
- type: 'body',
- key: 'all-day',
- chunk: { content: allDayContent },
- });
- sections.push({
- type: 'body',
- key: 'all-day-divider',
- outerContent: ( // TODO: rename to cellContent so don't need to define <tr>?
- createElement("tr", { role: "presentation", className: "fc-scrollgrid-section" },
- createElement("td", { className: 'fc-timegrid-divider ' + context.theme.getClass('tableCellShaded') }))),
- });
- }
- sections.push({
- type: 'body',
- key: 'body',
- liquid: true,
- expandRows: Boolean(context.options.expandRows),
- chunk: {
- scrollerElRef: this.scrollerElRef,
- content: timeContent,
- },
- });
- return (createElement(ViewContainer, { elRef: this.rootElRef, elClasses: ['fc-timegrid'], viewSpec: context.viewSpec },
- createElement(SimpleScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, cols: [{ width: 'shrink' }], sections: sections })));
- }
- renderHScrollLayout(headerRowContent, allDayContent, timeContent, colCnt, dayMinWidth, slatMetas, slatCoords) {
- let ScrollGrid = this.context.pluginHooks.scrollGridImpl;
- if (!ScrollGrid) {
- throw new Error('No ScrollGrid implementation');
- }
- let { context, props } = this;
- let stickyHeaderDates = !props.forPrint && getStickyHeaderDates(context.options);
- let stickyFooterScrollbar = !props.forPrint && getStickyFooterScrollbar(context.options);
- let sections = [];
- if (headerRowContent) {
- sections.push({
- type: 'header',
- key: 'header',
- isSticky: stickyHeaderDates,
- syncRowHeights: true,
- chunks: [
- {
- key: 'axis',
- rowContent: (arg) => (createElement("tr", { role: "presentation" }, this.renderHeadAxis('day', arg.rowSyncHeights[0]))),
- },
- {
- key: 'cols',
- elRef: this.headerElRef,
- tableClassName: 'fc-col-header',
- rowContent: headerRowContent,
- },
- ],
- });
- }
- if (allDayContent) {
- sections.push({
- type: 'body',
- key: 'all-day',
- syncRowHeights: true,
- chunks: [
- {
- key: 'axis',
- rowContent: (contentArg) => (createElement("tr", { role: "presentation" }, this.renderTableRowAxis(contentArg.rowSyncHeights[0]))),
- },
- {
- key: 'cols',
- content: allDayContent,
- },
- ],
- });
- sections.push({
- key: 'all-day-divider',
- type: 'body',
- outerContent: ( // TODO: rename to cellContent so don't need to define <tr>?
- createElement("tr", { role: "presentation", className: "fc-scrollgrid-section" },
- createElement("td", { colSpan: 2, className: 'fc-timegrid-divider ' + context.theme.getClass('tableCellShaded') }))),
- });
- }
- let isNowIndicator = context.options.nowIndicator;
- sections.push({
- type: 'body',
- key: 'body',
- liquid: true,
- expandRows: Boolean(context.options.expandRows),
- chunks: [
- {
- key: 'axis',
- content: (arg) => (
- // TODO: make this now-indicator arrow more DRY with TimeColsContent
- createElement("div", { className: "fc-timegrid-axis-chunk" },
- createElement("table", { "aria-hidden": true, style: { height: arg.expandRows ? arg.clientHeight : '' } },
- arg.tableColGroupNode,
- createElement("tbody", null,
- createElement(TimeBodyAxis, { slatMetas: slatMetas }))),
- createElement("div", { className: "fc-timegrid-now-indicator-container" },
- createElement(NowTimer, { unit: isNowIndicator ? 'minute' : 'day' /* hacky */ }, (nowDate) => {
- let nowIndicatorTop = isNowIndicator &&
- slatCoords &&
- slatCoords.safeComputeTop(nowDate); // might return void
- if (typeof nowIndicatorTop === 'number') {
- return (createElement(NowIndicatorContainer, { elClasses: ['fc-timegrid-now-indicator-arrow'], elStyle: { top: nowIndicatorTop }, isAxis: true, date: nowDate }));
- }
- return null;
- })))),
- },
- {
- key: 'cols',
- scrollerElRef: this.scrollerElRef,
- content: timeContent,
- },
- ],
- });
- if (stickyFooterScrollbar) {
- sections.push({
- key: 'footer',
- type: 'footer',
- isSticky: true,
- chunks: [
- {
- key: 'axis',
- content: renderScrollShim,
- },
- {
- key: 'cols',
- content: renderScrollShim,
- },
- ],
- });
- }
- return (createElement(ViewContainer, { elRef: this.rootElRef, elClasses: ['fc-timegrid'], viewSpec: context.viewSpec },
- createElement(ScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, forPrint: props.forPrint, collapsibleWidth: false, colGroups: [
- { width: 'shrink', cols: [{ width: 'shrink' }] },
- { cols: [{ span: colCnt, minWidth: dayMinWidth }] },
- ], sections: sections })));
- }
- /* Dimensions
- ------------------------------------------------------------------------------------------------------------------*/
- getAllDayMaxEventProps() {
- let { dayMaxEvents, dayMaxEventRows } = this.context.options;
- if (dayMaxEvents === true || dayMaxEventRows === true) { // is auto?
- dayMaxEvents = undefined;
- dayMaxEventRows = AUTO_ALL_DAY_MAX_EVENT_ROWS; // make sure "auto" goes to a real number
- }
- return { dayMaxEvents, dayMaxEventRows };
- }
- }
- function renderAllDayInner(renderProps) {
- return renderProps.text;
- }
- class TimeColsSlatsCoords {
- constructor(positions, dateProfile, slotDuration) {
- this.positions = positions;
- this.dateProfile = dateProfile;
- this.slotDuration = slotDuration;
- }
- safeComputeTop(date) {
- let { dateProfile } = this;
- if (rangeContainsMarker(dateProfile.currentRange, date)) {
- let startOfDayDate = startOfDay(date);
- let timeMs = date.valueOf() - startOfDayDate.valueOf();
- if (timeMs >= asRoughMs(dateProfile.slotMinTime) &&
- timeMs < asRoughMs(dateProfile.slotMaxTime)) {
- return this.computeTimeTop(createDuration(timeMs));
- }
- }
- return null;
- }
- // Computes the top coordinate, relative to the bounds of the grid, of the given date.
- // A `startOfDayDate` must be given for avoiding ambiguity over how to treat midnight.
- computeDateTop(when, startOfDayDate) {
- if (!startOfDayDate) {
- startOfDayDate = startOfDay(when);
- }
- return this.computeTimeTop(createDuration(when.valueOf() - startOfDayDate.valueOf()));
- }
- // Computes the top coordinate, relative to the bounds of the grid, of the given time (a Duration).
- // This is a makeshify way to compute the time-top. Assumes all slatMetas dates are uniform.
- // Eventually allow computation with arbirary slat dates.
- computeTimeTop(duration) {
- let { positions, dateProfile } = this;
- let len = positions.els.length;
- // floating-point value of # of slots covered
- let slatCoverage = (duration.milliseconds - asRoughMs(dateProfile.slotMinTime)) / asRoughMs(this.slotDuration);
- let slatIndex;
- let slatRemainder;
- // compute a floating-point number for how many slats should be progressed through.
- // from 0 to number of slats (inclusive)
- // constrained because slotMinTime/slotMaxTime might be customized.
- slatCoverage = Math.max(0, slatCoverage);
- slatCoverage = Math.min(len, slatCoverage);
- // an integer index of the furthest whole slat
- // from 0 to number slats (*exclusive*, so len-1)
- slatIndex = Math.floor(slatCoverage);
- slatIndex = Math.min(slatIndex, len - 1);
- // how much further through the slatIndex slat (from 0.0-1.0) must be covered in addition.
- // could be 1.0 if slatCoverage is covering *all* the slots
- slatRemainder = slatCoverage - slatIndex;
- return positions.tops[slatIndex] +
- positions.getHeight(slatIndex) * slatRemainder;
- }
- }
- class TimeColsSlatsBody extends BaseComponent {
- render() {
- let { props, context } = this;
- let { options } = context;
- let { slatElRefs } = props;
- return (createElement("tbody", null, props.slatMetas.map((slatMeta, i) => {
- let renderProps = {
- time: slatMeta.time,
- date: context.dateEnv.toDate(slatMeta.date),
- view: context.viewApi,
- };
- return (createElement("tr", { key: slatMeta.key, ref: slatElRefs.createRef(slatMeta.key) },
- props.axis && (createElement(TimeColsAxisCell, Object.assign({}, slatMeta))),
- createElement(ContentContainer, { elTag: "td", elClasses: [
- 'fc-timegrid-slot',
- 'fc-timegrid-slot-lane',
- !slatMeta.isLabeled && 'fc-timegrid-slot-minor',
- ], elAttrs: {
- 'data-time': slatMeta.isoTimeStr,
- }, renderProps: renderProps, generatorName: "slotLaneContent", customGenerator: options.slotLaneContent, classNameGenerator: options.slotLaneClassNames, didMount: options.slotLaneDidMount, willUnmount: options.slotLaneWillUnmount })));
- })));
- }
- }
- /*
- for the horizontal "slats" that run width-wise. Has a time axis on a side. Depends on RTL.
- */
- class TimeColsSlats extends BaseComponent {
- constructor() {
- super(...arguments);
- this.rootElRef = createRef();
- this.slatElRefs = new RefMap();
- }
- render() {
- let { props, context } = this;
- return (createElement("div", { ref: this.rootElRef, className: "fc-timegrid-slots" },
- createElement("table", { "aria-hidden": true, className: context.theme.getClass('table'), style: {
- minWidth: props.tableMinWidth,
- width: props.clientWidth,
- height: props.minHeight,
- } },
- props.tableColGroupNode /* relies on there only being a single <col> for the axis */,
- createElement(TimeColsSlatsBody, { slatElRefs: this.slatElRefs, axis: props.axis, slatMetas: props.slatMetas }))));
- }
- componentDidMount() {
- this.updateSizing();
- }
- componentDidUpdate() {
- this.updateSizing();
- }
- componentWillUnmount() {
- if (this.props.onCoords) {
- this.props.onCoords(null);
- }
- }
- updateSizing() {
- let { context, props } = this;
- if (props.onCoords &&
- props.clientWidth !== null // means sizing has stabilized
- ) {
- let rootEl = this.rootElRef.current;
- if (rootEl.offsetHeight) { // not hidden by css
- props.onCoords(new TimeColsSlatsCoords(new PositionCache(this.rootElRef.current, collectSlatEls(this.slatElRefs.currentMap, props.slatMetas), false, true), this.props.dateProfile, context.options.slotDuration));
- }
- }
- }
- }
- function collectSlatEls(elMap, slatMetas) {
- return slatMetas.map((slatMeta) => elMap[slatMeta.key]);
- }
- function splitSegsByCol(segs, colCnt) {
- let segsByCol = [];
- let i;
- for (i = 0; i < colCnt; i += 1) {
- segsByCol.push([]);
- }
- if (segs) {
- for (i = 0; i < segs.length; i += 1) {
- segsByCol[segs[i].col].push(segs[i]);
- }
- }
- return segsByCol;
- }
- function splitInteractionByCol(ui, colCnt) {
- let byRow = [];
- if (!ui) {
- for (let i = 0; i < colCnt; i += 1) {
- byRow[i] = null;
- }
- }
- else {
- for (let i = 0; i < colCnt; i += 1) {
- byRow[i] = {
- affectedInstances: ui.affectedInstances,
- isEvent: ui.isEvent,
- segs: [],
- };
- }
- for (let seg of ui.segs) {
- byRow[seg.col].segs.push(seg);
- }
- }
- return byRow;
- }
- class TimeColMoreLink extends BaseComponent {
- render() {
- let { props } = this;
- return (createElement(MoreLinkContainer, { elClasses: ['fc-timegrid-more-link'], elStyle: {
- top: props.top,
- bottom: props.bottom,
- }, allDayDate: null, moreCnt: props.hiddenSegs.length, allSegs: props.hiddenSegs, hiddenSegs: props.hiddenSegs, extraDateSpan: props.extraDateSpan, dateProfile: props.dateProfile, todayRange: props.todayRange, popoverContent: () => renderPlainFgSegs(props.hiddenSegs, props), defaultGenerator: renderMoreLinkInner, forceTimed: true }, (InnerContent) => (createElement(InnerContent, { elTag: "div", elClasses: ['fc-timegrid-more-link-inner', 'fc-sticky'] }))));
- }
- }
- function renderMoreLinkInner(props) {
- return props.shortText;
- }
- // segInputs assumed sorted
- function buildPositioning(segInputs, strictOrder, maxStackCnt) {
- let hierarchy = new SegHierarchy();
- if (strictOrder != null) {
- hierarchy.strictOrder = strictOrder;
- }
- if (maxStackCnt != null) {
- hierarchy.maxStackCnt = maxStackCnt;
- }
- let hiddenEntries = hierarchy.addSegs(segInputs);
- let hiddenGroups = groupIntersectingEntries(hiddenEntries);
- let web = buildWeb(hierarchy);
- web = stretchWeb(web, 1); // all levelCoords/thickness will have 0.0-1.0
- let segRects = webToRects(web);
- return { segRects, hiddenGroups };
- }
- function buildWeb(hierarchy) {
- const { entriesByLevel } = hierarchy;
- const buildNode = cacheable((level, lateral) => level + ':' + lateral, (level, lateral) => {
- let siblingRange = findNextLevelSegs(hierarchy, level, lateral);
- let nextLevelRes = buildNodes(siblingRange, buildNode);
- let entry = entriesByLevel[level][lateral];
- return [
- Object.assign(Object.assign({}, entry), { nextLevelNodes: nextLevelRes[0] }),
- entry.thickness + nextLevelRes[1], // the pressure builds
- ];
- });
- return buildNodes(entriesByLevel.length
- ? { level: 0, lateralStart: 0, lateralEnd: entriesByLevel[0].length }
- : null, buildNode)[0];
- }
- function buildNodes(siblingRange, buildNode) {
- if (!siblingRange) {
- return [[], 0];
- }
- let { level, lateralStart, lateralEnd } = siblingRange;
- let lateral = lateralStart;
- let pairs = [];
- while (lateral < lateralEnd) {
- pairs.push(buildNode(level, lateral));
- lateral += 1;
- }
- pairs.sort(cmpDescPressures);
- return [
- pairs.map(extractNode),
- pairs[0][1], // first item's pressure
- ];
- }
- function cmpDescPressures(a, b) {
- return b[1] - a[1];
- }
- function extractNode(a) {
- return a[0];
- }
- function findNextLevelSegs(hierarchy, subjectLevel, subjectLateral) {
- let { levelCoords, entriesByLevel } = hierarchy;
- let subjectEntry = entriesByLevel[subjectLevel][subjectLateral];
- let afterSubject = levelCoords[subjectLevel] + subjectEntry.thickness;
- let levelCnt = levelCoords.length;
- let level = subjectLevel;
- // skip past levels that are too high up
- for (; level < levelCnt && levelCoords[level] < afterSubject; level += 1)
- ; // do nothing
- for (; level < levelCnt; level += 1) {
- let entries = entriesByLevel[level];
- let entry;
- let searchIndex = binarySearch(entries, subjectEntry.span.start, getEntrySpanEnd);
- let lateralStart = searchIndex[0] + searchIndex[1]; // if exact match (which doesn't collide), go to next one
- let lateralEnd = lateralStart;
- while ( // loop through entries that horizontally intersect
- (entry = entries[lateralEnd]) && // but not past the whole seg list
- entry.span.start < subjectEntry.span.end) {
- lateralEnd += 1;
- }
- if (lateralStart < lateralEnd) {
- return { level, lateralStart, lateralEnd };
- }
- }
- return null;
- }
- function stretchWeb(topLevelNodes, totalThickness) {
- const stretchNode = cacheable((node, startCoord, prevThickness) => buildEntryKey(node), (node, startCoord, prevThickness) => {
- let { nextLevelNodes, thickness } = node;
- let allThickness = thickness + prevThickness;
- let thicknessFraction = thickness / allThickness;
- let endCoord;
- let newChildren = [];
- if (!nextLevelNodes.length) {
- endCoord = totalThickness;
- }
- else {
- for (let childNode of nextLevelNodes) {
- if (endCoord === undefined) {
- let res = stretchNode(childNode, startCoord, allThickness);
- endCoord = res[0];
- newChildren.push(res[1]);
- }
- else {
- let res = stretchNode(childNode, endCoord, 0);
- newChildren.push(res[1]);
- }
- }
- }
- let newThickness = (endCoord - startCoord) * thicknessFraction;
- return [endCoord - newThickness, Object.assign(Object.assign({}, node), { thickness: newThickness, nextLevelNodes: newChildren })];
- });
- return topLevelNodes.map((node) => stretchNode(node, 0, 0)[1]);
- }
- // not sorted in any particular order
- function webToRects(topLevelNodes) {
- let rects = [];
- const processNode = cacheable((node, levelCoord, stackDepth) => buildEntryKey(node), (node, levelCoord, stackDepth) => {
- let rect = Object.assign(Object.assign({}, node), { levelCoord,
- stackDepth, stackForward: 0 });
- rects.push(rect);
- return (rect.stackForward = processNodes(node.nextLevelNodes, levelCoord + node.thickness, stackDepth + 1) + 1);
- });
- function processNodes(nodes, levelCoord, stackDepth) {
- let stackForward = 0;
- for (let node of nodes) {
- stackForward = Math.max(processNode(node, levelCoord, stackDepth), stackForward);
- }
- return stackForward;
- }
- processNodes(topLevelNodes, 0, 0);
- return rects; // TODO: sort rects by levelCoord to be consistent with toRects?
- }
- // TODO: move to general util
- function cacheable(keyFunc, workFunc) {
- const cache = {};
- return (...args) => {
- let key = keyFunc(...args);
- return (key in cache)
- ? cache[key]
- : (cache[key] = workFunc(...args));
- };
- }
- function computeSegVCoords(segs, colDate, slatCoords = null, eventMinHeight = 0) {
- let vcoords = [];
- if (slatCoords) {
- for (let i = 0; i < segs.length; i += 1) {
- let seg = segs[i];
- let spanStart = slatCoords.computeDateTop(seg.start, colDate);
- let spanEnd = Math.max(spanStart + (eventMinHeight || 0), // :(
- slatCoords.computeDateTop(seg.end, colDate));
- vcoords.push({
- start: Math.round(spanStart),
- end: Math.round(spanEnd), //
- });
- }
- }
- return vcoords;
- }
- function computeFgSegPlacements(segs, segVCoords, // might not have for every seg
- eventOrderStrict, eventMaxStack) {
- let segInputs = [];
- let dumbSegs = []; // segs without coords
- for (let i = 0; i < segs.length; i += 1) {
- let vcoords = segVCoords[i];
- if (vcoords) {
- segInputs.push({
- index: i,
- thickness: 1,
- span: vcoords,
- });
- }
- else {
- dumbSegs.push(segs[i]);
- }
- }
- let { segRects, hiddenGroups } = buildPositioning(segInputs, eventOrderStrict, eventMaxStack);
- let segPlacements = [];
- for (let segRect of segRects) {
- segPlacements.push({
- seg: segs[segRect.index],
- rect: segRect,
- });
- }
- for (let dumbSeg of dumbSegs) {
- segPlacements.push({ seg: dumbSeg, rect: null });
- }
- return { segPlacements, hiddenGroups };
- }
- const DEFAULT_TIME_FORMAT = createFormatter({
- hour: 'numeric',
- minute: '2-digit',
- meridiem: false,
- });
- class TimeColEvent extends BaseComponent {
- render() {
- return (createElement(StandardEvent, Object.assign({}, this.props, { elClasses: [
- 'fc-timegrid-event',
- 'fc-v-event',
- this.props.isShort && 'fc-timegrid-event-short',
- ], defaultTimeFormat: DEFAULT_TIME_FORMAT })));
- }
- }
- class TimeCol extends BaseComponent {
- constructor() {
- super(...arguments);
- this.sortEventSegs = memoize(sortEventSegs);
- }
- // TODO: memoize event-placement?
- render() {
- let { props, context } = this;
- let { options } = context;
- let isSelectMirror = options.selectMirror;
- let mirrorSegs = // yuck
- (props.eventDrag && props.eventDrag.segs) ||
- (props.eventResize && props.eventResize.segs) ||
- (isSelectMirror && props.dateSelectionSegs) ||
- [];
- let interactionAffectedInstances = // TODO: messy way to compute this
- (props.eventDrag && props.eventDrag.affectedInstances) ||
- (props.eventResize && props.eventResize.affectedInstances) ||
- {};
- let sortedFgSegs = this.sortEventSegs(props.fgEventSegs, options.eventOrder);
- return (createElement(DayCellContainer, { elTag: "td", elRef: props.elRef, elClasses: [
- 'fc-timegrid-col',
- ...(props.extraClassNames || []),
- ], elAttrs: Object.assign({ role: 'gridcell' }, props.extraDataAttrs), date: props.date, dateProfile: props.dateProfile, todayRange: props.todayRange, extraRenderProps: props.extraRenderProps }, (InnerContent) => (createElement("div", { className: "fc-timegrid-col-frame" },
- createElement("div", { className: "fc-timegrid-col-bg" },
- this.renderFillSegs(props.businessHourSegs, 'non-business'),
- this.renderFillSegs(props.bgEventSegs, 'bg-event'),
- this.renderFillSegs(props.dateSelectionSegs, 'highlight')),
- createElement("div", { className: "fc-timegrid-col-events" }, this.renderFgSegs(sortedFgSegs, interactionAffectedInstances, false, false, false)),
- createElement("div", { className: "fc-timegrid-col-events" }, this.renderFgSegs(mirrorSegs, {}, Boolean(props.eventDrag), Boolean(props.eventResize), Boolean(isSelectMirror), 'mirror')),
- createElement("div", { className: "fc-timegrid-now-indicator-container" }, this.renderNowIndicator(props.nowIndicatorSegs)),
- hasCustomDayCellContent(options) && (createElement(InnerContent, { elTag: "div", elClasses: ['fc-timegrid-col-misc'] }))))));
- }
- renderFgSegs(sortedFgSegs, segIsInvisible, isDragging, isResizing, isDateSelecting, forcedKey) {
- let { props } = this;
- if (props.forPrint) {
- return renderPlainFgSegs(sortedFgSegs, props);
- }
- return this.renderPositionedFgSegs(sortedFgSegs, segIsInvisible, isDragging, isResizing, isDateSelecting, forcedKey);
- }
- renderPositionedFgSegs(segs, // if not mirror, needs to be sorted
- segIsInvisible, isDragging, isResizing, isDateSelecting, forcedKey) {
- let { eventMaxStack, eventShortHeight, eventOrderStrict, eventMinHeight } = this.context.options;
- let { date, slatCoords, eventSelection, todayRange, nowDate } = this.props;
- let isMirror = isDragging || isResizing || isDateSelecting;
- let segVCoords = computeSegVCoords(segs, date, slatCoords, eventMinHeight);
- let { segPlacements, hiddenGroups } = computeFgSegPlacements(segs, segVCoords, eventOrderStrict, eventMaxStack);
- return (createElement(Fragment, null,
- this.renderHiddenGroups(hiddenGroups, segs),
- segPlacements.map((segPlacement) => {
- let { seg, rect } = segPlacement;
- let instanceId = seg.eventRange.instance.instanceId;
- let isVisible = isMirror || Boolean(!segIsInvisible[instanceId] && rect);
- let vStyle = computeSegVStyle(rect && rect.span);
- let hStyle = (!isMirror && rect) ? this.computeSegHStyle(rect) : { left: 0, right: 0 };
- let isInset = Boolean(rect) && rect.stackForward > 0;
- let isShort = Boolean(rect) && (rect.span.end - rect.span.start) < eventShortHeight; // look at other places for this problem
- return (createElement("div", { className: 'fc-timegrid-event-harness' +
- (isInset ? ' fc-timegrid-event-harness-inset' : ''), key: forcedKey || instanceId, style: Object.assign(Object.assign({ visibility: isVisible ? '' : 'hidden' }, vStyle), hStyle) },
- createElement(TimeColEvent, Object.assign({ seg: seg, isDragging: isDragging, isResizing: isResizing, isDateSelecting: isDateSelecting, isSelected: instanceId === eventSelection, isShort: isShort }, getSegMeta(seg, todayRange, nowDate)))));
- })));
- }
- // will already have eventMinHeight applied because segInputs already had it
- renderHiddenGroups(hiddenGroups, segs) {
- let { extraDateSpan, dateProfile, todayRange, nowDate, eventSelection, eventDrag, eventResize } = this.props;
- return (createElement(Fragment, null, hiddenGroups.map((hiddenGroup) => {
- let positionCss = computeSegVStyle(hiddenGroup.span);
- let hiddenSegs = compileSegsFromEntries(hiddenGroup.entries, segs);
- return (createElement(TimeColMoreLink, { key: buildIsoString(computeEarliestSegStart(hiddenSegs)), hiddenSegs: hiddenSegs, top: positionCss.top, bottom: positionCss.bottom, extraDateSpan: extraDateSpan, dateProfile: dateProfile, todayRange: todayRange, nowDate: nowDate, eventSelection: eventSelection, eventDrag: eventDrag, eventResize: eventResize }));
- })));
- }
- renderFillSegs(segs, fillType) {
- let { props, context } = this;
- let segVCoords = computeSegVCoords(segs, props.date, props.slatCoords, context.options.eventMinHeight); // don't assume all populated
- let children = segVCoords.map((vcoords, i) => {
- let seg = segs[i];
- return (createElement("div", { key: buildEventRangeKey(seg.eventRange), className: "fc-timegrid-bg-harness", style: computeSegVStyle(vcoords) }, fillType === 'bg-event' ?
- createElement(BgEvent, Object.assign({ seg: seg }, getSegMeta(seg, props.todayRange, props.nowDate))) :
- renderFill(fillType)));
- });
- return createElement(Fragment, null, children);
- }
- renderNowIndicator(segs) {
- let { slatCoords, date } = this.props;
- if (!slatCoords) {
- return null;
- }
- return segs.map((seg, i) => (createElement(NowIndicatorContainer
- // key doesn't matter. will only ever be one
- , {
- // key doesn't matter. will only ever be one
- key: i, elClasses: ['fc-timegrid-now-indicator-line'], elStyle: {
- top: slatCoords.computeDateTop(seg.start, date),
- }, isAxis: false, date: date })));
- }
- computeSegHStyle(segHCoords) {
- let { isRtl, options } = this.context;
- let shouldOverlap = options.slotEventOverlap;
- let nearCoord = segHCoords.levelCoord; // the left side if LTR. the right side if RTL. floating-point
- let farCoord = segHCoords.levelCoord + segHCoords.thickness; // the right side if LTR. the left side if RTL. floating-point
- let left; // amount of space from left edge, a fraction of the total width
- let right; // amount of space from right edge, a fraction of the total width
- if (shouldOverlap) {
- // double the width, but don't go beyond the maximum forward coordinate (1.0)
- farCoord = Math.min(1, nearCoord + (farCoord - nearCoord) * 2);
- }
- if (isRtl) {
- left = 1 - farCoord;
- right = nearCoord;
- }
- else {
- left = nearCoord;
- right = 1 - farCoord;
- }
- let props = {
- zIndex: segHCoords.stackDepth + 1,
- left: left * 100 + '%',
- right: right * 100 + '%',
- };
- if (shouldOverlap && !segHCoords.stackForward) {
- // add padding to the edge so that forward stacked events don't cover the resizer's icon
- props[isRtl ? 'marginLeft' : 'marginRight'] = 10 * 2; // 10 is a guesstimate of the icon's width
- }
- return props;
- }
- }
- function renderPlainFgSegs(sortedFgSegs, { todayRange, nowDate, eventSelection, eventDrag, eventResize }) {
- let hiddenInstances = (eventDrag ? eventDrag.affectedInstances : null) ||
- (eventResize ? eventResize.affectedInstances : null) ||
- {};
- return (createElement(Fragment, null, sortedFgSegs.map((seg) => {
- let instanceId = seg.eventRange.instance.instanceId;
- return (createElement("div", { key: instanceId, style: { visibility: hiddenInstances[instanceId] ? 'hidden' : '' } },
- createElement(TimeColEvent, Object.assign({ seg: seg, isDragging: false, isResizing: false, isDateSelecting: false, isSelected: instanceId === eventSelection, isShort: false }, getSegMeta(seg, todayRange, nowDate)))));
- })));
- }
- function computeSegVStyle(segVCoords) {
- if (!segVCoords) {
- return { top: '', bottom: '' };
- }
- return {
- top: segVCoords.start,
- bottom: -segVCoords.end,
- };
- }
- function compileSegsFromEntries(segEntries, allSegs) {
- return segEntries.map((segEntry) => allSegs[segEntry.index]);
- }
- class TimeColsContent extends BaseComponent {
- constructor() {
- super(...arguments);
- this.splitFgEventSegs = memoize(splitSegsByCol);
- this.splitBgEventSegs = memoize(splitSegsByCol);
- this.splitBusinessHourSegs = memoize(splitSegsByCol);
- this.splitNowIndicatorSegs = memoize(splitSegsByCol);
- this.splitDateSelectionSegs = memoize(splitSegsByCol);
- this.splitEventDrag = memoize(splitInteractionByCol);
- this.splitEventResize = memoize(splitInteractionByCol);
- this.rootElRef = createRef();
- this.cellElRefs = new RefMap();
- }
- render() {
- let { props, context } = this;
- let nowIndicatorTop = context.options.nowIndicator &&
- props.slatCoords &&
- props.slatCoords.safeComputeTop(props.nowDate); // might return void
- let colCnt = props.cells.length;
- let fgEventSegsByRow = this.splitFgEventSegs(props.fgEventSegs, colCnt);
- let bgEventSegsByRow = this.splitBgEventSegs(props.bgEventSegs, colCnt);
- let businessHourSegsByRow = this.splitBusinessHourSegs(props.businessHourSegs, colCnt);
- let nowIndicatorSegsByRow = this.splitNowIndicatorSegs(props.nowIndicatorSegs, colCnt);
- let dateSelectionSegsByRow = this.splitDateSelectionSegs(props.dateSelectionSegs, colCnt);
- let eventDragByRow = this.splitEventDrag(props.eventDrag, colCnt);
- let eventResizeByRow = this.splitEventResize(props.eventResize, colCnt);
- return (createElement("div", { className: "fc-timegrid-cols", ref: this.rootElRef },
- createElement("table", { role: "presentation", style: {
- minWidth: props.tableMinWidth,
- width: props.clientWidth,
- } },
- props.tableColGroupNode,
- createElement("tbody", { role: "presentation" },
- createElement("tr", { role: "row" },
- props.axis && (createElement("td", { "aria-hidden": true, className: "fc-timegrid-col fc-timegrid-axis" },
- createElement("div", { className: "fc-timegrid-col-frame" },
- createElement("div", { className: "fc-timegrid-now-indicator-container" }, typeof nowIndicatorTop === 'number' && (createElement(NowIndicatorContainer, { elClasses: ['fc-timegrid-now-indicator-arrow'], elStyle: { top: nowIndicatorTop }, isAxis: true, date: props.nowDate })))))),
- props.cells.map((cell, i) => (createElement(TimeCol, { key: cell.key, elRef: this.cellElRefs.createRef(cell.key), dateProfile: props.dateProfile, date: cell.date, nowDate: props.nowDate, todayRange: props.todayRange, extraRenderProps: cell.extraRenderProps, extraDataAttrs: cell.extraDataAttrs, extraClassNames: cell.extraClassNames, extraDateSpan: cell.extraDateSpan, fgEventSegs: fgEventSegsByRow[i], bgEventSegs: bgEventSegsByRow[i], businessHourSegs: businessHourSegsByRow[i], nowIndicatorSegs: nowIndicatorSegsByRow[i], dateSelectionSegs: dateSelectionSegsByRow[i], eventDrag: eventDragByRow[i], eventResize: eventResizeByRow[i], slatCoords: props.slatCoords, eventSelection: props.eventSelection, forPrint: props.forPrint }))))))));
- }
- componentDidMount() {
- this.updateCoords();
- }
- componentDidUpdate() {
- this.updateCoords();
- }
- updateCoords() {
- let { props } = this;
- if (props.onColCoords &&
- props.clientWidth !== null // means sizing has stabilized
- ) {
- props.onColCoords(new PositionCache(this.rootElRef.current, collectCellEls(this.cellElRefs.currentMap, props.cells), true, // horizontal
- false));
- }
- }
- }
- function collectCellEls(elMap, cells) {
- return cells.map((cell) => elMap[cell.key]);
- }
- /* A component that renders one or more columns of vertical time slots
- ----------------------------------------------------------------------------------------------------------------------*/
- class TimeCols extends DateComponent {
- constructor() {
- super(...arguments);
- this.processSlotOptions = memoize(processSlotOptions);
- this.state = {
- slatCoords: null,
- };
- this.handleRootEl = (el) => {
- if (el) {
- this.context.registerInteractiveComponent(this, {
- el,
- isHitComboAllowed: this.props.isHitComboAllowed,
- });
- }
- else {
- this.context.unregisterInteractiveComponent(this);
- }
- };
- this.handleScrollRequest = (request) => {
- let { onScrollTopRequest } = this.props;
- let { slatCoords } = this.state;
- if (onScrollTopRequest && slatCoords) {
- if (request.time) {
- let top = slatCoords.computeTimeTop(request.time);
- top = Math.ceil(top); // zoom can give weird floating-point values. rather scroll a little bit further
- if (top) {
- top += 1; // to overcome top border that slots beyond the first have. looks better
- }
- onScrollTopRequest(top);
- }
- return true;
- }
- return false;
- };
- this.handleColCoords = (colCoords) => {
- this.colCoords = colCoords;
- };
- this.handleSlatCoords = (slatCoords) => {
- this.setState({ slatCoords });
- if (this.props.onSlatCoords) {
- this.props.onSlatCoords(slatCoords);
- }
- };
- }
- render() {
- let { props, state } = this;
- return (createElement("div", { className: "fc-timegrid-body", ref: this.handleRootEl, style: {
- // these props are important to give this wrapper correct dimensions for interactions
- // TODO: if we set it here, can we avoid giving to inner tables?
- width: props.clientWidth,
- minWidth: props.tableMinWidth,
- } },
- createElement(TimeColsSlats, { axis: props.axis, dateProfile: props.dateProfile, slatMetas: props.slatMetas, clientWidth: props.clientWidth, minHeight: props.expandRows ? props.clientHeight : '', tableMinWidth: props.tableMinWidth, tableColGroupNode: props.axis ? props.tableColGroupNode : null /* axis depends on the colgroup's shrinking */, onCoords: this.handleSlatCoords }),
- createElement(TimeColsContent, { cells: props.cells, axis: props.axis, dateProfile: props.dateProfile, businessHourSegs: props.businessHourSegs, bgEventSegs: props.bgEventSegs, fgEventSegs: props.fgEventSegs, dateSelectionSegs: props.dateSelectionSegs, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, todayRange: props.todayRange, nowDate: props.nowDate, nowIndicatorSegs: props.nowIndicatorSegs, clientWidth: props.clientWidth, tableMinWidth: props.tableMinWidth, tableColGroupNode: props.tableColGroupNode, slatCoords: state.slatCoords, onColCoords: this.handleColCoords, forPrint: props.forPrint })));
- }
- componentDidMount() {
- this.scrollResponder = this.context.createScrollResponder(this.handleScrollRequest);
- }
- componentDidUpdate(prevProps) {
- this.scrollResponder.update(prevProps.dateProfile !== this.props.dateProfile);
- }
- componentWillUnmount() {
- this.scrollResponder.detach();
- }
- queryHit(positionLeft, positionTop) {
- let { dateEnv, options } = this.context;
- let { colCoords } = this;
- let { dateProfile } = this.props;
- let { slatCoords } = this.state;
- let { snapDuration, snapsPerSlot } = this.processSlotOptions(this.props.slotDuration, options.snapDuration);
- let colIndex = colCoords.leftToIndex(positionLeft);
- let slatIndex = slatCoords.positions.topToIndex(positionTop);
- if (colIndex != null && slatIndex != null) {
- let cell = this.props.cells[colIndex];
- let slatTop = slatCoords.positions.tops[slatIndex];
- let slatHeight = slatCoords.positions.getHeight(slatIndex);
- let partial = (positionTop - slatTop) / slatHeight; // floating point number between 0 and 1
- let localSnapIndex = Math.floor(partial * snapsPerSlot); // the snap # relative to start of slat
- let snapIndex = slatIndex * snapsPerSlot + localSnapIndex;
- let dayDate = this.props.cells[colIndex].date;
- let time = addDurations(dateProfile.slotMinTime, multiplyDuration(snapDuration, snapIndex));
- let start = dateEnv.add(dayDate, time);
- let end = dateEnv.add(start, snapDuration);
- return {
- dateProfile,
- dateSpan: Object.assign({ range: { start, end }, allDay: false }, cell.extraDateSpan),
- dayEl: colCoords.els[colIndex],
- rect: {
- left: colCoords.lefts[colIndex],
- right: colCoords.rights[colIndex],
- top: slatTop,
- bottom: slatTop + slatHeight,
- },
- layer: 0,
- };
- }
- return null;
- }
- }
- function processSlotOptions(slotDuration, snapDurationOverride) {
- let snapDuration = snapDurationOverride || slotDuration;
- let snapsPerSlot = wholeDivideDurations(slotDuration, snapDuration);
- if (snapsPerSlot === null) {
- snapDuration = slotDuration;
- snapsPerSlot = 1;
- // TODO: say warning?
- }
- return { snapDuration, snapsPerSlot };
- }
- class DayTimeColsSlicer extends Slicer {
- sliceRange(range, dayRanges) {
- let segs = [];
- for (let col = 0; col < dayRanges.length; col += 1) {
- let segRange = intersectRanges(range, dayRanges[col]);
- if (segRange) {
- segs.push({
- start: segRange.start,
- end: segRange.end,
- isStart: segRange.start.valueOf() === range.start.valueOf(),
- isEnd: segRange.end.valueOf() === range.end.valueOf(),
- col,
- });
- }
- }
- return segs;
- }
- }
- class DayTimeCols extends DateComponent {
- constructor() {
- super(...arguments);
- this.buildDayRanges = memoize(buildDayRanges);
- this.slicer = new DayTimeColsSlicer();
- this.timeColsRef = createRef();
- }
- render() {
- let { props, context } = this;
- let { dateProfile, dayTableModel } = props;
- let { nowIndicator, nextDayThreshold } = context.options;
- let dayRanges = this.buildDayRanges(dayTableModel, dateProfile, context.dateEnv);
- // give it the first row of cells
- // TODO: would move this further down hierarchy, but sliceNowDate needs it
- return (createElement(NowTimer, { unit: nowIndicator ? 'minute' : 'day' }, (nowDate, todayRange) => (createElement(TimeCols, Object.assign({ ref: this.timeColsRef }, this.slicer.sliceProps(props, dateProfile, null, context, dayRanges), { forPrint: props.forPrint, axis: props.axis, dateProfile: dateProfile, slatMetas: props.slatMetas, slotDuration: props.slotDuration, cells: dayTableModel.cells[0], tableColGroupNode: props.tableColGroupNode, tableMinWidth: props.tableMinWidth, clientWidth: props.clientWidth, clientHeight: props.clientHeight, expandRows: props.expandRows, nowDate: nowDate, nowIndicatorSegs: nowIndicator && this.slicer.sliceNowDate(nowDate, dateProfile, nextDayThreshold, context, dayRanges), todayRange: todayRange, onScrollTopRequest: props.onScrollTopRequest, onSlatCoords: props.onSlatCoords })))));
- }
- }
- function buildDayRanges(dayTableModel, dateProfile, dateEnv) {
- let ranges = [];
- for (let date of dayTableModel.headerDates) {
- ranges.push({
- start: dateEnv.add(date, dateProfile.slotMinTime),
- end: dateEnv.add(date, dateProfile.slotMaxTime),
- });
- }
- return ranges;
- }
- // potential nice values for the slot-duration and interval-duration
- // from largest to smallest
- const STOCK_SUB_DURATIONS = [
- { hours: 1 },
- { minutes: 30 },
- { minutes: 15 },
- { seconds: 30 },
- { seconds: 15 },
- ];
- function buildSlatMetas(slotMinTime, slotMaxTime, explicitLabelInterval, slotDuration, dateEnv) {
- let dayStart = new Date(0);
- let slatTime = slotMinTime;
- let slatIterator = createDuration(0);
- let labelInterval = explicitLabelInterval || computeLabelInterval(slotDuration);
- let metas = [];
- while (asRoughMs(slatTime) < asRoughMs(slotMaxTime)) {
- let date = dateEnv.add(dayStart, slatTime);
- let isLabeled = wholeDivideDurations(slatIterator, labelInterval) !== null;
- metas.push({
- date,
- time: slatTime,
- key: date.toISOString(),
- isoTimeStr: formatIsoTimeString(date),
- isLabeled,
- });
- slatTime = addDurations(slatTime, slotDuration);
- slatIterator = addDurations(slatIterator, slotDuration);
- }
- return metas;
- }
- // Computes an automatic value for slotLabelInterval
- function computeLabelInterval(slotDuration) {
- let i;
- let labelInterval;
- let slotsPerLabel;
- // find the smallest stock label interval that results in more than one slots-per-label
- for (i = STOCK_SUB_DURATIONS.length - 1; i >= 0; i -= 1) {
- labelInterval = createDuration(STOCK_SUB_DURATIONS[i]);
- slotsPerLabel = wholeDivideDurations(labelInterval, slotDuration);
- if (slotsPerLabel !== null && slotsPerLabel > 1) {
- return labelInterval;
- }
- }
- return slotDuration; // fall back
- }
- class DayTimeColsView extends TimeColsView {
- constructor() {
- super(...arguments);
- this.buildTimeColsModel = memoize(buildTimeColsModel);
- this.buildSlatMetas = memoize(buildSlatMetas);
- }
- render() {
- let { options, dateEnv, dateProfileGenerator } = this.context;
- let { props } = this;
- let { dateProfile } = props;
- let dayTableModel = this.buildTimeColsModel(dateProfile, dateProfileGenerator);
- let splitProps = this.allDaySplitter.splitProps(props);
- let slatMetas = this.buildSlatMetas(dateProfile.slotMinTime, dateProfile.slotMaxTime, options.slotLabelInterval, options.slotDuration, dateEnv);
- let { dayMinWidth } = options;
- let hasAttachedAxis = !dayMinWidth;
- let hasDetachedAxis = dayMinWidth;
- let headerContent = options.dayHeaders && (createElement(DayHeader, { dates: dayTableModel.headerDates, dateProfile: dateProfile, datesRepDistinctDays: true, renderIntro: hasAttachedAxis ? this.renderHeadAxis : null }));
- let allDayContent = (options.allDaySlot !== false) && ((contentArg) => (createElement(DayTable, Object.assign({}, splitProps.allDay, { dateProfile: dateProfile, dayTableModel: dayTableModel, nextDayThreshold: options.nextDayThreshold, tableMinWidth: contentArg.tableMinWidth, colGroupNode: contentArg.tableColGroupNode, renderRowIntro: hasAttachedAxis ? this.renderTableRowAxis : null, showWeekNumbers: false, expandRows: false, headerAlignElRef: this.headerElRef, clientWidth: contentArg.clientWidth, clientHeight: contentArg.clientHeight, forPrint: props.forPrint }, this.getAllDayMaxEventProps()))));
- let timeGridContent = (contentArg) => (createElement(DayTimeCols, Object.assign({}, splitProps.timed, { dayTableModel: dayTableModel, dateProfile: dateProfile, axis: hasAttachedAxis, slotDuration: options.slotDuration, slatMetas: slatMetas, forPrint: props.forPrint, tableColGroupNode: contentArg.tableColGroupNode, tableMinWidth: contentArg.tableMinWidth, clientWidth: contentArg.clientWidth, clientHeight: contentArg.clientHeight, onSlatCoords: this.handleSlatCoords, expandRows: contentArg.expandRows, onScrollTopRequest: this.handleScrollTopRequest })));
- return hasDetachedAxis
- ? this.renderHScrollLayout(headerContent, allDayContent, timeGridContent, dayTableModel.colCnt, dayMinWidth, slatMetas, this.state.slatCoords)
- : this.renderSimpleLayout(headerContent, allDayContent, timeGridContent);
- }
- }
- function buildTimeColsModel(dateProfile, dateProfileGenerator) {
- let daySeries = new DaySeriesModel(dateProfile.renderRange, dateProfileGenerator);
- return new DayTableModel(daySeries, false);
- }
- var css_248z = ".fc-v-event{background-color:var(--fc-event-bg-color);border:1px solid var(--fc-event-border-color);display:block}.fc-v-event .fc-event-main{color:var(--fc-event-text-color);height:100%}.fc-v-event .fc-event-main-frame{display:flex;flex-direction:column;height:100%}.fc-v-event .fc-event-time{flex-grow:0;flex-shrink:0;max-height:100%;overflow:hidden}.fc-v-event .fc-event-title-container{flex-grow:1;flex-shrink:1;min-height:0}.fc-v-event .fc-event-title{bottom:0;max-height:100%;overflow:hidden;top:0}.fc-v-event:not(.fc-event-start){border-top-left-radius:0;border-top-right-radius:0;border-top-width:0}.fc-v-event:not(.fc-event-end){border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-width:0}.fc-v-event.fc-event-selected:before{left:-10px;right:-10px}.fc-v-event .fc-event-resizer-start{cursor:n-resize}.fc-v-event .fc-event-resizer-end{cursor:s-resize}.fc-v-event:not(.fc-event-selected) .fc-event-resizer{height:var(--fc-event-resizer-thickness);left:0;right:0}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start{top:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-thickness)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer{left:50%;margin-left:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-start{top:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc-v-event.fc-event-selected .fc-event-resizer-end{bottom:calc(var(--fc-event-resizer-dot-total-width)/-2)}.fc .fc-timegrid .fc-daygrid-body{z-index:2}.fc .fc-timegrid-divider{padding:0 0 2px}.fc .fc-timegrid-body{min-height:100%;position:relative;z-index:1}.fc .fc-timegrid-axis-chunk{position:relative}.fc .fc-timegrid-axis-chunk>table,.fc .fc-timegrid-slots{position:relative;z-index:1}.fc .fc-timegrid-slot{border-bottom:0;height:1.5em}.fc .fc-timegrid-slot:empty:before{content:\"\\00a0\"}.fc .fc-timegrid-slot-minor{border-top-style:dotted}.fc .fc-timegrid-slot-label-cushion{display:inline-block;white-space:nowrap}.fc .fc-timegrid-slot-label{vertical-align:middle}.fc .fc-timegrid-axis-cushion,.fc .fc-timegrid-slot-label-cushion{padding:0 4px}.fc .fc-timegrid-axis-frame-liquid{height:100%}.fc .fc-timegrid-axis-frame{align-items:center;display:flex;justify-content:flex-end;overflow:hidden}.fc .fc-timegrid-axis-cushion{flex-shrink:0;max-width:60px}.fc-direction-ltr .fc-timegrid-slot-label-frame{text-align:right}.fc-direction-rtl .fc-timegrid-slot-label-frame{text-align:left}.fc-liquid-hack .fc-timegrid-axis-frame-liquid{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col.fc-day-today{background-color:var(--fc-today-bg-color)}.fc .fc-timegrid-col-frame{min-height:100%;position:relative}.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame{bottom:0;height:auto;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols{bottom:0;left:0;position:absolute;right:0;top:0}.fc-media-screen .fc-timegrid-cols>table{height:100%}.fc-media-screen .fc-timegrid-col-bg,.fc-media-screen .fc-timegrid-col-events,.fc-media-screen .fc-timegrid-now-indicator-container{left:0;position:absolute;right:0;top:0}.fc .fc-timegrid-col-bg{z-index:2}.fc .fc-timegrid-col-bg .fc-non-business{z-index:1}.fc .fc-timegrid-col-bg .fc-bg-event{z-index:2}.fc .fc-timegrid-col-bg .fc-highlight{z-index:3}.fc .fc-timegrid-bg-harness{left:0;position:absolute;right:0}.fc .fc-timegrid-col-events{z-index:3}.fc .fc-timegrid-now-indicator-container{bottom:0;overflow:hidden}.fc-direction-ltr .fc-timegrid-col-events{margin:0 2.5% 0 2px}.fc-direction-rtl .fc-timegrid-col-events{margin:0 2px 0 2.5%}.fc-timegrid-event-harness{position:absolute}.fc-timegrid-event-harness>.fc-timegrid-event{bottom:0;left:0;position:absolute;right:0;top:0}.fc-timegrid-event-harness-inset .fc-timegrid-event,.fc-timegrid-event.fc-event-mirror,.fc-timegrid-more-link{box-shadow:0 0 0 1px var(--fc-page-bg-color)}.fc-timegrid-event,.fc-timegrid-more-link{border-radius:3px;font-size:var(--fc-small-font-size)}.fc-timegrid-event{margin-bottom:1px}.fc-timegrid-event .fc-event-main{padding:1px 1px 0}.fc-timegrid-event .fc-event-time{font-size:var(--fc-small-font-size);margin-bottom:1px;white-space:nowrap}.fc-timegrid-event-short .fc-event-main-frame{flex-direction:row;overflow:hidden}.fc-timegrid-event-short .fc-event-time:after{content:\"\\00a0-\\00a0\"}.fc-timegrid-event-short .fc-event-title{font-size:var(--fc-small-font-size)}.fc-timegrid-more-link{background:var(--fc-more-link-bg-color);color:var(--fc-more-link-text-color);cursor:pointer;margin-bottom:1px;position:absolute;z-index:9999}.fc-timegrid-more-link-inner{padding:3px 2px;top:0}.fc-direction-ltr .fc-timegrid-more-link{right:0}.fc-direction-rtl .fc-timegrid-more-link{left:0}.fc .fc-timegrid-now-indicator-line{border-color:var(--fc-now-indicator-color);border-style:solid;border-width:1px 0 0;left:0;position:absolute;right:0;z-index:4}.fc .fc-timegrid-now-indicator-arrow{border-color:var(--fc-now-indicator-color);border-style:solid;margin-top:-5px;position:absolute;z-index:4}.fc-direction-ltr .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 0 5px 6px;left:0}.fc-direction-rtl .fc-timegrid-now-indicator-arrow{border-bottom-color:transparent;border-top-color:transparent;border-width:5px 6px 5px 0;right:0}";
- injectStyles(css_248z);
- export { DayTimeCols, DayTimeColsSlicer, DayTimeColsView, TimeCols, TimeColsSlatsCoords, TimeColsView, buildDayRanges, buildSlatMetas, buildTimeColsModel };
|