fullcalendar 6.0.0-beta.3 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -9
- package/index.global.js +6484 -6463
- package/index.global.min.js +3 -3
- package/package.json +15 -16
- package/index.global.js.map +0 -1
package/index.global.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.global.js","sources":["../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/util.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/options.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/create-element.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/component.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/create-context.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/constants.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/diff/children.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/diff/props.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/diff/index.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/render.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/src/diff/catch-error.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/hooks/src/index.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/util.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/PureComponent.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/memo.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/forwardRef.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/Children.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/suspense.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/suspense-list.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/portals.js","../../../node_modules/.pnpm/preact@10.11.3/node_modules/preact/compat/src/render.js","../../packages/core/dist/internal-common.js","../../packages/core/dist/index.js","../../packages/interaction/dist/index.js","../../packages/daygrid/dist/internal.js","../../packages/daygrid/dist/index.js","../../packages/timegrid/dist/internal.js","../../packages/timegrid/dist/index.js","../../packages/list/dist/internal.js","../../packages/list/dist/index.js","../src/index.ts"],"sourcesContent":["import { EMPTY_ARR } from \"./constants\";\n\n/**\n * Assign properties from `props` to `obj`\n * @template O, P The obj and props types\n * @param {O} obj The object to copy properties to\n * @param {P} props The object to copy properties from\n * @returns {O & P}\n */\nexport function assign(obj, props) {\n\t// @ts-ignore We change the type of `obj` to be `O & P`\n\tfor (let i in props) obj[i] = props[i];\n\treturn /** @type {O & P} */ (obj);\n}\n\n/**\n * Remove a child node from its parent if attached. This is a workaround for\n * IE11 which doesn't support `Element.prototype.remove()`. Using this function\n * is smaller than including a dedicated polyfill.\n * @param {Node} node The node to remove\n */\nexport function removeNode(node) {\n\tlet parentNode = node.parentNode;\n\tif (parentNode) parentNode.removeChild(node);\n}\n\nexport const slice = EMPTY_ARR.slice;\n","import { _catchError } from './diff/catch-error';\n\n/**\n * The `option` object can potentially contain callback functions\n * that are called during various stages of our renderer. This is the\n * foundation on which all our addons like `preact/debug`, `preact/compat`,\n * and `preact/hooks` are based on. See the `Options` type in `internal.d.ts`\n * for a full list of available option hooks (most editors/IDEs allow you to\n * ctrl+click or cmd+click on mac the type definition below).\n * @type {import('./internal').Options}\n */\nconst options = {\n\t_catchError\n};\n\nexport default options;\n","import { slice } from './util';\nimport options from './options';\n\nlet vnodeId = 0;\n\n/**\n * Create an virtual node (used for JSX)\n * @param {import('./internal').VNode[\"type\"]} type The node name or Component\n * constructor for this virtual node\n * @param {object | null | undefined} [props] The properties of the virtual node\n * @param {Array<import('.').ComponentChildren>} [children] The children of the virtual node\n * @returns {import('./internal').VNode}\n */\nexport function createElement(type, props, children) {\n\tlet normalizedProps = {},\n\t\tkey,\n\t\tref,\n\t\ti;\n\tfor (i in props) {\n\t\tif (i == 'key') key = props[i];\n\t\telse if (i == 'ref') ref = props[i];\n\t\telse normalizedProps[i] = props[i];\n\t}\n\n\tif (arguments.length > 2) {\n\t\tnormalizedProps.children =\n\t\t\targuments.length > 3 ? slice.call(arguments, 2) : children;\n\t}\n\n\t// If a Component VNode, check for and apply defaultProps\n\t// Note: type may be undefined in development, must never error here.\n\tif (typeof type == 'function' && type.defaultProps != null) {\n\t\tfor (i in type.defaultProps) {\n\t\t\tif (normalizedProps[i] === undefined) {\n\t\t\t\tnormalizedProps[i] = type.defaultProps[i];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn createVNode(type, normalizedProps, key, ref, null);\n}\n\n/**\n * Create a VNode (used internally by Preact)\n * @param {import('./internal').VNode[\"type\"]} type The node name or Component\n * Constructor for this virtual node\n * @param {object | string | number | null} props The properties of this virtual node.\n * If this virtual node represents a text node, this is the text of the node (string or number).\n * @param {string | number | null} key The key for this virtual node, used when\n * diffing it against its children\n * @param {import('./internal').VNode[\"ref\"]} ref The ref property that will\n * receive a reference to its created child\n * @returns {import('./internal').VNode}\n */\nexport function createVNode(type, props, key, ref, original) {\n\t// V8 seems to be better at detecting type shapes if the object is allocated from the same call site\n\t// Do not inline into createElement and coerceToVNode!\n\tconst vnode = {\n\t\ttype,\n\t\tprops,\n\t\tkey,\n\t\tref,\n\t\t_children: null,\n\t\t_parent: null,\n\t\t_depth: 0,\n\t\t_dom: null,\n\t\t// _nextDom must be initialized to undefined b/c it will eventually\n\t\t// be set to dom.nextSibling which can return `null` and it is important\n\t\t// to be able to distinguish between an uninitialized _nextDom and\n\t\t// a _nextDom that has been set to `null`\n\t\t_nextDom: undefined,\n\t\t_component: null,\n\t\t_hydrating: null,\n\t\tconstructor: undefined,\n\t\t_original: original == null ? ++vnodeId : original\n\t};\n\n\t// Only invoke the vnode hook if this was *not* a direct copy:\n\tif (original == null && options.vnode != null) options.vnode(vnode);\n\n\treturn vnode;\n}\n\nexport function createRef() {\n\treturn { current: null };\n}\n\nexport function Fragment(props) {\n\treturn props.children;\n}\n\n/**\n * Check if a the argument is a valid Preact VNode.\n * @param {*} vnode\n * @returns {vnode is import('./internal').VNode}\n */\nexport const isValidElement = vnode =>\n\tvnode != null && vnode.constructor === undefined;\n","import { assign } from './util';\nimport { diff, commitRoot } from './diff/index';\nimport options from './options';\nimport { Fragment } from './create-element';\n\n/**\n * Base Component class. Provides `setState()` and `forceUpdate()`, which\n * trigger rendering\n * @param {object} props The initial component props\n * @param {object} context The initial context from parent components'\n * getChildContext\n */\nexport function Component(props, context) {\n\tthis.props = props;\n\tthis.context = context;\n}\n\n/**\n * Update component state and schedule a re-render.\n * @this {import('./internal').Component}\n * @param {object | ((s: object, p: object) => object)} update A hash of state\n * properties to update with new values or a function that given the current\n * state and props returns a new partial state\n * @param {() => void} [callback] A function to be called once component state is\n * updated\n */\nComponent.prototype.setState = function(update, callback) {\n\t// only clone state when copying to nextState the first time.\n\tlet s;\n\tif (this._nextState != null && this._nextState !== this.state) {\n\t\ts = this._nextState;\n\t} else {\n\t\ts = this._nextState = assign({}, this.state);\n\t}\n\n\tif (typeof update == 'function') {\n\t\t// Some libraries like `immer` mark the current state as readonly,\n\t\t// preventing us from mutating it, so we need to clone it. See #2716\n\t\tupdate = update(assign({}, s), this.props);\n\t}\n\n\tif (update) {\n\t\tassign(s, update);\n\t}\n\n\t// Skip update if updater function returned null\n\tif (update == null) return;\n\n\tif (this._vnode) {\n\t\tif (callback) {\n\t\t\tthis._stateCallbacks.push(callback);\n\t\t}\n\t\tenqueueRender(this);\n\t}\n};\n\n/**\n * Immediately perform a synchronous re-render of the component\n * @this {import('./internal').Component}\n * @param {() => void} [callback] A function to be called after component is\n * re-rendered\n */\nComponent.prototype.forceUpdate = function(callback) {\n\tif (this._vnode) {\n\t\t// Set render mode so that we can differentiate where the render request\n\t\t// is coming from. We need this because forceUpdate should never call\n\t\t// shouldComponentUpdate\n\t\tthis._force = true;\n\t\tif (callback) this._renderCallbacks.push(callback);\n\t\tenqueueRender(this);\n\t}\n};\n\n/**\n * Accepts `props` and `state`, and returns a new Virtual DOM tree to build.\n * Virtual DOM is generally constructed via [JSX](http://jasonformat.com/wtf-is-jsx).\n * @param {object} props Props (eg: JSX attributes) received from parent\n * element/component\n * @param {object} state The component's current state\n * @param {object} context Context object, as returned by the nearest\n * ancestor's `getChildContext()`\n * @returns {import('./index').ComponentChildren | void}\n */\nComponent.prototype.render = Fragment;\n\n/**\n * @param {import('./internal').VNode} vnode\n * @param {number | null} [childIndex]\n */\nexport function getDomSibling(vnode, childIndex) {\n\tif (childIndex == null) {\n\t\t// Use childIndex==null as a signal to resume the search from the vnode's sibling\n\t\treturn vnode._parent\n\t\t\t? getDomSibling(vnode._parent, vnode._parent._children.indexOf(vnode) + 1)\n\t\t\t: null;\n\t}\n\n\tlet sibling;\n\tfor (; childIndex < vnode._children.length; childIndex++) {\n\t\tsibling = vnode._children[childIndex];\n\n\t\tif (sibling != null && sibling._dom != null) {\n\t\t\t// Since updateParentDomPointers keeps _dom pointer correct,\n\t\t\t// we can rely on _dom to tell us if this subtree contains a\n\t\t\t// rendered DOM node, and what the first rendered DOM node is\n\t\t\treturn sibling._dom;\n\t\t}\n\t}\n\n\t// If we get here, we have not found a DOM node in this vnode's children.\n\t// We must resume from this vnode's sibling (in it's parent _children array)\n\t// Only climb up and search the parent if we aren't searching through a DOM\n\t// VNode (meaning we reached the DOM parent of the original vnode that began\n\t// the search)\n\treturn typeof vnode.type == 'function' ? getDomSibling(vnode) : null;\n}\n\n/**\n * Trigger in-place re-rendering of a component.\n * @param {import('./internal').Component} component The component to rerender\n */\nfunction renderComponent(component) {\n\tlet vnode = component._vnode,\n\t\toldDom = vnode._dom,\n\t\tparentDom = component._parentDom;\n\n\tif (parentDom) {\n\t\tlet commitQueue = [];\n\t\tconst oldVNode = assign({}, vnode);\n\t\toldVNode._original = vnode._original + 1;\n\n\t\tdiff(\n\t\t\tparentDom,\n\t\t\tvnode,\n\t\t\toldVNode,\n\t\t\tcomponent._globalContext,\n\t\t\tparentDom.ownerSVGElement !== undefined,\n\t\t\tvnode._hydrating != null ? [oldDom] : null,\n\t\t\tcommitQueue,\n\t\t\toldDom == null ? getDomSibling(vnode) : oldDom,\n\t\t\tvnode._hydrating\n\t\t);\n\t\tcommitRoot(commitQueue, vnode);\n\n\t\tif (vnode._dom != oldDom) {\n\t\t\tupdateParentDomPointers(vnode);\n\t\t}\n\t}\n}\n\n/**\n * @param {import('./internal').VNode} vnode\n */\nfunction updateParentDomPointers(vnode) {\n\tif ((vnode = vnode._parent) != null && vnode._component != null) {\n\t\tvnode._dom = vnode._component.base = null;\n\t\tfor (let i = 0; i < vnode._children.length; i++) {\n\t\t\tlet child = vnode._children[i];\n\t\t\tif (child != null && child._dom != null) {\n\t\t\t\tvnode._dom = vnode._component.base = child._dom;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\treturn updateParentDomPointers(vnode);\n\t}\n}\n\n/**\n * The render queue\n * @type {Array<import('./internal').Component>}\n */\nlet rerenderQueue = [];\n\n/*\n * The value of `Component.debounce` must asynchronously invoke the passed in callback. It is\n * important that contributors to Preact can consistently reason about what calls to `setState`, etc.\n * do, and when their effects will be applied. See the links below for some further reading on designing\n * asynchronous APIs.\n * * [Designing APIs for Asynchrony](https://blog.izs.me/2013/08/designing-apis-for-asynchrony)\n * * [Callbacks synchronous and asynchronous](https://blog.ometer.com/2011/07/24/callbacks-synchronous-and-asynchronous/)\n */\n\nlet prevDebounce;\n\n/**\n * Enqueue a rerender of a component\n * @param {import('./internal').Component} c The component to rerender\n */\nexport function enqueueRender(c) {\n\tif (\n\t\t(!c._dirty &&\n\t\t\t(c._dirty = true) &&\n\t\t\trerenderQueue.push(c) &&\n\t\t\t!process._rerenderCount++) ||\n\t\tprevDebounce !== options.debounceRendering\n\t) {\n\t\tprevDebounce = options.debounceRendering;\n\t\t(prevDebounce || setTimeout)(process);\n\t}\n}\n\n/** Flush the render queue by rerendering all queued components */\nfunction process() {\n\tlet queue;\n\twhile ((process._rerenderCount = rerenderQueue.length)) {\n\t\tqueue = rerenderQueue.sort((a, b) => a._vnode._depth - b._vnode._depth);\n\t\trerenderQueue = [];\n\t\t// Don't update `renderCount` yet. Keep its value non-zero to prevent unnecessary\n\t\t// process() calls from getting scheduled while `queue` is still being consumed.\n\t\tqueue.some(c => {\n\t\t\tif (c._dirty) renderComponent(c);\n\t\t});\n\t}\n}\n\nprocess._rerenderCount = 0;\n","import { enqueueRender } from './component';\n\nexport let i = 0;\n\nexport function createContext(defaultValue, contextId) {\n\tcontextId = '__cC' + i++;\n\n\tconst context = {\n\t\t_id: contextId,\n\t\t_defaultValue: defaultValue,\n\t\t/** @type {import('./internal').FunctionComponent} */\n\t\tConsumer(props, contextValue) {\n\t\t\t// return props.children(\n\t\t\t// \tcontext[contextId] ? context[contextId].props.value : defaultValue\n\t\t\t// );\n\t\t\treturn props.children(contextValue);\n\t\t},\n\t\t/** @type {import('./internal').FunctionComponent} */\n\t\tProvider(props) {\n\t\t\tif (!this.getChildContext) {\n\t\t\t\tlet subs = [];\n\t\t\t\tlet ctx = {};\n\t\t\t\tctx[contextId] = this;\n\n\t\t\t\tthis.getChildContext = () => ctx;\n\n\t\t\t\tthis.shouldComponentUpdate = function(_props) {\n\t\t\t\t\tif (this.props.value !== _props.value) {\n\t\t\t\t\t\t// I think the forced value propagation here was only needed when `options.debounceRendering` was being bypassed:\n\t\t\t\t\t\t// https://github.com/preactjs/preact/commit/4d339fb803bea09e9f198abf38ca1bf8ea4b7771#diff-54682ce380935a717e41b8bfc54737f6R358\n\t\t\t\t\t\t// In those cases though, even with the value corrected, we're double-rendering all nodes.\n\t\t\t\t\t\t// It might be better to just tell folks not to use force-sync mode.\n\t\t\t\t\t\t// Currently, using `useContext()` in a class component will overwrite its `this.context` value.\n\t\t\t\t\t\t// subs.some(c => {\n\t\t\t\t\t\t// \tc.context = _props.value;\n\t\t\t\t\t\t// \tenqueueRender(c);\n\t\t\t\t\t\t// });\n\n\t\t\t\t\t\t// subs.some(c => {\n\t\t\t\t\t\t// \tc.context[contextId] = _props.value;\n\t\t\t\t\t\t// \tenqueueRender(c);\n\t\t\t\t\t\t// });\n\t\t\t\t\t\tsubs.some(enqueueRender);\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\tthis.sub = c => {\n\t\t\t\t\tsubs.push(c);\n\t\t\t\t\tlet old = c.componentWillUnmount;\n\t\t\t\t\tc.componentWillUnmount = () => {\n\t\t\t\t\t\tsubs.splice(subs.indexOf(c), 1);\n\t\t\t\t\t\tif (old) old.call(c);\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn props.children;\n\t\t}\n\t};\n\n\t// Devtools needs access to the context object when it\n\t// encounters a Provider. This is necessary to support\n\t// setting `displayName` on the context object instead\n\t// of on the component itself. See:\n\t// https://reactjs.org/docs/context.html#contextdisplayname\n\n\treturn (context.Provider._contextRef = context.Consumer.contextType = context);\n}\n","export const EMPTY_OBJ = {};\nexport const EMPTY_ARR = [];\nexport const IS_NON_DIMENSIONAL = /acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;\n","import { diff, unmount, applyRef } from './index';\nimport { createVNode, Fragment } from '../create-element';\nimport { EMPTY_OBJ, EMPTY_ARR } from '../constants';\nimport { getDomSibling } from '../component';\n\n/**\n * Diff the children of a virtual node\n * @param {import('../internal').PreactElement} parentDom The DOM element whose\n * children are being diffed\n * @param {import('../internal').ComponentChildren[]} renderResult\n * @param {import('../internal').VNode} newParentVNode The new virtual\n * node whose children should be diff'ed against oldParentVNode\n * @param {import('../internal').VNode} oldParentVNode The old virtual\n * node whose children should be diff'ed against newParentVNode\n * @param {object} globalContext The current context object - modified by getChildContext\n * @param {boolean} isSvg Whether or not this DOM node is an SVG node\n * @param {Array<import('../internal').PreactElement>} excessDomChildren\n * @param {Array<import('../internal').Component>} commitQueue List of components\n * which have callbacks to invoke in commitRoot\n * @param {import('../internal').PreactElement} oldDom The current attached DOM\n * element any new dom elements should be placed around. Likely `null` on first\n * render (except when hydrating). Can be a sibling DOM element when diffing\n * Fragments that have siblings. In most cases, it starts out as `oldChildren[0]._dom`.\n * @param {boolean} isHydrating Whether or not we are in hydration\n */\nexport function diffChildren(\n\tparentDom,\n\trenderResult,\n\tnewParentVNode,\n\toldParentVNode,\n\tglobalContext,\n\tisSvg,\n\texcessDomChildren,\n\tcommitQueue,\n\toldDom,\n\tisHydrating\n) {\n\tlet i, j, oldVNode, childVNode, newDom, firstChildDom, refs;\n\n\t// This is a compression of oldParentVNode!=null && oldParentVNode != EMPTY_OBJ && oldParentVNode._children || EMPTY_ARR\n\t// as EMPTY_OBJ._children should be `undefined`.\n\tlet oldChildren = (oldParentVNode && oldParentVNode._children) || EMPTY_ARR;\n\n\tlet oldChildrenLength = oldChildren.length;\n\n\tnewParentVNode._children = [];\n\tfor (i = 0; i < renderResult.length; i++) {\n\t\tchildVNode = renderResult[i];\n\n\t\tif (childVNode == null || typeof childVNode == 'boolean') {\n\t\t\tchildVNode = newParentVNode._children[i] = null;\n\t\t}\n\t\t// If this newVNode is being reused (e.g. <div>{reuse}{reuse}</div>) in the same diff,\n\t\t// or we are rendering a component (e.g. setState) copy the oldVNodes so it can have\n\t\t// it's own DOM & etc. pointers\n\t\telse if (\n\t\t\ttypeof childVNode == 'string' ||\n\t\t\ttypeof childVNode == 'number' ||\n\t\t\t// eslint-disable-next-line valid-typeof\n\t\t\ttypeof childVNode == 'bigint'\n\t\t) {\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tnull,\n\t\t\t\tchildVNode,\n\t\t\t\tnull,\n\t\t\t\tnull,\n\t\t\t\tchildVNode\n\t\t\t);\n\t\t} else if (Array.isArray(childVNode)) {\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tFragment,\n\t\t\t\t{ children: childVNode },\n\t\t\t\tnull,\n\t\t\t\tnull,\n\t\t\t\tnull\n\t\t\t);\n\t\t} else if (childVNode._depth > 0) {\n\t\t\t// VNode is already in use, clone it. This can happen in the following\n\t\t\t// scenario:\n\t\t\t// const reuse = <div />\n\t\t\t// <div>{reuse}<span />{reuse}</div>\n\t\t\tchildVNode = newParentVNode._children[i] = createVNode(\n\t\t\t\tchildVNode.type,\n\t\t\t\tchildVNode.props,\n\t\t\t\tchildVNode.key,\n\t\t\t\tchildVNode.ref ? childVNode.ref : null,\n\t\t\t\tchildVNode._original\n\t\t\t);\n\t\t} else {\n\t\t\tchildVNode = newParentVNode._children[i] = childVNode;\n\t\t}\n\n\t\t// Terser removes the `continue` here and wraps the loop body\n\t\t// in a `if (childVNode) { ... } condition\n\t\tif (childVNode == null) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tchildVNode._parent = newParentVNode;\n\t\tchildVNode._depth = newParentVNode._depth + 1;\n\n\t\t// Check if we find a corresponding element in oldChildren.\n\t\t// If found, delete the array item by setting to `undefined`.\n\t\t// We use `undefined`, as `null` is reserved for empty placeholders\n\t\t// (holes).\n\t\toldVNode = oldChildren[i];\n\n\t\tif (\n\t\t\toldVNode === null ||\n\t\t\t(oldVNode &&\n\t\t\t\tchildVNode.key == oldVNode.key &&\n\t\t\t\tchildVNode.type === oldVNode.type)\n\t\t) {\n\t\t\toldChildren[i] = undefined;\n\t\t} else {\n\t\t\t// Either oldVNode === undefined or oldChildrenLength > 0,\n\t\t\t// so after this loop oldVNode == null or oldVNode is a valid value.\n\t\t\tfor (j = 0; j < oldChildrenLength; j++) {\n\t\t\t\toldVNode = oldChildren[j];\n\t\t\t\t// If childVNode is unkeyed, we only match similarly unkeyed nodes, otherwise we match by key.\n\t\t\t\t// We always match by type (in either case).\n\t\t\t\tif (\n\t\t\t\t\toldVNode &&\n\t\t\t\t\tchildVNode.key == oldVNode.key &&\n\t\t\t\t\tchildVNode.type === oldVNode.type\n\t\t\t\t) {\n\t\t\t\t\toldChildren[j] = undefined;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\toldVNode = null;\n\t\t\t}\n\t\t}\n\n\t\toldVNode = oldVNode || EMPTY_OBJ;\n\n\t\t// Morph the old element into the new one, but don't append it to the dom yet\n\t\tdiff(\n\t\t\tparentDom,\n\t\t\tchildVNode,\n\t\t\toldVNode,\n\t\t\tglobalContext,\n\t\t\tisSvg,\n\t\t\texcessDomChildren,\n\t\t\tcommitQueue,\n\t\t\toldDom,\n\t\t\tisHydrating\n\t\t);\n\n\t\tnewDom = childVNode._dom;\n\n\t\tif ((j = childVNode.ref) && oldVNode.ref != j) {\n\t\t\tif (!refs) refs = [];\n\t\t\tif (oldVNode.ref) refs.push(oldVNode.ref, null, childVNode);\n\t\t\trefs.push(j, childVNode._component || newDom, childVNode);\n\t\t}\n\n\t\tif (newDom != null) {\n\t\t\tif (firstChildDom == null) {\n\t\t\t\tfirstChildDom = newDom;\n\t\t\t}\n\n\t\t\tif (\n\t\t\t\ttypeof childVNode.type == 'function' &&\n\t\t\t\tchildVNode._children === oldVNode._children\n\t\t\t) {\n\t\t\t\tchildVNode._nextDom = oldDom = reorderChildren(\n\t\t\t\t\tchildVNode,\n\t\t\t\t\toldDom,\n\t\t\t\t\tparentDom\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\toldDom = placeChild(\n\t\t\t\t\tparentDom,\n\t\t\t\t\tchildVNode,\n\t\t\t\t\toldVNode,\n\t\t\t\t\toldChildren,\n\t\t\t\t\tnewDom,\n\t\t\t\t\toldDom\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (typeof newParentVNode.type == 'function') {\n\t\t\t\t// Because the newParentVNode is Fragment-like, we need to set it's\n\t\t\t\t// _nextDom property to the nextSibling of its last child DOM node.\n\t\t\t\t//\n\t\t\t\t// `oldDom` contains the correct value here because if the last child\n\t\t\t\t// is a Fragment-like, then oldDom has already been set to that child's _nextDom.\n\t\t\t\t// If the last child is a DOM VNode, then oldDom will be set to that DOM\n\t\t\t\t// node's nextSibling.\n\t\t\t\tnewParentVNode._nextDom = oldDom;\n\t\t\t}\n\t\t} else if (\n\t\t\toldDom &&\n\t\t\toldVNode._dom == oldDom &&\n\t\t\toldDom.parentNode != parentDom\n\t\t) {\n\t\t\t// The above condition is to handle null placeholders. See test in placeholder.test.js:\n\t\t\t// `efficiently replace null placeholders in parent rerenders`\n\t\t\toldDom = getDomSibling(oldVNode);\n\t\t}\n\t}\n\n\tnewParentVNode._dom = firstChildDom;\n\n\t// Remove remaining oldChildren if there are any.\n\tfor (i = oldChildrenLength; i--; ) {\n\t\tif (oldChildren[i] != null) {\n\t\t\tunmount(oldChildren[i], oldChildren[i]);\n\t\t}\n\t}\n\n\t// Set refs only after unmount\n\tif (refs) {\n\t\tfor (i = 0; i < refs.length; i++) {\n\t\t\tapplyRef(refs[i], refs[++i], refs[++i]);\n\t\t}\n\t}\n}\n\nfunction reorderChildren(childVNode, oldDom, parentDom) {\n\t// Note: VNodes in nested suspended trees may be missing _children.\n\tlet c = childVNode._children;\n\tlet tmp = 0;\n\tfor (; c && tmp < c.length; tmp++) {\n\t\tlet vnode = c[tmp];\n\t\tif (vnode) {\n\t\t\t// We typically enter this code path on sCU bailout, where we copy\n\t\t\t// oldVNode._children to newVNode._children. If that is the case, we need\n\t\t\t// to update the old children's _parent pointer to point to the newVNode\n\t\t\t// (childVNode here).\n\t\t\tvnode._parent = childVNode;\n\n\t\t\tif (typeof vnode.type == 'function') {\n\t\t\t\toldDom = reorderChildren(vnode, oldDom, parentDom);\n\t\t\t} else {\n\t\t\t\toldDom = placeChild(parentDom, vnode, vnode, c, vnode._dom, oldDom);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn oldDom;\n}\n\n/**\n * Flatten and loop through the children of a virtual node\n * @param {import('../index').ComponentChildren} children The unflattened\n * children of a virtual node\n * @returns {import('../internal').VNode[]}\n */\nexport function toChildArray(children, out) {\n\tout = out || [];\n\tif (children == null || typeof children == 'boolean') {\n\t} else if (Array.isArray(children)) {\n\t\tchildren.some(child => {\n\t\t\ttoChildArray(child, out);\n\t\t});\n\t} else {\n\t\tout.push(children);\n\t}\n\treturn out;\n}\n\nfunction placeChild(\n\tparentDom,\n\tchildVNode,\n\toldVNode,\n\toldChildren,\n\tnewDom,\n\toldDom\n) {\n\tlet nextDom;\n\tif (childVNode._nextDom !== undefined) {\n\t\t// Only Fragments or components that return Fragment like VNodes will\n\t\t// have a non-undefined _nextDom. Continue the diff from the sibling\n\t\t// of last DOM child of this child VNode\n\t\tnextDom = childVNode._nextDom;\n\n\t\t// Eagerly cleanup _nextDom. We don't need to persist the value because\n\t\t// it is only used by `diffChildren` to determine where to resume the diff after\n\t\t// diffing Components and Fragments. Once we store it the nextDOM local var, we\n\t\t// can clean up the property\n\t\tchildVNode._nextDom = undefined;\n\t} else if (\n\t\toldVNode == null ||\n\t\tnewDom != oldDom ||\n\t\tnewDom.parentNode == null\n\t) {\n\t\touter: if (oldDom == null || oldDom.parentNode !== parentDom) {\n\t\t\tparentDom.appendChild(newDom);\n\t\t\tnextDom = null;\n\t\t} else {\n\t\t\t// `j<oldChildrenLength; j+=2` is an alternative to `j++<oldChildrenLength/2`\n\t\t\tfor (\n\t\t\t\tlet sibDom = oldDom, j = 0;\n\t\t\t\t(sibDom = sibDom.nextSibling) && j < oldChildren.length;\n\t\t\t\tj += 1\n\t\t\t) {\n\t\t\t\tif (sibDom == newDom) {\n\t\t\t\t\tbreak outer;\n\t\t\t\t}\n\t\t\t}\n\t\t\tparentDom.insertBefore(newDom, oldDom);\n\t\t\tnextDom = oldDom;\n\t\t}\n\t}\n\n\t// If we have pre-calculated the nextDOM node, use it. Else calculate it now\n\t// Strictly check for `undefined` here cuz `null` is a valid value of `nextDom`.\n\t// See more detail in create-element.js:createVNode\n\tif (nextDom !== undefined) {\n\t\toldDom = nextDom;\n\t} else {\n\t\toldDom = newDom.nextSibling;\n\t}\n\n\treturn oldDom;\n}\n","import { IS_NON_DIMENSIONAL } from '../constants';\nimport options from '../options';\n\n/**\n * Diff the old and new properties of a VNode and apply changes to the DOM node\n * @param {import('../internal').PreactElement} dom The DOM node to apply\n * changes to\n * @param {object} newProps The new props\n * @param {object} oldProps The old props\n * @param {boolean} isSvg Whether or not this node is an SVG node\n * @param {boolean} hydrate Whether or not we are in hydration mode\n */\nexport function diffProps(dom, newProps, oldProps, isSvg, hydrate) {\n\tlet i;\n\n\tfor (i in oldProps) {\n\t\tif (i !== 'children' && i !== 'key' && !(i in newProps)) {\n\t\t\tsetProperty(dom, i, null, oldProps[i], isSvg);\n\t\t}\n\t}\n\n\tfor (i in newProps) {\n\t\tif (\n\t\t\t(!hydrate || typeof newProps[i] == 'function') &&\n\t\t\ti !== 'children' &&\n\t\t\ti !== 'key' &&\n\t\t\ti !== 'value' &&\n\t\t\ti !== 'checked' &&\n\t\t\toldProps[i] !== newProps[i]\n\t\t) {\n\t\t\tsetProperty(dom, i, newProps[i], oldProps[i], isSvg);\n\t\t}\n\t}\n}\n\nfunction setStyle(style, key, value) {\n\tif (key[0] === '-') {\n\t\tstyle.setProperty(key, value);\n\t} else if (value == null) {\n\t\tstyle[key] = '';\n\t} else if (typeof value != 'number' || IS_NON_DIMENSIONAL.test(key)) {\n\t\tstyle[key] = value;\n\t} else {\n\t\tstyle[key] = value + 'px';\n\t}\n}\n\n/**\n * Set a property value on a DOM node\n * @param {import('../internal').PreactElement} dom The DOM node to modify\n * @param {string} name The name of the property to set\n * @param {*} value The value to set the property to\n * @param {*} oldValue The old value the property had\n * @param {boolean} isSvg Whether or not this DOM node is an SVG node or not\n */\nexport function setProperty(dom, name, value, oldValue, isSvg) {\n\tlet useCapture;\n\n\to: if (name === 'style') {\n\t\tif (typeof value == 'string') {\n\t\t\tdom.style.cssText = value;\n\t\t} else {\n\t\t\tif (typeof oldValue == 'string') {\n\t\t\t\tdom.style.cssText = oldValue = '';\n\t\t\t}\n\n\t\t\tif (oldValue) {\n\t\t\t\tfor (name in oldValue) {\n\t\t\t\t\tif (!(value && name in value)) {\n\t\t\t\t\t\tsetStyle(dom.style, name, '');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (value) {\n\t\t\t\tfor (name in value) {\n\t\t\t\t\tif (!oldValue || value[name] !== oldValue[name]) {\n\t\t\t\t\t\tsetStyle(dom.style, name, value[name]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t// Benchmark for comparison: https://esbench.com/bench/574c954bdb965b9a00965ac6\n\telse if (name[0] === 'o' && name[1] === 'n') {\n\t\tuseCapture = name !== (name = name.replace(/Capture$/, ''));\n\n\t\t// Infer correct casing for DOM built-in events:\n\t\tif (name.toLowerCase() in dom) name = name.toLowerCase().slice(2);\n\t\telse name = name.slice(2);\n\n\t\tif (!dom._listeners) dom._listeners = {};\n\t\tdom._listeners[name + useCapture] = value;\n\n\t\tif (value) {\n\t\t\tif (!oldValue) {\n\t\t\t\tconst handler = useCapture ? eventProxyCapture : eventProxy;\n\t\t\t\tdom.addEventListener(name, handler, useCapture);\n\t\t\t}\n\t\t} else {\n\t\t\tconst handler = useCapture ? eventProxyCapture : eventProxy;\n\t\t\tdom.removeEventListener(name, handler, useCapture);\n\t\t}\n\t} else if (name !== 'dangerouslySetInnerHTML') {\n\t\tif (isSvg) {\n\t\t\t// Normalize incorrect prop usage for SVG:\n\t\t\t// - xlink:href / xlinkHref --> href (xlink:href was removed from SVG and isn't needed)\n\t\t\t// - className --> class\n\t\t\tname = name.replace(/xlink(H|:h)/, 'h').replace(/sName$/, 's');\n\t\t} else if (\n\t\t\tname !== 'href' &&\n\t\t\tname !== 'list' &&\n\t\t\tname !== 'form' &&\n\t\t\t// Default value in browsers is `-1` and an empty string is\n\t\t\t// cast to `0` instead\n\t\t\tname !== 'tabIndex' &&\n\t\t\tname !== 'download' &&\n\t\t\tname in dom\n\t\t) {\n\t\t\ttry {\n\t\t\t\tdom[name] = value == null ? '' : value;\n\t\t\t\t// labelled break is 1b smaller here than a return statement (sorry)\n\t\t\t\tbreak o;\n\t\t\t} catch (e) {}\n\t\t}\n\n\t\t// ARIA-attributes have a different notion of boolean values.\n\t\t// The value `false` is different from the attribute not\n\t\t// existing on the DOM, so we can't remove it. For non-boolean\n\t\t// ARIA-attributes we could treat false as a removal, but the\n\t\t// amount of exceptions would cost us too many bytes. On top of\n\t\t// that other VDOM frameworks also always stringify `false`.\n\n\t\tif (typeof value === 'function') {\n\t\t\t// never serialize functions as attribute values\n\t\t} else if (value != null && (value !== false || name.indexOf('-') != -1)) {\n\t\t\tdom.setAttribute(name, value);\n\t\t} else {\n\t\t\tdom.removeAttribute(name);\n\t\t}\n\t}\n}\n\n/**\n * Proxy an event to hooked event handlers\n * @param {Event} e The event object from the browser\n * @private\n */\nfunction eventProxy(e) {\n\tthis._listeners[e.type + false](options.event ? options.event(e) : e);\n}\n\nfunction eventProxyCapture(e) {\n\tthis._listeners[e.type + true](options.event ? options.event(e) : e);\n}\n","import { EMPTY_OBJ } from '../constants';\nimport { Component, getDomSibling } from '../component';\nimport { Fragment } from '../create-element';\nimport { diffChildren } from './children';\nimport { diffProps, setProperty } from './props';\nimport { assign, removeNode, slice } from '../util';\nimport options from '../options';\n\n/**\n * Diff two virtual nodes and apply proper changes to the DOM\n * @param {import('../internal').PreactElement} parentDom The parent of the DOM element\n * @param {import('../internal').VNode} newVNode The new virtual node\n * @param {import('../internal').VNode} oldVNode The old virtual node\n * @param {object} globalContext The current context object. Modified by getChildContext\n * @param {boolean} isSvg Whether or not this element is an SVG node\n * @param {Array<import('../internal').PreactElement>} excessDomChildren\n * @param {Array<import('../internal').Component>} commitQueue List of components\n * which have callbacks to invoke in commitRoot\n * @param {import('../internal').PreactElement} oldDom The current attached DOM\n * element any new dom elements should be placed around. Likely `null` on first\n * render (except when hydrating). Can be a sibling DOM element when diffing\n * Fragments that have siblings. In most cases, it starts out as `oldChildren[0]._dom`.\n * @param {boolean} [isHydrating] Whether or not we are in hydration\n */\nexport function diff(\n\tparentDom,\n\tnewVNode,\n\toldVNode,\n\tglobalContext,\n\tisSvg,\n\texcessDomChildren,\n\tcommitQueue,\n\toldDom,\n\tisHydrating\n) {\n\tlet tmp,\n\t\tnewType = newVNode.type;\n\n\t// When passing through createElement it assigns the object\n\t// constructor as undefined. This to prevent JSON-injection.\n\tif (newVNode.constructor !== undefined) return null;\n\n\t// If the previous diff bailed out, resume creating/hydrating.\n\tif (oldVNode._hydrating != null) {\n\t\tisHydrating = oldVNode._hydrating;\n\t\toldDom = newVNode._dom = oldVNode._dom;\n\t\t// if we resume, we want the tree to be \"unlocked\"\n\t\tnewVNode._hydrating = null;\n\t\texcessDomChildren = [oldDom];\n\t}\n\n\tif ((tmp = options._diff)) tmp(newVNode);\n\n\ttry {\n\t\touter: if (typeof newType == 'function') {\n\t\t\tlet c, isNew, oldProps, oldState, snapshot, clearProcessingException;\n\t\t\tlet newProps = newVNode.props;\n\n\t\t\t// Necessary for createContext api. Setting this property will pass\n\t\t\t// the context value as `this.context` just for this component.\n\t\t\ttmp = newType.contextType;\n\t\t\tlet provider = tmp && globalContext[tmp._id];\n\t\t\tlet componentContext = tmp\n\t\t\t\t? provider\n\t\t\t\t\t? provider.props.value\n\t\t\t\t\t: tmp._defaultValue\n\t\t\t\t: globalContext;\n\n\t\t\t// Get component and set it to `c`\n\t\t\tif (oldVNode._component) {\n\t\t\t\tc = newVNode._component = oldVNode._component;\n\t\t\t\tclearProcessingException = c._processingException = c._pendingError;\n\t\t\t} else {\n\t\t\t\t// Instantiate the new component\n\t\t\t\tif ('prototype' in newType && newType.prototype.render) {\n\t\t\t\t\t// @ts-ignore The check above verifies that newType is suppose to be constructed\n\t\t\t\t\tnewVNode._component = c = new newType(newProps, componentContext); // eslint-disable-line new-cap\n\t\t\t\t} else {\n\t\t\t\t\t// @ts-ignore Trust me, Component implements the interface we want\n\t\t\t\t\tnewVNode._component = c = new Component(newProps, componentContext);\n\t\t\t\t\tc.constructor = newType;\n\t\t\t\t\tc.render = doRender;\n\t\t\t\t}\n\t\t\t\tif (provider) provider.sub(c);\n\n\t\t\t\tc.props = newProps;\n\t\t\t\tif (!c.state) c.state = {};\n\t\t\t\tc.context = componentContext;\n\t\t\t\tc._globalContext = globalContext;\n\t\t\t\tisNew = c._dirty = true;\n\t\t\t\tc._renderCallbacks = [];\n\t\t\t\tc._stateCallbacks = [];\n\t\t\t}\n\n\t\t\t// Invoke getDerivedStateFromProps\n\t\t\tif (c._nextState == null) {\n\t\t\t\tc._nextState = c.state;\n\t\t\t}\n\n\t\t\tif (newType.getDerivedStateFromProps != null) {\n\t\t\t\tif (c._nextState == c.state) {\n\t\t\t\t\tc._nextState = assign({}, c._nextState);\n\t\t\t\t}\n\n\t\t\t\tassign(\n\t\t\t\t\tc._nextState,\n\t\t\t\t\tnewType.getDerivedStateFromProps(newProps, c._nextState)\n\t\t\t\t);\n\t\t\t}\n\n\t\t\toldProps = c.props;\n\t\t\toldState = c.state;\n\n\t\t\t// Invoke pre-render lifecycle methods\n\t\t\tif (isNew) {\n\t\t\t\tif (\n\t\t\t\t\tnewType.getDerivedStateFromProps == null &&\n\t\t\t\t\tc.componentWillMount != null\n\t\t\t\t) {\n\t\t\t\t\tc.componentWillMount();\n\t\t\t\t}\n\n\t\t\t\tif (c.componentDidMount != null) {\n\t\t\t\t\tc._renderCallbacks.push(c.componentDidMount);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (\n\t\t\t\t\tnewType.getDerivedStateFromProps == null &&\n\t\t\t\t\tnewProps !== oldProps &&\n\t\t\t\t\tc.componentWillReceiveProps != null\n\t\t\t\t) {\n\t\t\t\t\tc.componentWillReceiveProps(newProps, componentContext);\n\t\t\t\t}\n\n\t\t\t\tif (\n\t\t\t\t\t(!c._force &&\n\t\t\t\t\t\tc.shouldComponentUpdate != null &&\n\t\t\t\t\t\tc.shouldComponentUpdate(\n\t\t\t\t\t\t\tnewProps,\n\t\t\t\t\t\t\tc._nextState,\n\t\t\t\t\t\t\tcomponentContext\n\t\t\t\t\t\t) === false) ||\n\t\t\t\t\tnewVNode._original === oldVNode._original\n\t\t\t\t) {\n\t\t\t\t\tc.props = newProps;\n\t\t\t\t\tc.state = c._nextState;\n\t\t\t\t\t// More info about this here: https://gist.github.com/JoviDeCroock/bec5f2ce93544d2e6070ef8e0036e4e8\n\t\t\t\t\tif (newVNode._original !== oldVNode._original) c._dirty = false;\n\t\t\t\t\tc._vnode = newVNode;\n\t\t\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t\t\t\tnewVNode._children = oldVNode._children;\n\t\t\t\t\tnewVNode._children.forEach(vnode => {\n\t\t\t\t\t\tif (vnode) vnode._parent = newVNode;\n\t\t\t\t\t});\n\n\t\t\t\t\tfor (let i = 0; i < c._stateCallbacks.length; i++) {\n\t\t\t\t\t\tc._renderCallbacks.push(c._stateCallbacks[i]);\n\t\t\t\t\t}\n\t\t\t\t\tc._stateCallbacks = [];\n\n\t\t\t\t\tif (c._renderCallbacks.length) {\n\t\t\t\t\t\tcommitQueue.push(c);\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak outer;\n\t\t\t\t}\n\n\t\t\t\tif (c.componentWillUpdate != null) {\n\t\t\t\t\tc.componentWillUpdate(newProps, c._nextState, componentContext);\n\t\t\t\t}\n\n\t\t\t\tif (c.componentDidUpdate != null) {\n\t\t\t\t\tc._renderCallbacks.push(() => {\n\t\t\t\t\t\tc.componentDidUpdate(oldProps, oldState, snapshot);\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tc.context = componentContext;\n\t\t\tc.props = newProps;\n\t\t\tc._vnode = newVNode;\n\t\t\tc._parentDom = parentDom;\n\n\t\t\tlet renderHook = options._render,\n\t\t\t\tcount = 0;\n\t\t\tif ('prototype' in newType && newType.prototype.render) {\n\t\t\t\tc.state = c._nextState;\n\t\t\t\tc._dirty = false;\n\n\t\t\t\tif (renderHook) renderHook(newVNode);\n\n\t\t\t\ttmp = c.render(c.props, c.state, c.context);\n\n\t\t\t\tfor (let i = 0; i < c._stateCallbacks.length; i++) {\n\t\t\t\t\tc._renderCallbacks.push(c._stateCallbacks[i]);\n\t\t\t\t}\n\t\t\t\tc._stateCallbacks = [];\n\t\t\t} else {\n\t\t\t\tdo {\n\t\t\t\t\tc._dirty = false;\n\t\t\t\t\tif (renderHook) renderHook(newVNode);\n\n\t\t\t\t\ttmp = c.render(c.props, c.state, c.context);\n\n\t\t\t\t\t// Handle setState called in render, see #2553\n\t\t\t\t\tc.state = c._nextState;\n\t\t\t\t} while (c._dirty && ++count < 25);\n\t\t\t}\n\n\t\t\t// Handle setState called in render, see #2553\n\t\t\tc.state = c._nextState;\n\n\t\t\tif (c.getChildContext != null) {\n\t\t\t\tglobalContext = assign(assign({}, globalContext), c.getChildContext());\n\t\t\t}\n\n\t\t\tif (!isNew && c.getSnapshotBeforeUpdate != null) {\n\t\t\t\tsnapshot = c.getSnapshotBeforeUpdate(oldProps, oldState);\n\t\t\t}\n\n\t\t\tlet isTopLevelFragment =\n\t\t\t\ttmp != null && tmp.type === Fragment && tmp.key == null;\n\t\t\tlet renderResult = isTopLevelFragment ? tmp.props.children : tmp;\n\n\t\t\tdiffChildren(\n\t\t\t\tparentDom,\n\t\t\t\tArray.isArray(renderResult) ? renderResult : [renderResult],\n\t\t\t\tnewVNode,\n\t\t\t\toldVNode,\n\t\t\t\tglobalContext,\n\t\t\t\tisSvg,\n\t\t\t\texcessDomChildren,\n\t\t\t\tcommitQueue,\n\t\t\t\toldDom,\n\t\t\t\tisHydrating\n\t\t\t);\n\n\t\t\tc.base = newVNode._dom;\n\n\t\t\t// We successfully rendered this VNode, unset any stored hydration/bailout state:\n\t\t\tnewVNode._hydrating = null;\n\n\t\t\tif (c._renderCallbacks.length) {\n\t\t\t\tcommitQueue.push(c);\n\t\t\t}\n\n\t\t\tif (clearProcessingException) {\n\t\t\t\tc._pendingError = c._processingException = null;\n\t\t\t}\n\n\t\t\tc._force = false;\n\t\t} else if (\n\t\t\texcessDomChildren == null &&\n\t\t\tnewVNode._original === oldVNode._original\n\t\t) {\n\t\t\tnewVNode._children = oldVNode._children;\n\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t} else {\n\t\t\tnewVNode._dom = diffElementNodes(\n\t\t\t\toldVNode._dom,\n\t\t\t\tnewVNode,\n\t\t\t\toldVNode,\n\t\t\t\tglobalContext,\n\t\t\t\tisSvg,\n\t\t\t\texcessDomChildren,\n\t\t\t\tcommitQueue,\n\t\t\t\tisHydrating\n\t\t\t);\n\t\t}\n\n\t\tif ((tmp = options.diffed)) tmp(newVNode);\n\t} catch (e) {\n\t\tnewVNode._original = null;\n\t\t// if hydrating or creating initial tree, bailout preserves DOM:\n\t\tif (isHydrating || excessDomChildren != null) {\n\t\t\tnewVNode._dom = oldDom;\n\t\t\tnewVNode._hydrating = !!isHydrating;\n\t\t\texcessDomChildren[excessDomChildren.indexOf(oldDom)] = null;\n\t\t\t// ^ could possibly be simplified to:\n\t\t\t// excessDomChildren.length = 0;\n\t\t}\n\t\toptions._catchError(e, newVNode, oldVNode);\n\t}\n}\n\n/**\n * @param {Array<import('../internal').Component>} commitQueue List of components\n * which have callbacks to invoke in commitRoot\n * @param {import('../internal').VNode} root\n */\nexport function commitRoot(commitQueue, root) {\n\tif (options._commit) options._commit(root, commitQueue);\n\n\tcommitQueue.some(c => {\n\t\ttry {\n\t\t\t// @ts-ignore Reuse the commitQueue variable here so the type changes\n\t\t\tcommitQueue = c._renderCallbacks;\n\t\t\tc._renderCallbacks = [];\n\t\t\tcommitQueue.some(cb => {\n\t\t\t\t// @ts-ignore See above ts-ignore on commitQueue\n\t\t\t\tcb.call(c);\n\t\t\t});\n\t\t} catch (e) {\n\t\t\toptions._catchError(e, c._vnode);\n\t\t}\n\t});\n}\n\n/**\n * Diff two virtual nodes representing DOM element\n * @param {import('../internal').PreactElement} dom The DOM element representing\n * the virtual nodes being diffed\n * @param {import('../internal').VNode} newVNode The new virtual node\n * @param {import('../internal').VNode} oldVNode The old virtual node\n * @param {object} globalContext The current context object\n * @param {boolean} isSvg Whether or not this DOM node is an SVG node\n * @param {*} excessDomChildren\n * @param {Array<import('../internal').Component>} commitQueue List of components\n * which have callbacks to invoke in commitRoot\n * @param {boolean} isHydrating Whether or not we are in hydration\n * @returns {import('../internal').PreactElement}\n */\nfunction diffElementNodes(\n\tdom,\n\tnewVNode,\n\toldVNode,\n\tglobalContext,\n\tisSvg,\n\texcessDomChildren,\n\tcommitQueue,\n\tisHydrating\n) {\n\tlet oldProps = oldVNode.props;\n\tlet newProps = newVNode.props;\n\tlet nodeType = newVNode.type;\n\tlet i = 0;\n\n\t// Tracks entering and exiting SVG namespace when descending through the tree.\n\tif (nodeType === 'svg') isSvg = true;\n\n\tif (excessDomChildren != null) {\n\t\tfor (; i < excessDomChildren.length; i++) {\n\t\t\tconst child = excessDomChildren[i];\n\n\t\t\t// if newVNode matches an element in excessDomChildren or the `dom`\n\t\t\t// argument matches an element in excessDomChildren, remove it from\n\t\t\t// excessDomChildren so it isn't later removed in diffChildren\n\t\t\tif (\n\t\t\t\tchild &&\n\t\t\t\t'setAttribute' in child === !!nodeType &&\n\t\t\t\t(nodeType ? child.localName === nodeType : child.nodeType === 3)\n\t\t\t) {\n\t\t\t\tdom = child;\n\t\t\t\texcessDomChildren[i] = null;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\tif (dom == null) {\n\t\tif (nodeType === null) {\n\t\t\t// @ts-ignore createTextNode returns Text, we expect PreactElement\n\t\t\treturn document.createTextNode(newProps);\n\t\t}\n\n\t\tif (isSvg) {\n\t\t\tdom = document.createElementNS(\n\t\t\t\t'http://www.w3.org/2000/svg',\n\t\t\t\t// @ts-ignore We know `newVNode.type` is a string\n\t\t\t\tnodeType\n\t\t\t);\n\t\t} else {\n\t\t\tdom = document.createElement(\n\t\t\t\t// @ts-ignore We know `newVNode.type` is a string\n\t\t\t\tnodeType,\n\t\t\t\tnewProps.is && newProps\n\t\t\t);\n\t\t}\n\n\t\t// we created a new parent, so none of the previously attached children can be reused:\n\t\texcessDomChildren = null;\n\t\t// we are creating a new node, so we can assume this is a new subtree (in case we are hydrating), this deopts the hydrate\n\t\tisHydrating = false;\n\t}\n\n\tif (nodeType === null) {\n\t\t// During hydration, we still have to split merged text from SSR'd HTML.\n\t\tif (oldProps !== newProps && (!isHydrating || dom.data !== newProps)) {\n\t\t\tdom.data = newProps;\n\t\t}\n\t} else {\n\t\t// If excessDomChildren was not null, repopulate it with the current element's children:\n\t\texcessDomChildren = excessDomChildren && slice.call(dom.childNodes);\n\n\t\toldProps = oldVNode.props || EMPTY_OBJ;\n\n\t\tlet oldHtml = oldProps.dangerouslySetInnerHTML;\n\t\tlet newHtml = newProps.dangerouslySetInnerHTML;\n\n\t\t// During hydration, props are not diffed at all (including dangerouslySetInnerHTML)\n\t\t// @TODO we should warn in debug mode when props don't match here.\n\t\tif (!isHydrating) {\n\t\t\t// But, if we are in a situation where we are using existing DOM (e.g. replaceNode)\n\t\t\t// we should read the existing DOM attributes to diff them\n\t\t\tif (excessDomChildren != null) {\n\t\t\t\toldProps = {};\n\t\t\t\tfor (i = 0; i < dom.attributes.length; i++) {\n\t\t\t\t\toldProps[dom.attributes[i].name] = dom.attributes[i].value;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (newHtml || oldHtml) {\n\t\t\t\t// Avoid re-applying the same '__html' if it did not changed between re-render\n\t\t\t\tif (\n\t\t\t\t\t!newHtml ||\n\t\t\t\t\t((!oldHtml || newHtml.__html != oldHtml.__html) &&\n\t\t\t\t\t\tnewHtml.__html !== dom.innerHTML)\n\t\t\t\t) {\n\t\t\t\t\tdom.innerHTML = (newHtml && newHtml.__html) || '';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tdiffProps(dom, newProps, oldProps, isSvg, isHydrating);\n\n\t\t// If the new vnode didn't have dangerouslySetInnerHTML, diff its children\n\t\tif (newHtml) {\n\t\t\tnewVNode._children = [];\n\t\t} else {\n\t\t\ti = newVNode.props.children;\n\t\t\tdiffChildren(\n\t\t\t\tdom,\n\t\t\t\tArray.isArray(i) ? i : [i],\n\t\t\t\tnewVNode,\n\t\t\t\toldVNode,\n\t\t\t\tglobalContext,\n\t\t\t\tisSvg && nodeType !== 'foreignObject',\n\t\t\t\texcessDomChildren,\n\t\t\t\tcommitQueue,\n\t\t\t\texcessDomChildren\n\t\t\t\t\t? excessDomChildren[0]\n\t\t\t\t\t: oldVNode._children && getDomSibling(oldVNode, 0),\n\t\t\t\tisHydrating\n\t\t\t);\n\n\t\t\t// Remove children that are not part of any vnode.\n\t\t\tif (excessDomChildren != null) {\n\t\t\t\tfor (i = excessDomChildren.length; i--; ) {\n\t\t\t\t\tif (excessDomChildren[i] != null) removeNode(excessDomChildren[i]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// (as above, don't diff props during hydration)\n\t\tif (!isHydrating) {\n\t\t\tif (\n\t\t\t\t'value' in newProps &&\n\t\t\t\t(i = newProps.value) !== undefined &&\n\t\t\t\t// #2756 For the <progress>-element the initial value is 0,\n\t\t\t\t// despite the attribute not being present. When the attribute\n\t\t\t\t// is missing the progress bar is treated as indeterminate.\n\t\t\t\t// To fix that we'll always update it when it is 0 for progress elements\n\t\t\t\t(i !== dom.value ||\n\t\t\t\t\t(nodeType === 'progress' && !i) ||\n\t\t\t\t\t// This is only for IE 11 to fix <select> value not being updated.\n\t\t\t\t\t// To avoid a stale select value we need to set the option.value\n\t\t\t\t\t// again, which triggers IE11 to re-evaluate the select value\n\t\t\t\t\t(nodeType === 'option' && i !== oldProps.value))\n\t\t\t) {\n\t\t\t\tsetProperty(dom, 'value', i, oldProps.value, false);\n\t\t\t}\n\t\t\tif (\n\t\t\t\t'checked' in newProps &&\n\t\t\t\t(i = newProps.checked) !== undefined &&\n\t\t\t\ti !== dom.checked\n\t\t\t) {\n\t\t\t\tsetProperty(dom, 'checked', i, oldProps.checked, false);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn dom;\n}\n\n/**\n * Invoke or update a ref, depending on whether it is a function or object ref.\n * @param {object|function} ref\n * @param {any} value\n * @param {import('../internal').VNode} vnode\n */\nexport function applyRef(ref, value, vnode) {\n\ttry {\n\t\tif (typeof ref == 'function') ref(value);\n\t\telse ref.current = value;\n\t} catch (e) {\n\t\toptions._catchError(e, vnode);\n\t}\n}\n\n/**\n * Unmount a virtual node from the tree and apply DOM changes\n * @param {import('../internal').VNode} vnode The virtual node to unmount\n * @param {import('../internal').VNode} parentVNode The parent of the VNode that\n * initiated the unmount\n * @param {boolean} [skipRemove] Flag that indicates that a parent node of the\n * current element is already detached from the DOM.\n */\nexport function unmount(vnode, parentVNode, skipRemove) {\n\tlet r;\n\tif (options.unmount) options.unmount(vnode);\n\n\tif ((r = vnode.ref)) {\n\t\tif (!r.current || r.current === vnode._dom) {\n\t\t\tapplyRef(r, null, parentVNode);\n\t\t}\n\t}\n\n\tif ((r = vnode._component) != null) {\n\t\tif (r.componentWillUnmount) {\n\t\t\ttry {\n\t\t\t\tr.componentWillUnmount();\n\t\t\t} catch (e) {\n\t\t\t\toptions._catchError(e, parentVNode);\n\t\t\t}\n\t\t}\n\n\t\tr.base = r._parentDom = null;\n\t\tvnode._component = undefined;\n\t}\n\n\tif ((r = vnode._children)) {\n\t\tfor (let i = 0; i < r.length; i++) {\n\t\t\tif (r[i]) {\n\t\t\t\tunmount(\n\t\t\t\t\tr[i],\n\t\t\t\t\tparentVNode,\n\t\t\t\t\tskipRemove || typeof vnode.type !== 'function'\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\tif (!skipRemove && vnode._dom != null) {\n\t\tremoveNode(vnode._dom);\n\t}\n\n\t// Must be set to `undefined` to properly clean up `_nextDom`\n\t// for which `null` is a valid value. See comment in `create-element.js`\n\tvnode._parent = vnode._dom = vnode._nextDom = undefined;\n}\n\n/** The `.render()` method for a PFC backing instance. */\nfunction doRender(props, state, context) {\n\treturn this.constructor(props, context);\n}\n","import { EMPTY_OBJ } from './constants';\nimport { commitRoot, diff } from './diff/index';\nimport { createElement, Fragment } from './create-element';\nimport options from './options';\nimport { slice } from './util';\n\n/**\n * Render a Preact virtual node into a DOM element\n * @param {import('./internal').ComponentChild} vnode The virtual node to render\n * @param {import('./internal').PreactElement} parentDom The DOM element to\n * render into\n * @param {import('./internal').PreactElement | object} [replaceNode] Optional: Attempt to re-use an\n * existing DOM tree rooted at `replaceNode`\n */\nexport function render(vnode, parentDom, replaceNode) {\n\tif (options._root) options._root(vnode, parentDom);\n\n\t// We abuse the `replaceNode` parameter in `hydrate()` to signal if we are in\n\t// hydration mode or not by passing the `hydrate` function instead of a DOM\n\t// element..\n\tlet isHydrating = typeof replaceNode === 'function';\n\n\t// To be able to support calling `render()` multiple times on the same\n\t// DOM node, we need to obtain a reference to the previous tree. We do\n\t// this by assigning a new `_children` property to DOM nodes which points\n\t// to the last rendered tree. By default this property is not present, which\n\t// means that we are mounting a new tree for the first time.\n\tlet oldVNode = isHydrating\n\t\t? null\n\t\t: (replaceNode && replaceNode._children) || parentDom._children;\n\n\tvnode = (\n\t\t(!isHydrating && replaceNode) ||\n\t\tparentDom\n\t)._children = createElement(Fragment, null, [vnode]);\n\n\t// List of effects that need to be called after diffing.\n\tlet commitQueue = [];\n\tdiff(\n\t\tparentDom,\n\t\t// Determine the new vnode tree and store it on the DOM element on\n\t\t// our custom `_children` property.\n\t\tvnode,\n\t\toldVNode || EMPTY_OBJ,\n\t\tEMPTY_OBJ,\n\t\tparentDom.ownerSVGElement !== undefined,\n\t\t!isHydrating && replaceNode\n\t\t\t? [replaceNode]\n\t\t\t: oldVNode\n\t\t\t? null\n\t\t\t: parentDom.firstChild\n\t\t\t? slice.call(parentDom.childNodes)\n\t\t\t: null,\n\t\tcommitQueue,\n\t\t!isHydrating && replaceNode\n\t\t\t? replaceNode\n\t\t\t: oldVNode\n\t\t\t? oldVNode._dom\n\t\t\t: parentDom.firstChild,\n\t\tisHydrating\n\t);\n\n\t// Flush all queued effects\n\tcommitRoot(commitQueue, vnode);\n}\n\n/**\n * Update an existing DOM element with data from a Preact virtual node\n * @param {import('./internal').ComponentChild} vnode The virtual node to render\n * @param {import('./internal').PreactElement} parentDom The DOM element to\n * update\n */\nexport function hydrate(vnode, parentDom) {\n\trender(vnode, parentDom, hydrate);\n}\n","/**\n * Find the closest error boundary to a thrown error and call it\n * @param {object} error The thrown value\n * @param {import('../internal').VNode} vnode The vnode that threw\n * the error that was caught (except for unmounting when this parameter\n * is the highest parent that was being unmounted)\n * @param {import('../internal').VNode} [oldVNode]\n * @param {import('../internal').ErrorInfo} [errorInfo]\n */\nexport function _catchError(error, vnode, oldVNode, errorInfo) {\n\t/** @type {import('../internal').Component} */\n\tlet component, ctor, handled;\n\n\tfor (; (vnode = vnode._parent); ) {\n\t\tif ((component = vnode._component) && !component._processingException) {\n\t\t\ttry {\n\t\t\t\tctor = component.constructor;\n\n\t\t\t\tif (ctor && ctor.getDerivedStateFromError != null) {\n\t\t\t\t\tcomponent.setState(ctor.getDerivedStateFromError(error));\n\t\t\t\t\thandled = component._dirty;\n\t\t\t\t}\n\n\t\t\t\tif (component.componentDidCatch != null) {\n\t\t\t\t\tcomponent.componentDidCatch(error, errorInfo || {});\n\t\t\t\t\thandled = component._dirty;\n\t\t\t\t}\n\n\t\t\t\t// This is an error boundary. Mark it as having bailed out, and whether it was mid-hydration.\n\t\t\t\tif (handled) {\n\t\t\t\t\treturn (component._pendingError = component);\n\t\t\t\t}\n\t\t\t} catch (e) {\n\t\t\t\terror = e;\n\t\t\t}\n\t\t}\n\t}\n\n\tthrow error;\n}\n","import { options } from 'preact';\n\n/** @type {number} */\nlet currentIndex;\n\n/** @type {import('./internal').Component} */\nlet currentComponent;\n\n/** @type {import('./internal').Component} */\nlet previousComponent;\n\n/** @type {number} */\nlet currentHook = 0;\n\n/** @type {Array<import('./internal').Component>} */\nlet afterPaintEffects = [];\n\nlet EMPTY = [];\n\nlet oldBeforeDiff = options._diff;\nlet oldBeforeRender = options._render;\nlet oldAfterDiff = options.diffed;\nlet oldCommit = options._commit;\nlet oldBeforeUnmount = options.unmount;\n\nconst RAF_TIMEOUT = 100;\nlet prevRaf;\n\noptions._diff = vnode => {\n\tcurrentComponent = null;\n\tif (oldBeforeDiff) oldBeforeDiff(vnode);\n};\n\noptions._render = vnode => {\n\tif (oldBeforeRender) oldBeforeRender(vnode);\n\n\tcurrentComponent = vnode._component;\n\tcurrentIndex = 0;\n\n\tconst hooks = currentComponent.__hooks;\n\tif (hooks) {\n\t\tif (previousComponent === currentComponent) {\n\t\t\thooks._pendingEffects = [];\n\t\t\tcurrentComponent._renderCallbacks = [];\n\t\t\thooks._list.forEach(hookItem => {\n\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t}\n\t\t\t\thookItem._pendingValue = EMPTY;\n\t\t\t\thookItem._nextValue = hookItem._pendingArgs = undefined;\n\t\t\t});\n\t\t} else {\n\t\t\thooks._pendingEffects.forEach(invokeCleanup);\n\t\t\thooks._pendingEffects.forEach(invokeEffect);\n\t\t\thooks._pendingEffects = [];\n\t\t}\n\t}\n\tpreviousComponent = currentComponent;\n};\n\noptions.diffed = vnode => {\n\tif (oldAfterDiff) oldAfterDiff(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tif (c.__hooks._pendingEffects.length) afterPaint(afterPaintEffects.push(c));\n\t\tc.__hooks._list.forEach(hookItem => {\n\t\t\tif (hookItem._pendingArgs) {\n\t\t\t\thookItem._args = hookItem._pendingArgs;\n\t\t\t}\n\t\t\tif (hookItem._pendingValue !== EMPTY) {\n\t\t\t\thookItem._value = hookItem._pendingValue;\n\t\t\t}\n\t\t\thookItem._pendingArgs = undefined;\n\t\t\thookItem._pendingValue = EMPTY;\n\t\t});\n\t}\n\tpreviousComponent = currentComponent = null;\n};\n\noptions._commit = (vnode, commitQueue) => {\n\tcommitQueue.some(component => {\n\t\ttry {\n\t\t\tcomponent._renderCallbacks.forEach(invokeCleanup);\n\t\t\tcomponent._renderCallbacks = component._renderCallbacks.filter(cb =>\n\t\t\t\tcb._value ? invokeEffect(cb) : true\n\t\t\t);\n\t\t} catch (e) {\n\t\t\tcommitQueue.some(c => {\n\t\t\t\tif (c._renderCallbacks) c._renderCallbacks = [];\n\t\t\t});\n\t\t\tcommitQueue = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t});\n\n\tif (oldCommit) oldCommit(vnode, commitQueue);\n};\n\noptions.unmount = vnode => {\n\tif (oldBeforeUnmount) oldBeforeUnmount(vnode);\n\n\tconst c = vnode._component;\n\tif (c && c.__hooks) {\n\t\tlet hasErrored;\n\t\tc.__hooks._list.forEach(s => {\n\t\t\ttry {\n\t\t\t\tinvokeCleanup(s);\n\t\t\t} catch (e) {\n\t\t\t\thasErrored = e;\n\t\t\t}\n\t\t});\n\t\tc.__hooks = undefined;\n\t\tif (hasErrored) options._catchError(hasErrored, c._vnode);\n\t}\n};\n\n/**\n * Get a hook's state from the currentComponent\n * @param {number} index The index of the hook to get\n * @param {number} type The index of the hook to get\n * @returns {any}\n */\nfunction getHookState(index, type) {\n\tif (options._hook) {\n\t\toptions._hook(currentComponent, index, currentHook || type);\n\t}\n\tcurrentHook = 0;\n\n\t// Largely inspired by:\n\t// * https://github.com/michael-klein/funcy.js/blob/f6be73468e6ec46b0ff5aa3cc4c9baf72a29025a/src/hooks/core_hooks.mjs\n\t// * https://github.com/michael-klein/funcy.js/blob/650beaa58c43c33a74820a3c98b3c7079cf2e333/src/renderer.mjs\n\t// Other implementations to look at:\n\t// * https://codesandbox.io/s/mnox05qp8\n\tconst hooks =\n\t\tcurrentComponent.__hooks ||\n\t\t(currentComponent.__hooks = {\n\t\t\t_list: [],\n\t\t\t_pendingEffects: []\n\t\t});\n\n\tif (index >= hooks._list.length) {\n\t\thooks._list.push({ _pendingValue: EMPTY });\n\t}\n\treturn hooks._list[index];\n}\n\n/**\n * @param {import('./index').StateUpdater<any>} [initialState]\n */\nexport function useState(initialState) {\n\tcurrentHook = 1;\n\treturn useReducer(invokeOrReturn, initialState);\n}\n\n/**\n * @param {import('./index').Reducer<any, any>} reducer\n * @param {import('./index').StateUpdater<any>} initialState\n * @param {(initialState: any) => void} [init]\n * @returns {[ any, (state: any) => void ]}\n */\nexport function useReducer(reducer, initialState, init) {\n\t/** @type {import('./internal').ReducerHookState} */\n\tconst hookState = getHookState(currentIndex++, 2);\n\thookState._reducer = reducer;\n\tif (!hookState._component) {\n\t\thookState._value = [\n\t\t\t!init ? invokeOrReturn(undefined, initialState) : init(initialState),\n\n\t\t\taction => {\n\t\t\t\tconst currentValue = hookState._nextValue\n\t\t\t\t\t? hookState._nextValue[0]\n\t\t\t\t\t: hookState._value[0];\n\t\t\t\tconst nextValue = hookState._reducer(currentValue, action);\n\n\t\t\t\tif (currentValue !== nextValue) {\n\t\t\t\t\thookState._nextValue = [nextValue, hookState._value[1]];\n\t\t\t\t\thookState._component.setState({});\n\t\t\t\t}\n\t\t\t}\n\t\t];\n\n\t\thookState._component = currentComponent;\n\n\t\tif (!currentComponent._hasScuFromHooks) {\n\t\t\tcurrentComponent._hasScuFromHooks = true;\n\t\t\tconst prevScu = currentComponent.shouldComponentUpdate;\n\n\t\t\t// This SCU has the purpose of bailing out after repeated updates\n\t\t\t// to stateful hooks.\n\t\t\t// we store the next value in _nextValue[0] and keep doing that for all\n\t\t\t// state setters, if we have next states and\n\t\t\t// all next states within a component end up being equal to their original state\n\t\t\t// we are safe to bail out for this specific component.\n\t\t\tcurrentComponent.shouldComponentUpdate = function(p, s, c) {\n\t\t\t\tif (!hookState._component.__hooks) return true;\n\n\t\t\t\tconst stateHooks = hookState._component.__hooks._list.filter(\n\t\t\t\t\tx => x._component\n\t\t\t\t);\n\t\t\t\tconst allHooksEmpty = stateHooks.every(x => !x._nextValue);\n\t\t\t\t// When we have no updated hooks in the component we invoke the previous SCU or\n\t\t\t\t// traverse the VDOM tree further.\n\t\t\t\tif (allHooksEmpty) {\n\t\t\t\t\treturn prevScu ? prevScu.call(this, p, s, c) : true;\n\t\t\t\t}\n\n\t\t\t\t// We check whether we have components with a nextValue set that\n\t\t\t\t// have values that aren't equal to one another this pushes\n\t\t\t\t// us to update further down the tree\n\t\t\t\tlet shouldUpdate = false;\n\t\t\t\tstateHooks.forEach(hookItem => {\n\t\t\t\t\tif (hookItem._nextValue) {\n\t\t\t\t\t\tconst currentValue = hookItem._value[0];\n\t\t\t\t\t\thookItem._value = hookItem._nextValue;\n\t\t\t\t\t\thookItem._nextValue = undefined;\n\t\t\t\t\t\tif (currentValue !== hookItem._value[0]) shouldUpdate = true;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\treturn shouldUpdate || hookState._component.props !== p\n\t\t\t\t\t? prevScu\n\t\t\t\t\t\t? prevScu.call(this, p, s, c)\n\t\t\t\t\t\t: true\n\t\t\t\t\t: false;\n\t\t\t};\n\t\t}\n\t}\n\n\treturn hookState._nextValue || hookState._value;\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {any[]} args\n */\nexport function useEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 3);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent.__hooks._pendingEffects.push(state);\n\t}\n}\n\n/**\n * @param {import('./internal').Effect} callback\n * @param {any[]} args\n */\nexport function useLayoutEffect(callback, args) {\n\t/** @type {import('./internal').EffectHookState} */\n\tconst state = getHookState(currentIndex++, 4);\n\tif (!options._skipEffects && argsChanged(state._args, args)) {\n\t\tstate._value = callback;\n\t\tstate._pendingArgs = args;\n\n\t\tcurrentComponent._renderCallbacks.push(state);\n\t}\n}\n\nexport function useRef(initialValue) {\n\tcurrentHook = 5;\n\treturn useMemo(() => ({ current: initialValue }), []);\n}\n\n/**\n * @param {object} ref\n * @param {() => object} createHandle\n * @param {any[]} args\n */\nexport function useImperativeHandle(ref, createHandle, args) {\n\tcurrentHook = 6;\n\tuseLayoutEffect(\n\t\t() => {\n\t\t\tif (typeof ref == 'function') {\n\t\t\t\tref(createHandle());\n\t\t\t\treturn () => ref(null);\n\t\t\t} else if (ref) {\n\t\t\t\tref.current = createHandle();\n\t\t\t\treturn () => (ref.current = null);\n\t\t\t}\n\t\t},\n\t\targs == null ? args : args.concat(ref)\n\t);\n}\n\n/**\n * @param {() => any} factory\n * @param {any[]} args\n */\nexport function useMemo(factory, args) {\n\t/** @type {import('./internal').MemoHookState} */\n\tconst state = getHookState(currentIndex++, 7);\n\tif (argsChanged(state._args, args)) {\n\t\tstate._pendingValue = factory();\n\t\tstate._pendingArgs = args;\n\t\tstate._factory = factory;\n\t\treturn state._pendingValue;\n\t}\n\n\treturn state._value;\n}\n\n/**\n * @param {() => void} callback\n * @param {any[]} args\n */\nexport function useCallback(callback, args) {\n\tcurrentHook = 8;\n\treturn useMemo(() => callback, args);\n}\n\n/**\n * @param {import('./internal').PreactContext} context\n */\nexport function useContext(context) {\n\tconst provider = currentComponent.context[context._id];\n\t// We could skip this call here, but than we'd not call\n\t// `options._hook`. We need to do that in order to make\n\t// the devtools aware of this hook.\n\t/** @type {import('./internal').ContextHookState} */\n\tconst state = getHookState(currentIndex++, 9);\n\t// The devtools needs access to the context object to\n\t// be able to pull of the default value when no provider\n\t// is present in the tree.\n\tstate._context = context;\n\tif (!provider) return context._defaultValue;\n\t// This is probably not safe to convert to \"!\"\n\tif (state._value == null) {\n\t\tstate._value = true;\n\t\tprovider.sub(currentComponent);\n\t}\n\treturn provider.props.value;\n}\n\n/**\n * Display a custom label for a custom hook for the devtools panel\n * @type {<T>(value: T, cb?: (value: T) => string | number) => void}\n */\nexport function useDebugValue(value, formatter) {\n\tif (options.useDebugValue) {\n\t\toptions.useDebugValue(formatter ? formatter(value) : value);\n\t}\n}\n\n/**\n * @param {(error: any, errorInfo: import('preact').ErrorInfo) => void} cb\n */\nexport function useErrorBoundary(cb) {\n\t/** @type {import('./internal').ErrorBoundaryHookState} */\n\tconst state = getHookState(currentIndex++, 10);\n\tconst errState = useState();\n\tstate._value = cb;\n\tif (!currentComponent.componentDidCatch) {\n\t\tcurrentComponent.componentDidCatch = (err, errorInfo) => {\n\t\t\tif (state._value) state._value(err, errorInfo);\n\t\t\terrState[1](err);\n\t\t};\n\t}\n\treturn [\n\t\terrState[0],\n\t\t() => {\n\t\t\terrState[1](undefined);\n\t\t}\n\t];\n}\n\nexport function useId() {\n\tconst state = getHookState(currentIndex++, 11);\n\tif (!state._value) {\n\t\t// Grab either the root node or the nearest async boundary node.\n\t\t/** @type {import('./internal.d').VNode} */\n\t\tlet root = currentComponent._vnode;\n\t\twhile (root !== null && !root._mask && root._parent !== null) {\n\t\t\troot = root._parent;\n\t\t}\n\n\t\tlet mask = root._mask || (root._mask = [0, 0]);\n\t\tstate._value = 'P' + mask[0] + '-' + mask[1]++;\n\t}\n\n\treturn state._value;\n}\n/**\n * After paint effects consumer.\n */\nfunction flushAfterPaintEffects() {\n\tlet component;\n\twhile ((component = afterPaintEffects.shift())) {\n\t\tif (!component._parentDom || !component.__hooks) continue;\n\t\ttry {\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeCleanup);\n\t\t\tcomponent.__hooks._pendingEffects.forEach(invokeEffect);\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t} catch (e) {\n\t\t\tcomponent.__hooks._pendingEffects = [];\n\t\t\toptions._catchError(e, component._vnode);\n\t\t}\n\t}\n}\n\nlet HAS_RAF = typeof requestAnimationFrame == 'function';\n\n/**\n * Schedule a callback to be invoked after the browser has a chance to paint a new frame.\n * Do this by combining requestAnimationFrame (rAF) + setTimeout to invoke a callback after\n * the next browser frame.\n *\n * Also, schedule a timeout in parallel to the the rAF to ensure the callback is invoked\n * even if RAF doesn't fire (for example if the browser tab is not visible)\n *\n * @param {() => void} callback\n */\nfunction afterNextFrame(callback) {\n\tconst done = () => {\n\t\tclearTimeout(timeout);\n\t\tif (HAS_RAF) cancelAnimationFrame(raf);\n\t\tsetTimeout(callback);\n\t};\n\tconst timeout = setTimeout(done, RAF_TIMEOUT);\n\n\tlet raf;\n\tif (HAS_RAF) {\n\t\traf = requestAnimationFrame(done);\n\t}\n}\n\n// Note: if someone used options.debounceRendering = requestAnimationFrame,\n// then effects will ALWAYS run on the NEXT frame instead of the current one, incurring a ~16ms delay.\n// Perhaps this is not such a big deal.\n/**\n * Schedule afterPaintEffects flush after the browser paints\n * @param {number} newQueueLength\n */\nfunction afterPaint(newQueueLength) {\n\tif (newQueueLength === 1 || prevRaf !== options.requestAnimationFrame) {\n\t\tprevRaf = options.requestAnimationFrame;\n\t\t(prevRaf || afterNextFrame)(flushAfterPaintEffects);\n\t}\n}\n\n/**\n * @param {import('./internal').EffectHookState} hook\n */\nfunction invokeCleanup(hook) {\n\t// A hook cleanup can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\tlet cleanup = hook._cleanup;\n\tif (typeof cleanup == 'function') {\n\t\thook._cleanup = undefined;\n\t\tcleanup();\n\t}\n\n\tcurrentComponent = comp;\n}\n\n/**\n * Invoke a Hook's effect\n * @param {import('./internal').EffectHookState} hook\n */\nfunction invokeEffect(hook) {\n\t// A hook call can introduce a call to render which creates a new root, this will call options.vnode\n\t// and move the currentComponent away.\n\tconst comp = currentComponent;\n\thook._cleanup = hook._value();\n\tcurrentComponent = comp;\n}\n\n/**\n * @param {any[]} oldArgs\n * @param {any[]} newArgs\n */\nfunction argsChanged(oldArgs, newArgs) {\n\treturn (\n\t\t!oldArgs ||\n\t\toldArgs.length !== newArgs.length ||\n\t\tnewArgs.some((arg, index) => arg !== oldArgs[index])\n\t);\n}\n\nfunction invokeOrReturn(arg, f) {\n\treturn typeof f == 'function' ? f(arg) : f;\n}\n","/**\n * Assign properties from `props` to `obj`\n * @template O, P The obj and props types\n * @param {O} obj The object to copy properties to\n * @param {P} props The object to copy properties from\n * @returns {O & P}\n */\nexport function assign(obj, props) {\n\tfor (let i in props) obj[i] = props[i];\n\treturn /** @type {O & P} */ (obj);\n}\n\n/**\n * Check if two objects have a different shape\n * @param {object} a\n * @param {object} b\n * @returns {boolean}\n */\nexport function shallowDiffers(a, b) {\n\tfor (let i in a) if (i !== '__source' && !(i in b)) return true;\n\tfor (let i in b) if (i !== '__source' && a[i] !== b[i]) return true;\n\treturn false;\n}\n\nexport function removeNode(node) {\n\tlet parentNode = node.parentNode;\n\tif (parentNode) parentNode.removeChild(node);\n}\n\n/**\n * Check if two values are the same value\n * @param {*} x\n * @param {*} y\n * @returns {boolean}\n */\nexport function is(x, y) {\n\treturn (x === y && (x !== 0 || 1 / x === 1 / y)) || (x !== x && y !== y);\n}\n","import { Component } from 'preact';\nimport { shallowDiffers } from './util';\n\n/**\n * Component class with a predefined `shouldComponentUpdate` implementation\n */\nexport function PureComponent(p) {\n\tthis.props = p;\n}\nPureComponent.prototype = new Component();\n// Some third-party libraries check if this property is present\nPureComponent.prototype.isPureReactComponent = true;\nPureComponent.prototype.shouldComponentUpdate = function(props, state) {\n\treturn shallowDiffers(this.props, props) || shallowDiffers(this.state, state);\n};\n","import { createElement } from 'preact';\nimport { shallowDiffers } from './util';\n\n/**\n * Memoize a component, so that it only updates when the props actually have\n * changed. This was previously known as `React.pure`.\n * @param {import('./internal').FunctionComponent} c functional component\n * @param {(prev: object, next: object) => boolean} [comparer] Custom equality function\n * @returns {import('./internal').FunctionComponent}\n */\nexport function memo(c, comparer) {\n\tfunction shouldUpdate(nextProps) {\n\t\tlet ref = this.props.ref;\n\t\tlet updateRef = ref == nextProps.ref;\n\t\tif (!updateRef && ref) {\n\t\t\tref.call ? ref(null) : (ref.current = null);\n\t\t}\n\n\t\tif (!comparer) {\n\t\t\treturn shallowDiffers(this.props, nextProps);\n\t\t}\n\n\t\treturn !comparer(this.props, nextProps) || !updateRef;\n\t}\n\n\tfunction Memoed(props) {\n\t\tthis.shouldComponentUpdate = shouldUpdate;\n\t\treturn createElement(c, props);\n\t}\n\tMemoed.displayName = 'Memo(' + (c.displayName || c.name) + ')';\n\tMemoed.prototype.isReactComponent = true;\n\tMemoed._forwarded = true;\n\treturn Memoed;\n}\n","import { options } from 'preact';\nimport { assign } from './util';\n\nlet oldDiffHook = options._diff;\noptions._diff = vnode => {\n\tif (vnode.type && vnode.type._forwarded && vnode.ref) {\n\t\tvnode.props.ref = vnode.ref;\n\t\tvnode.ref = null;\n\t}\n\tif (oldDiffHook) oldDiffHook(vnode);\n};\n\nexport const REACT_FORWARD_SYMBOL =\n\t(typeof Symbol != 'undefined' &&\n\t\tSymbol.for &&\n\t\tSymbol.for('react.forward_ref')) ||\n\t0xf47;\n\n/**\n * Pass ref down to a child. This is mainly used in libraries with HOCs that\n * wrap components. Using `forwardRef` there is an easy way to get a reference\n * of the wrapped component instead of one of the wrapper itself.\n * @param {import('./index').ForwardFn} fn\n * @returns {import('./internal').FunctionComponent}\n */\nexport function forwardRef(fn) {\n\tfunction Forwarded(props) {\n\t\tlet clone = assign({}, props);\n\t\tdelete clone.ref;\n\t\treturn fn(clone, props.ref || null);\n\t}\n\n\t// mobx-react checks for this being present\n\tForwarded.$$typeof = REACT_FORWARD_SYMBOL;\n\t// mobx-react heavily relies on implementation details.\n\t// It expects an object here with a `render` property,\n\t// and prototype.render will fail. Without this\n\t// mobx-react throws.\n\tForwarded.render = Forwarded;\n\n\tForwarded.prototype.isReactComponent = Forwarded._forwarded = true;\n\tForwarded.displayName = 'ForwardRef(' + (fn.displayName || fn.name) + ')';\n\treturn Forwarded;\n}\n","import { toChildArray } from 'preact';\n\nconst mapFn = (children, fn) => {\n\tif (children == null) return null;\n\treturn toChildArray(toChildArray(children).map(fn));\n};\n\n// This API is completely unnecessary for Preact, so it's basically passthrough.\nexport const Children = {\n\tmap: mapFn,\n\tforEach: mapFn,\n\tcount(children) {\n\t\treturn children ? toChildArray(children).length : 0;\n\t},\n\tonly(children) {\n\t\tconst normalized = toChildArray(children);\n\t\tif (normalized.length !== 1) throw 'Children.only';\n\t\treturn normalized[0];\n\t},\n\ttoArray: toChildArray\n};\n","import { Component, createElement, options, Fragment } from 'preact';\nimport { assign } from './util';\n\nconst oldCatchError = options._catchError;\noptions._catchError = function(error, newVNode, oldVNode, errorInfo) {\n\tif (error.then) {\n\t\t/** @type {import('./internal').Component} */\n\t\tlet component;\n\t\tlet vnode = newVNode;\n\n\t\tfor (; (vnode = vnode._parent); ) {\n\t\t\tif ((component = vnode._component) && component._childDidSuspend) {\n\t\t\t\tif (newVNode._dom == null) {\n\t\t\t\t\tnewVNode._dom = oldVNode._dom;\n\t\t\t\t\tnewVNode._children = oldVNode._children;\n\t\t\t\t}\n\t\t\t\t// Don't call oldCatchError if we found a Suspense\n\t\t\t\treturn component._childDidSuspend(error, newVNode);\n\t\t\t}\n\t\t}\n\t}\n\toldCatchError(error, newVNode, oldVNode, errorInfo);\n};\n\nconst oldUnmount = options.unmount;\noptions.unmount = function(vnode) {\n\t/** @type {import('./internal').Component} */\n\tconst component = vnode._component;\n\tif (component && component._onResolve) {\n\t\tcomponent._onResolve();\n\t}\n\n\t// if the component is still hydrating\n\t// most likely it is because the component is suspended\n\t// we set the vnode.type as `null` so that it is not a typeof function\n\t// so the unmount will remove the vnode._dom\n\tif (component && vnode._hydrating === true) {\n\t\tvnode.type = null;\n\t}\n\n\tif (oldUnmount) oldUnmount(vnode);\n};\n\nfunction detachedClone(vnode, detachedParent, parentDom) {\n\tif (vnode) {\n\t\tif (vnode._component && vnode._component.__hooks) {\n\t\t\tvnode._component.__hooks._list.forEach(effect => {\n\t\t\t\tif (typeof effect._cleanup == 'function') effect._cleanup();\n\t\t\t});\n\n\t\t\tvnode._component.__hooks = null;\n\t\t}\n\n\t\tvnode = assign({}, vnode);\n\t\tif (vnode._component != null) {\n\t\t\tif (vnode._component._parentDom === parentDom) {\n\t\t\t\tvnode._component._parentDom = detachedParent;\n\t\t\t}\n\t\t\tvnode._component = null;\n\t\t}\n\n\t\tvnode._children =\n\t\t\tvnode._children &&\n\t\t\tvnode._children.map(child =>\n\t\t\t\tdetachedClone(child, detachedParent, parentDom)\n\t\t\t);\n\t}\n\n\treturn vnode;\n}\n\nfunction removeOriginal(vnode, detachedParent, originalParent) {\n\tif (vnode) {\n\t\tvnode._original = null;\n\t\tvnode._children =\n\t\t\tvnode._children &&\n\t\t\tvnode._children.map(child =>\n\t\t\t\tremoveOriginal(child, detachedParent, originalParent)\n\t\t\t);\n\n\t\tif (vnode._component) {\n\t\t\tif (vnode._component._parentDom === detachedParent) {\n\t\t\t\tif (vnode._dom) {\n\t\t\t\t\toriginalParent.insertBefore(vnode._dom, vnode._nextDom);\n\t\t\t\t}\n\t\t\t\tvnode._component._force = true;\n\t\t\t\tvnode._component._parentDom = originalParent;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn vnode;\n}\n\n// having custom inheritance instead of a class here saves a lot of bytes\nexport function Suspense() {\n\t// we do not call super here to golf some bytes...\n\tthis._pendingSuspensionCount = 0;\n\tthis._suspenders = null;\n\tthis._detachOnNextRender = null;\n}\n\n// Things we do here to save some bytes but are not proper JS inheritance:\n// - call `new Component()` as the prototype\n// - do not set `Suspense.prototype.constructor` to `Suspense`\nSuspense.prototype = new Component();\n\n/**\n * @this {import('./internal').SuspenseComponent}\n * @param {Promise} promise The thrown promise\n * @param {import('./internal').VNode<any, any>} suspendingVNode The suspending component\n */\nSuspense.prototype._childDidSuspend = function(promise, suspendingVNode) {\n\tconst suspendingComponent = suspendingVNode._component;\n\n\t/** @type {import('./internal').SuspenseComponent} */\n\tconst c = this;\n\n\tif (c._suspenders == null) {\n\t\tc._suspenders = [];\n\t}\n\tc._suspenders.push(suspendingComponent);\n\n\tconst resolve = suspended(c._vnode);\n\n\tlet resolved = false;\n\tconst onResolved = () => {\n\t\tif (resolved) return;\n\n\t\tresolved = true;\n\t\tsuspendingComponent._onResolve = null;\n\n\t\tif (resolve) {\n\t\t\tresolve(onSuspensionComplete);\n\t\t} else {\n\t\t\tonSuspensionComplete();\n\t\t}\n\t};\n\n\tsuspendingComponent._onResolve = onResolved;\n\n\tconst onSuspensionComplete = () => {\n\t\tif (!--c._pendingSuspensionCount) {\n\t\t\t// If the suspension was during hydration we don't need to restore the\n\t\t\t// suspended children into the _children array\n\t\t\tif (c.state._suspended) {\n\t\t\t\tconst suspendedVNode = c.state._suspended;\n\t\t\t\tc._vnode._children[0] = removeOriginal(\n\t\t\t\t\tsuspendedVNode,\n\t\t\t\t\tsuspendedVNode._component._parentDom,\n\t\t\t\t\tsuspendedVNode._component._originalParentDom\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tc.setState({ _suspended: (c._detachOnNextRender = null) });\n\n\t\t\tlet suspended;\n\t\t\twhile ((suspended = c._suspenders.pop())) {\n\t\t\t\tsuspended.forceUpdate();\n\t\t\t}\n\t\t}\n\t};\n\n\t/**\n\t * We do not set `suspended: true` during hydration because we want the actual markup\n\t * to remain on screen and hydrate it when the suspense actually gets resolved.\n\t * While in non-hydration cases the usual fallback -> component flow would occour.\n\t */\n\tconst wasHydrating = suspendingVNode._hydrating === true;\n\tif (!c._pendingSuspensionCount++ && !wasHydrating) {\n\t\tc.setState({ _suspended: (c._detachOnNextRender = c._vnode._children[0]) });\n\t}\n\tpromise.then(onResolved, onResolved);\n};\n\nSuspense.prototype.componentWillUnmount = function() {\n\tthis._suspenders = [];\n};\n\n/**\n * @this {import('./internal').SuspenseComponent}\n * @param {import('./internal').SuspenseComponent[\"props\"]} props\n * @param {import('./internal').SuspenseState} state\n */\nSuspense.prototype.render = function(props, state) {\n\tif (this._detachOnNextRender) {\n\t\t// When the Suspense's _vnode was created by a call to createVNode\n\t\t// (i.e. due to a setState further up in the tree)\n\t\t// it's _children prop is null, in this case we \"forget\" about the parked vnodes to detach\n\t\tif (this._vnode._children) {\n\t\t\tconst detachedParent = document.createElement('div');\n\t\t\tconst detachedComponent = this._vnode._children[0]._component;\n\t\t\tthis._vnode._children[0] = detachedClone(\n\t\t\t\tthis._detachOnNextRender,\n\t\t\t\tdetachedParent,\n\t\t\t\t(detachedComponent._originalParentDom = detachedComponent._parentDom)\n\t\t\t);\n\t\t}\n\n\t\tthis._detachOnNextRender = null;\n\t}\n\n\t// Wrap fallback tree in a VNode that prevents itself from being marked as aborting mid-hydration:\n\t/** @type {import('./internal').VNode} */\n\tconst fallback =\n\t\tstate._suspended && createElement(Fragment, null, props.fallback);\n\tif (fallback) fallback._hydrating = null;\n\n\treturn [\n\t\tcreateElement(Fragment, null, state._suspended ? null : props.children),\n\t\tfallback\n\t];\n};\n\n/**\n * Checks and calls the parent component's _suspended method, passing in the\n * suspended vnode. This is a way for a parent (e.g. SuspenseList) to get notified\n * that one of its children/descendants suspended.\n *\n * The parent MAY return a callback. The callback will get called when the\n * suspension resolves, notifying the parent of the fact.\n * Moreover, the callback gets function `unsuspend` as a parameter. The resolved\n * child descendant will not actually get unsuspended until `unsuspend` gets called.\n * This is a way for the parent to delay unsuspending.\n *\n * If the parent does not return a callback then the resolved vnode\n * gets unsuspended immediately when it resolves.\n *\n * @param {import('./internal').VNode} vnode\n * @returns {((unsuspend: () => void) => void)?}\n */\nexport function suspended(vnode) {\n\t/** @type {import('./internal').Component} */\n\tlet component = vnode._parent._component;\n\treturn component && component._suspended && component._suspended(vnode);\n}\n\nexport function lazy(loader) {\n\tlet prom;\n\tlet component;\n\tlet error;\n\n\tfunction Lazy(props) {\n\t\tif (!prom) {\n\t\t\tprom = loader();\n\t\t\tprom.then(\n\t\t\t\texports => {\n\t\t\t\t\tcomponent = exports.default || exports;\n\t\t\t\t},\n\t\t\t\te => {\n\t\t\t\t\terror = e;\n\t\t\t\t}\n\t\t\t);\n\t\t}\n\n\t\tif (error) {\n\t\t\tthrow error;\n\t\t}\n\n\t\tif (!component) {\n\t\t\tthrow prom;\n\t\t}\n\n\t\treturn createElement(component, props);\n\t}\n\n\tLazy.displayName = 'Lazy';\n\tLazy._forwarded = true;\n\treturn Lazy;\n}\n","import { Component, toChildArray } from 'preact';\nimport { suspended } from './suspense.js';\n\n// Indexes to linked list nodes (nodes are stored as arrays to save bytes).\nconst SUSPENDED_COUNT = 0;\nconst RESOLVED_COUNT = 1;\nconst NEXT_NODE = 2;\n\n// Having custom inheritance instead of a class here saves a lot of bytes.\nexport function SuspenseList() {\n\tthis._next = null;\n\tthis._map = null;\n}\n\n// Mark one of child's earlier suspensions as resolved.\n// Some pending callbacks may become callable due to this\n// (e.g. the last suspended descendant gets resolved when\n// revealOrder === 'together'). Process those callbacks as well.\nconst resolve = (list, child, node) => {\n\tif (++node[RESOLVED_COUNT] === node[SUSPENDED_COUNT]) {\n\t\t// The number a child (or any of its descendants) has been suspended\n\t\t// matches the number of times it's been resolved. Therefore we\n\t\t// mark the child as completely resolved by deleting it from ._map.\n\t\t// This is used to figure out when *all* children have been completely\n\t\t// resolved when revealOrder is 'together'.\n\t\tlist._map.delete(child);\n\t}\n\n\t// If revealOrder is falsy then we can do an early exit, as the\n\t// callbacks won't get queued in the node anyway.\n\t// If revealOrder is 'together' then also do an early exit\n\t// if all suspended descendants have not yet been resolved.\n\tif (\n\t\t!list.props.revealOrder ||\n\t\t(list.props.revealOrder[0] === 't' && list._map.size)\n\t) {\n\t\treturn;\n\t}\n\n\t// Walk the currently suspended children in order, calling their\n\t// stored callbacks on the way. Stop if we encounter a child that\n\t// has not been completely resolved yet.\n\tnode = list._next;\n\twhile (node) {\n\t\twhile (node.length > 3) {\n\t\t\tnode.pop()();\n\t\t}\n\t\tif (node[RESOLVED_COUNT] < node[SUSPENDED_COUNT]) {\n\t\t\tbreak;\n\t\t}\n\t\tlist._next = node = node[NEXT_NODE];\n\t}\n};\n\n// Things we do here to save some bytes but are not proper JS inheritance:\n// - call `new Component()` as the prototype\n// - do not set `Suspense.prototype.constructor` to `Suspense`\nSuspenseList.prototype = new Component();\n\nSuspenseList.prototype._suspended = function(child) {\n\tconst list = this;\n\tconst delegated = suspended(list._vnode);\n\n\tlet node = list._map.get(child);\n\tnode[SUSPENDED_COUNT]++;\n\n\treturn unsuspend => {\n\t\tconst wrappedUnsuspend = () => {\n\t\t\tif (!list.props.revealOrder) {\n\t\t\t\t// Special case the undefined (falsy) revealOrder, as there\n\t\t\t\t// is no need to coordinate a specific order or unsuspends.\n\t\t\t\tunsuspend();\n\t\t\t} else {\n\t\t\t\tnode.push(unsuspend);\n\t\t\t\tresolve(list, child, node);\n\t\t\t}\n\t\t};\n\t\tif (delegated) {\n\t\t\tdelegated(wrappedUnsuspend);\n\t\t} else {\n\t\t\twrappedUnsuspend();\n\t\t}\n\t};\n};\n\nSuspenseList.prototype.render = function(props) {\n\tthis._next = null;\n\tthis._map = new Map();\n\n\tconst children = toChildArray(props.children);\n\tif (props.revealOrder && props.revealOrder[0] === 'b') {\n\t\t// If order === 'backwards' (or, well, anything starting with a 'b')\n\t\t// then flip the child list around so that the last child will be\n\t\t// the first in the linked list.\n\t\tchildren.reverse();\n\t}\n\t// Build the linked list. Iterate through the children in reverse order\n\t// so that `_next` points to the first linked list node to be resolved.\n\tfor (let i = children.length; i--; ) {\n\t\t// Create a new linked list node as an array of form:\n\t\t// \t[suspended_count, resolved_count, next_node]\n\t\t// where suspended_count and resolved_count are numeric counters for\n\t\t// keeping track how many times a node has been suspended and resolved.\n\t\t//\n\t\t// Note that suspended_count starts from 1 instead of 0, so we can block\n\t\t// processing callbacks until componentDidMount has been called. In a sense\n\t\t// node is suspended at least until componentDidMount gets called!\n\t\t//\n\t\t// Pending callbacks are added to the end of the node:\n\t\t// \t[suspended_count, resolved_count, next_node, callback_0, callback_1, ...]\n\t\tthis._map.set(children[i], (this._next = [1, 0, this._next]));\n\t}\n\treturn props.children;\n};\n\nSuspenseList.prototype.componentDidUpdate = SuspenseList.prototype.componentDidMount = function() {\n\t// Iterate through all children after mounting for two reasons:\n\t// 1. As each node[SUSPENDED_COUNT] starts from 1, this iteration increases\n\t// each node[RELEASED_COUNT] by 1, therefore balancing the counters.\n\t// The nodes can now be completely consumed from the linked list.\n\t// 2. Handle nodes that might have gotten resolved between render and\n\t// componentDidMount.\n\tthis._map.forEach((node, child) => {\n\t\tresolve(this, child, node);\n\t});\n};\n","import { createElement, render } from 'preact';\n\n/**\n * @param {import('../../src/index').RenderableProps<{ context: any }>} props\n */\nfunction ContextProvider(props) {\n\tthis.getChildContext = () => props.context;\n\treturn props.children;\n}\n\n/**\n * Portal component\n * @this {import('./internal').Component}\n * @param {object | null | undefined} props\n *\n * TODO: use createRoot() instead of fake root\n */\nfunction Portal(props) {\n\tconst _this = this;\n\tlet container = props._container;\n\n\t_this.componentWillUnmount = function() {\n\t\trender(null, _this._temp);\n\t\t_this._temp = null;\n\t\t_this._container = null;\n\t};\n\n\t// When we change container we should clear our old container and\n\t// indicate a new mount.\n\tif (_this._container && _this._container !== container) {\n\t\t_this.componentWillUnmount();\n\t}\n\n\t// When props.vnode is undefined/false/null we are dealing with some kind of\n\t// conditional vnode. This should not trigger a render.\n\tif (props._vnode) {\n\t\tif (!_this._temp) {\n\t\t\t_this._container = container;\n\n\t\t\t// Create a fake DOM parent node that manages a subset of `container`'s children:\n\t\t\t_this._temp = {\n\t\t\t\tnodeType: 1,\n\t\t\t\tparentNode: container,\n\t\t\t\tchildNodes: [],\n\t\t\t\tappendChild(child) {\n\t\t\t\t\tthis.childNodes.push(child);\n\t\t\t\t\t_this._container.appendChild(child);\n\t\t\t\t},\n\t\t\t\tinsertBefore(child, before) {\n\t\t\t\t\tthis.childNodes.push(child);\n\t\t\t\t\t_this._container.appendChild(child);\n\t\t\t\t},\n\t\t\t\tremoveChild(child) {\n\t\t\t\t\tthis.childNodes.splice(this.childNodes.indexOf(child) >>> 1, 1);\n\t\t\t\t\t_this._container.removeChild(child);\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\t// Render our wrapping element into temp.\n\t\trender(\n\t\t\tcreateElement(ContextProvider, { context: _this.context }, props._vnode),\n\t\t\t_this._temp\n\t\t);\n\t}\n\t// When we come from a conditional render, on a mounted\n\t// portal we should clear the DOM.\n\telse if (_this._temp) {\n\t\t_this.componentWillUnmount();\n\t}\n}\n\n/**\n * Create a `Portal` to continue rendering the vnode tree at a different DOM node\n * @param {import('./internal').VNode} vnode The vnode to render\n * @param {import('./internal').PreactElement} container The DOM node to continue rendering in to.\n */\nexport function createPortal(vnode, container) {\n\tconst el = createElement(Portal, { _vnode: vnode, _container: container });\n\tel.containerInfo = container;\n\treturn el;\n}\n","import {\n\trender as preactRender,\n\thydrate as preactHydrate,\n\toptions,\n\ttoChildArray,\n\tComponent\n} from 'preact';\n\nexport const REACT_ELEMENT_TYPE =\n\t(typeof Symbol != 'undefined' && Symbol.for && Symbol.for('react.element')) ||\n\t0xeac7;\n\nconst CAMEL_PROPS = /^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/;\n\nconst IS_DOM = typeof document !== 'undefined';\n\n// Input types for which onchange should not be converted to oninput.\n// type=\"file|checkbox|radio\", plus \"range\" in IE11.\n// (IE11 doesn't support Symbol, which we use here to turn `rad` into `ra` which matches \"range\")\nconst onChangeInputType = type =>\n\t(typeof Symbol != 'undefined' && typeof Symbol() == 'symbol'\n\t\t? /fil|che|rad/i\n\t\t: /fil|che|ra/i\n\t).test(type);\n\n// Some libraries like `react-virtualized` explicitly check for this.\nComponent.prototype.isReactComponent = {};\n\n// `UNSAFE_*` lifecycle hooks\n// Preact only ever invokes the unprefixed methods.\n// Here we provide a base \"fallback\" implementation that calls any defined UNSAFE_ prefixed method.\n// - If a component defines its own `componentDidMount()` (including via defineProperty), use that.\n// - If a component defines `UNSAFE_componentDidMount()`, `componentDidMount` is the alias getter/setter.\n// - If anything assigns to an `UNSAFE_*` property, the assignment is forwarded to the unprefixed property.\n// See https://github.com/preactjs/preact/issues/1941\n[\n\t'componentWillMount',\n\t'componentWillReceiveProps',\n\t'componentWillUpdate'\n].forEach(key => {\n\tObject.defineProperty(Component.prototype, key, {\n\t\tconfigurable: true,\n\t\tget() {\n\t\t\treturn this['UNSAFE_' + key];\n\t\t},\n\t\tset(v) {\n\t\t\tObject.defineProperty(this, key, {\n\t\t\t\tconfigurable: true,\n\t\t\t\twritable: true,\n\t\t\t\tvalue: v\n\t\t\t});\n\t\t}\n\t});\n});\n\n/**\n * Proxy render() since React returns a Component reference.\n * @param {import('./internal').VNode} vnode VNode tree to render\n * @param {import('./internal').PreactElement} parent DOM node to render vnode tree into\n * @param {() => void} [callback] Optional callback that will be called after rendering\n * @returns {import('./internal').Component | null} The root component reference or null\n */\nexport function render(vnode, parent, callback) {\n\t// React destroys any existing DOM nodes, see #1727\n\t// ...but only on the first render, see #1828\n\tif (parent._children == null) {\n\t\tparent.textContent = '';\n\t}\n\n\tpreactRender(vnode, parent);\n\tif (typeof callback == 'function') callback();\n\n\treturn vnode ? vnode._component : null;\n}\n\nexport function hydrate(vnode, parent, callback) {\n\tpreactHydrate(vnode, parent);\n\tif (typeof callback == 'function') callback();\n\n\treturn vnode ? vnode._component : null;\n}\n\nlet oldEventHook = options.event;\noptions.event = e => {\n\tif (oldEventHook) e = oldEventHook(e);\n\te.persist = empty;\n\te.isPropagationStopped = isPropagationStopped;\n\te.isDefaultPrevented = isDefaultPrevented;\n\treturn (e.nativeEvent = e);\n};\n\nfunction empty() {}\n\nfunction isPropagationStopped() {\n\treturn this.cancelBubble;\n}\n\nfunction isDefaultPrevented() {\n\treturn this.defaultPrevented;\n}\n\nlet classNameDescriptor = {\n\tconfigurable: true,\n\tget() {\n\t\treturn this.class;\n\t}\n};\n\nlet oldVNodeHook = options.vnode;\noptions.vnode = vnode => {\n\tlet type = vnode.type;\n\tlet props = vnode.props;\n\tlet normalizedProps = props;\n\n\t// only normalize props on Element nodes\n\tif (typeof type === 'string') {\n\t\tconst nonCustomElement = type.indexOf('-') === -1;\n\t\tnormalizedProps = {};\n\n\t\tfor (let i in props) {\n\t\t\tlet value = props[i];\n\n\t\t\tif (IS_DOM && i === 'children' && type === 'noscript') {\n\t\t\t\t// Emulate React's behavior of not rendering the contents of noscript tags on the client.\n\t\t\t\tcontinue;\n\t\t\t} else if (i === 'value' && 'defaultValue' in props && value == null) {\n\t\t\t\t// Skip applying value if it is null/undefined and we already set\n\t\t\t\t// a default value\n\t\t\t\tcontinue;\n\t\t\t} else if (\n\t\t\t\ti === 'defaultValue' &&\n\t\t\t\t'value' in props &&\n\t\t\t\tprops.value == null\n\t\t\t) {\n\t\t\t\t// `defaultValue` is treated as a fallback `value` when a value prop is present but null/undefined.\n\t\t\t\t// `defaultValue` for Elements with no value prop is the same as the DOM defaultValue property.\n\t\t\t\ti = 'value';\n\t\t\t} else if (i === 'download' && value === true) {\n\t\t\t\t// Calling `setAttribute` with a truthy value will lead to it being\n\t\t\t\t// passed as a stringified value, e.g. `download=\"true\"`. React\n\t\t\t\t// converts it to an empty string instead, otherwise the attribute\n\t\t\t\t// value will be used as the file name and the file will be called\n\t\t\t\t// \"true\" upon downloading it.\n\t\t\t\tvalue = '';\n\t\t\t} else if (/ondoubleclick/i.test(i)) {\n\t\t\t\ti = 'ondblclick';\n\t\t\t} else if (\n\t\t\t\t/^onchange(textarea|input)/i.test(i + type) &&\n\t\t\t\t!onChangeInputType(props.type)\n\t\t\t) {\n\t\t\t\ti = 'oninput';\n\t\t\t} else if (/^onfocus$/i.test(i)) {\n\t\t\t\ti = 'onfocusin';\n\t\t\t} else if (/^onblur$/i.test(i)) {\n\t\t\t\ti = 'onfocusout';\n\t\t\t} else if (/^on(Ani|Tra|Tou|BeforeInp|Compo)/.test(i)) {\n\t\t\t\ti = i.toLowerCase();\n\t\t\t} else if (nonCustomElement && CAMEL_PROPS.test(i)) {\n\t\t\t\ti = i.replace(/[A-Z0-9]/g, '-$&').toLowerCase();\n\t\t\t} else if (value === null) {\n\t\t\t\tvalue = undefined;\n\t\t\t}\n\n\t\t\t// Add support for onInput and onChange, see #3561\n\t\t\t// if we have an oninput prop already change it to oninputCapture\n\t\t\tif (/^oninput$/i.test(i)) {\n\t\t\t\ti = i.toLowerCase();\n\t\t\t\tif (normalizedProps[i]) {\n\t\t\t\t\ti = 'oninputCapture';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tnormalizedProps[i] = value;\n\t\t}\n\n\t\t// Add support for array select values: <select multiple value={[]} />\n\t\tif (\n\t\t\ttype == 'select' &&\n\t\t\tnormalizedProps.multiple &&\n\t\t\tArray.isArray(normalizedProps.value)\n\t\t) {\n\t\t\t// forEach() always returns undefined, which we abuse here to unset the value prop.\n\t\t\tnormalizedProps.value = toChildArray(props.children).forEach(child => {\n\t\t\t\tchild.props.selected =\n\t\t\t\t\tnormalizedProps.value.indexOf(child.props.value) != -1;\n\t\t\t});\n\t\t}\n\n\t\t// Adding support for defaultValue in select tag\n\t\tif (type == 'select' && normalizedProps.defaultValue != null) {\n\t\t\tnormalizedProps.value = toChildArray(props.children).forEach(child => {\n\t\t\t\tif (normalizedProps.multiple) {\n\t\t\t\t\tchild.props.selected =\n\t\t\t\t\t\tnormalizedProps.defaultValue.indexOf(child.props.value) != -1;\n\t\t\t\t} else {\n\t\t\t\t\tchild.props.selected =\n\t\t\t\t\t\tnormalizedProps.defaultValue == child.props.value;\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tvnode.props = normalizedProps;\n\n\t\tif (props.class != props.className) {\n\t\t\tclassNameDescriptor.enumerable = 'className' in props;\n\t\t\tif (props.className != null) normalizedProps.class = props.className;\n\t\t\tObject.defineProperty(normalizedProps, 'className', classNameDescriptor);\n\t\t}\n\t}\n\n\tvnode.$$typeof = REACT_ELEMENT_TYPE;\n\n\tif (oldVNodeHook) oldVNodeHook(vnode);\n};\n\n// Only needed for react-relay\nlet currentComponent;\nconst oldBeforeRender = options._render;\noptions._render = function(vnode) {\n\tif (oldBeforeRender) {\n\t\toldBeforeRender(vnode);\n\t}\n\tcurrentComponent = vnode._component;\n};\n\n// This is a very very private internal function for React it\n// is used to sort-of do runtime dependency injection. So far\n// only `react-relay` makes use of it. It uses it to read the\n// context value.\nexport const __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = {\n\tReactCurrentDispatcher: {\n\t\tcurrent: {\n\t\t\treadContext(context) {\n\t\t\t\treturn currentComponent._globalContext[context._id].props.value;\n\t\t\t}\n\t\t}\n\t}\n};\n","import * as preact from 'preact';\nimport { Component, createElement, isValidElement, Fragment, createRef } from 'preact';\nimport { createPortal } from 'preact/compat';\n\nfunction removeElement(el) {\n if (el.parentNode) {\n el.parentNode.removeChild(el);\n }\n}\n// Querying\n// ----------------------------------------------------------------------------------------------------------------\nfunction elementClosest(el, selector) {\n if (el.closest) {\n return el.closest(selector);\n // really bad fallback for IE\n // from https://developer.mozilla.org/en-US/docs/Web/API/Element/closest\n }\n if (!document.documentElement.contains(el)) {\n return null;\n }\n do {\n if (elementMatches(el, selector)) {\n return el;\n }\n el = (el.parentElement || el.parentNode);\n } while (el !== null && el.nodeType === 1);\n return null;\n}\nfunction elementMatches(el, selector) {\n let method = el.matches || el.matchesSelector || el.msMatchesSelector;\n return method.call(el, selector);\n}\n// accepts multiple subject els\n// returns a real array. good for methods like forEach\n// TODO: accept the document\nfunction findElements(container, selector) {\n let containers = container instanceof HTMLElement ? [container] : container;\n let allMatches = [];\n for (let i = 0; i < containers.length; i += 1) {\n let matches = containers[i].querySelectorAll(selector);\n for (let j = 0; j < matches.length; j += 1) {\n allMatches.push(matches[j]);\n }\n }\n return allMatches;\n}\n// accepts multiple subject els\n// only queries direct child elements // TODO: rename to findDirectChildren!\nfunction findDirectChildren(parent, selector) {\n let parents = parent instanceof HTMLElement ? [parent] : parent;\n let allMatches = [];\n for (let i = 0; i < parents.length; i += 1) {\n let childNodes = parents[i].children; // only ever elements\n for (let j = 0; j < childNodes.length; j += 1) {\n let childNode = childNodes[j];\n if (!selector || elementMatches(childNode, selector)) {\n allMatches.push(childNode);\n }\n }\n }\n return allMatches;\n}\n// Style\n// ----------------------------------------------------------------------------------------------------------------\nconst PIXEL_PROP_RE = /(top|left|right|bottom|width|height)$/i;\nfunction applyStyle(el, props) {\n for (let propName in props) {\n applyStyleProp(el, propName, props[propName]);\n }\n}\nfunction applyStyleProp(el, name, val) {\n if (val == null) {\n el.style[name] = '';\n }\n else if (typeof val === 'number' && PIXEL_PROP_RE.test(name)) {\n el.style[name] = `${val}px`;\n }\n else {\n el.style[name] = val;\n }\n}\n// Event Handling\n// ----------------------------------------------------------------------------------------------------------------\n// if intercepting bubbled events at the document/window/body level,\n// and want to see originating element (the 'target'), use this util instead\n// of `ev.target` because it goes within web-component boundaries.\nfunction getEventTargetViaRoot(ev) {\n var _a, _b;\n return (_b = (_a = ev.composedPath) === null || _a === void 0 ? void 0 : _a.call(ev)[0]) !== null && _b !== void 0 ? _b : ev.target;\n}\n// Shadow DOM consuderations\n// ----------------------------------------------------------------------------------------------------------------\nfunction getElRoot(el) {\n return el.getRootNode ? el.getRootNode() : document;\n}\n// Unique ID for DOM attribute\nlet guid$1 = 0;\nfunction getUniqueDomId() {\n guid$1 += 1;\n return 'fc-dom-' + guid$1;\n}\n\n// Stops a mouse/touch event from doing it's native browser action\nfunction preventDefault(ev) {\n ev.preventDefault();\n}\n// Event Delegation\n// ----------------------------------------------------------------------------------------------------------------\nfunction buildDelegationHandler(selector, handler) {\n return (ev) => {\n let matchedChild = elementClosest(ev.target, selector);\n if (matchedChild) {\n handler.call(matchedChild, ev, matchedChild);\n }\n };\n}\nfunction listenBySelector(container, eventType, selector, handler) {\n let attachedHandler = buildDelegationHandler(selector, handler);\n container.addEventListener(eventType, attachedHandler);\n return () => {\n container.removeEventListener(eventType, attachedHandler);\n };\n}\nfunction listenToHoverBySelector(container, selector, onMouseEnter, onMouseLeave) {\n let currentMatchedChild;\n return listenBySelector(container, 'mouseover', selector, (mouseOverEv, matchedChild) => {\n if (matchedChild !== currentMatchedChild) {\n currentMatchedChild = matchedChild;\n onMouseEnter(mouseOverEv, matchedChild);\n let realOnMouseLeave = (mouseLeaveEv) => {\n currentMatchedChild = null;\n onMouseLeave(mouseLeaveEv, matchedChild);\n matchedChild.removeEventListener('mouseleave', realOnMouseLeave);\n };\n // listen to the next mouseleave, and then unattach\n matchedChild.addEventListener('mouseleave', realOnMouseLeave);\n }\n });\n}\n// Animation\n// ----------------------------------------------------------------------------------------------------------------\nconst transitionEventNames = [\n 'webkitTransitionEnd',\n 'otransitionend',\n 'oTransitionEnd',\n 'msTransitionEnd',\n 'transitionend',\n];\n// triggered only when the next single subsequent transition finishes\nfunction whenTransitionDone(el, callback) {\n let realCallback = (ev) => {\n callback(ev);\n transitionEventNames.forEach((eventName) => {\n el.removeEventListener(eventName, realCallback);\n });\n };\n transitionEventNames.forEach((eventName) => {\n el.addEventListener(eventName, realCallback); // cross-browser way to determine when the transition finishes\n });\n}\n// ARIA workarounds\n// ----------------------------------------------------------------------------------------------------------------\nfunction createAriaClickAttrs(handler) {\n return Object.assign({ onClick: handler }, createAriaKeyboardAttrs(handler));\n}\nfunction createAriaKeyboardAttrs(handler) {\n return {\n tabIndex: 0,\n onKeyDown(ev) {\n if (ev.key === 'Enter' || ev.key === ' ') {\n handler(ev);\n ev.preventDefault(); // if space, don't scroll down page\n }\n },\n };\n}\n\nlet guidNumber = 0;\nfunction guid() {\n guidNumber += 1;\n return String(guidNumber);\n}\n/* FullCalendar-specific DOM Utilities\n----------------------------------------------------------------------------------------------------------------------*/\n// Make the mouse cursor express that an event is not allowed in the current area\nfunction disableCursor() {\n document.body.classList.add('fc-not-allowed');\n}\n// Returns the mouse cursor to its original look\nfunction enableCursor() {\n document.body.classList.remove('fc-not-allowed');\n}\n/* Selection\n----------------------------------------------------------------------------------------------------------------------*/\nfunction preventSelection(el) {\n el.classList.add('fc-unselectable');\n el.addEventListener('selectstart', preventDefault);\n}\nfunction allowSelection(el) {\n el.classList.remove('fc-unselectable');\n el.removeEventListener('selectstart', preventDefault);\n}\n/* Context Menu\n----------------------------------------------------------------------------------------------------------------------*/\nfunction preventContextMenu(el) {\n el.addEventListener('contextmenu', preventDefault);\n}\nfunction allowContextMenu(el) {\n el.removeEventListener('contextmenu', preventDefault);\n}\nfunction parseFieldSpecs(input) {\n let specs = [];\n let tokens = [];\n let i;\n let token;\n if (typeof input === 'string') {\n tokens = input.split(/\\s*,\\s*/);\n }\n else if (typeof input === 'function') {\n tokens = [input];\n }\n else if (Array.isArray(input)) {\n tokens = input;\n }\n for (i = 0; i < tokens.length; i += 1) {\n token = tokens[i];\n if (typeof token === 'string') {\n specs.push(token.charAt(0) === '-' ?\n { field: token.substring(1), order: -1 } :\n { field: token, order: 1 });\n }\n else if (typeof token === 'function') {\n specs.push({ func: token });\n }\n }\n return specs;\n}\nfunction compareByFieldSpecs(obj0, obj1, fieldSpecs) {\n let i;\n let cmp;\n for (i = 0; i < fieldSpecs.length; i += 1) {\n cmp = compareByFieldSpec(obj0, obj1, fieldSpecs[i]);\n if (cmp) {\n return cmp;\n }\n }\n return 0;\n}\nfunction compareByFieldSpec(obj0, obj1, fieldSpec) {\n if (fieldSpec.func) {\n return fieldSpec.func(obj0, obj1);\n }\n return flexibleCompare(obj0[fieldSpec.field], obj1[fieldSpec.field])\n * (fieldSpec.order || 1);\n}\nfunction flexibleCompare(a, b) {\n if (!a && !b) {\n return 0;\n }\n if (b == null) {\n return -1;\n }\n if (a == null) {\n return 1;\n }\n if (typeof a === 'string' || typeof b === 'string') {\n return String(a).localeCompare(String(b));\n }\n return a - b;\n}\n/* String Utilities\n----------------------------------------------------------------------------------------------------------------------*/\nfunction padStart(val, len) {\n let s = String(val);\n return '000'.substr(0, len - s.length) + s;\n}\nfunction formatWithOrdinals(formatter, args, fallbackText) {\n if (typeof formatter === 'function') {\n return formatter(...args);\n }\n if (typeof formatter === 'string') { // non-blank string\n return args.reduce((str, arg, index) => (str.replace('$' + index, arg || '')), formatter);\n }\n return fallbackText;\n}\n/* Number Utilities\n----------------------------------------------------------------------------------------------------------------------*/\nfunction compareNumbers(a, b) {\n return a - b;\n}\nfunction isInt(n) {\n return n % 1 === 0;\n}\n/* FC-specific DOM dimension stuff\n----------------------------------------------------------------------------------------------------------------------*/\nfunction computeSmallestCellWidth(cellEl) {\n let allWidthEl = cellEl.querySelector('.fc-scrollgrid-shrink-frame');\n let contentWidthEl = cellEl.querySelector('.fc-scrollgrid-shrink-cushion');\n if (!allWidthEl) {\n throw new Error('needs fc-scrollgrid-shrink-frame className'); // TODO: use const\n }\n if (!contentWidthEl) {\n throw new Error('needs fc-scrollgrid-shrink-cushion className');\n }\n return cellEl.getBoundingClientRect().width - allWidthEl.getBoundingClientRect().width + // the cell padding+border\n contentWidthEl.getBoundingClientRect().width;\n}\n\nconst INTERNAL_UNITS = ['years', 'months', 'days', 'milliseconds'];\nconst PARSE_RE = /^(-?)(?:(\\d+)\\.)?(\\d+):(\\d\\d)(?::(\\d\\d)(?:\\.(\\d\\d\\d))?)?/;\n// Parsing and Creation\nfunction createDuration(input, unit) {\n if (typeof input === 'string') {\n return parseString(input);\n }\n if (typeof input === 'object' && input) { // non-null object\n return parseObject(input);\n }\n if (typeof input === 'number') {\n return parseObject({ [unit || 'milliseconds']: input });\n }\n return null;\n}\nfunction parseString(s) {\n let m = PARSE_RE.exec(s);\n if (m) {\n let sign = m[1] ? -1 : 1;\n return {\n years: 0,\n months: 0,\n days: sign * (m[2] ? parseInt(m[2], 10) : 0),\n milliseconds: sign * ((m[3] ? parseInt(m[3], 10) : 0) * 60 * 60 * 1000 + // hours\n (m[4] ? parseInt(m[4], 10) : 0) * 60 * 1000 + // minutes\n (m[5] ? parseInt(m[5], 10) : 0) * 1000 + // seconds\n (m[6] ? parseInt(m[6], 10) : 0) // ms\n ),\n };\n }\n return null;\n}\nfunction parseObject(obj) {\n let duration = {\n years: obj.years || obj.year || 0,\n months: obj.months || obj.month || 0,\n days: obj.days || obj.day || 0,\n milliseconds: (obj.hours || obj.hour || 0) * 60 * 60 * 1000 + // hours\n (obj.minutes || obj.minute || 0) * 60 * 1000 + // minutes\n (obj.seconds || obj.second || 0) * 1000 + // seconds\n (obj.milliseconds || obj.millisecond || obj.ms || 0), // ms\n };\n let weeks = obj.weeks || obj.week;\n if (weeks) {\n duration.days += weeks * 7;\n duration.specifiedWeeks = true;\n }\n return duration;\n}\n// Equality\nfunction durationsEqual(d0, d1) {\n return d0.years === d1.years &&\n d0.months === d1.months &&\n d0.days === d1.days &&\n d0.milliseconds === d1.milliseconds;\n}\nfunction asCleanDays(dur) {\n if (!dur.years && !dur.months && !dur.milliseconds) {\n return dur.days;\n }\n return 0;\n}\n// Simple Math\nfunction addDurations(d0, d1) {\n return {\n years: d0.years + d1.years,\n months: d0.months + d1.months,\n days: d0.days + d1.days,\n milliseconds: d0.milliseconds + d1.milliseconds,\n };\n}\nfunction subtractDurations(d1, d0) {\n return {\n years: d1.years - d0.years,\n months: d1.months - d0.months,\n days: d1.days - d0.days,\n milliseconds: d1.milliseconds - d0.milliseconds,\n };\n}\nfunction multiplyDuration(d, n) {\n return {\n years: d.years * n,\n months: d.months * n,\n days: d.days * n,\n milliseconds: d.milliseconds * n,\n };\n}\n// Conversions\n// \"Rough\" because they are based on average-case Gregorian months/years\nfunction asRoughYears(dur) {\n return asRoughDays(dur) / 365;\n}\nfunction asRoughMonths(dur) {\n return asRoughDays(dur) / 30;\n}\nfunction asRoughDays(dur) {\n return asRoughMs(dur) / 864e5;\n}\nfunction asRoughMinutes(dur) {\n return asRoughMs(dur) / (1000 * 60);\n}\nfunction asRoughSeconds(dur) {\n return asRoughMs(dur) / 1000;\n}\nfunction asRoughMs(dur) {\n return dur.years * (365 * 864e5) +\n dur.months * (30 * 864e5) +\n dur.days * 864e5 +\n dur.milliseconds;\n}\n// Advanced Math\nfunction wholeDivideDurations(numerator, denominator) {\n let res = null;\n for (let i = 0; i < INTERNAL_UNITS.length; i += 1) {\n let unit = INTERNAL_UNITS[i];\n if (denominator[unit]) {\n let localRes = numerator[unit] / denominator[unit];\n if (!isInt(localRes) || (res !== null && res !== localRes)) {\n return null;\n }\n res = localRes;\n }\n else if (numerator[unit]) {\n // needs to divide by something but can't!\n return null;\n }\n }\n return res;\n}\nfunction greatestDurationDenominator(dur) {\n let ms = dur.milliseconds;\n if (ms) {\n if (ms % 1000 !== 0) {\n return { unit: 'millisecond', value: ms };\n }\n if (ms % (1000 * 60) !== 0) {\n return { unit: 'second', value: ms / 1000 };\n }\n if (ms % (1000 * 60 * 60) !== 0) {\n return { unit: 'minute', value: ms / (1000 * 60) };\n }\n if (ms) {\n return { unit: 'hour', value: ms / (1000 * 60 * 60) };\n }\n }\n if (dur.days) {\n if (dur.specifiedWeeks && dur.days % 7 === 0) {\n return { unit: 'week', value: dur.days / 7 };\n }\n return { unit: 'day', value: dur.days };\n }\n if (dur.months) {\n return { unit: 'month', value: dur.months };\n }\n if (dur.years) {\n return { unit: 'year', value: dur.years };\n }\n return { unit: 'millisecond', value: 0 };\n}\n\nconst { hasOwnProperty } = Object.prototype;\n// Merges an array of objects into a single object.\n// The second argument allows for an array of property names who's object values will be merged together.\nfunction mergeProps(propObjs, complexPropsMap) {\n let dest = {};\n if (complexPropsMap) {\n for (let name in complexPropsMap) {\n let complexObjs = [];\n // collect the trailing object values, stopping when a non-object is discovered\n for (let i = propObjs.length - 1; i >= 0; i -= 1) {\n let val = propObjs[i][name];\n if (typeof val === 'object' && val) { // non-null object\n complexObjs.unshift(val);\n }\n else if (val !== undefined) {\n dest[name] = val; // if there were no objects, this value will be used\n break;\n }\n }\n // if the trailing values were objects, use the merged value\n if (complexObjs.length) {\n dest[name] = mergeProps(complexObjs);\n }\n }\n }\n // copy values into the destination, going from last to first\n for (let i = propObjs.length - 1; i >= 0; i -= 1) {\n let props = propObjs[i];\n for (let name in props) {\n if (!(name in dest)) { // if already assigned by previous props or complex props, don't reassign\n dest[name] = props[name];\n }\n }\n }\n return dest;\n}\nfunction filterHash(hash, func) {\n let filtered = {};\n for (let key in hash) {\n if (func(hash[key], key)) {\n filtered[key] = hash[key];\n }\n }\n return filtered;\n}\nfunction mapHash(hash, func) {\n let newHash = {};\n for (let key in hash) {\n newHash[key] = func(hash[key], key);\n }\n return newHash;\n}\nfunction arrayToHash(a) {\n let hash = {};\n for (let item of a) {\n hash[item] = true;\n }\n return hash;\n}\n// TODO: reassess browser support\n// https://caniuse.com/?search=object.values\nfunction hashValuesToArray(obj) {\n let a = [];\n for (let key in obj) {\n a.push(obj[key]);\n }\n return a;\n}\nfunction isPropsEqual(obj0, obj1) {\n if (obj0 === obj1) {\n return true;\n }\n for (let key in obj0) {\n if (hasOwnProperty.call(obj0, key)) {\n if (!(key in obj1)) {\n return false;\n }\n }\n }\n for (let key in obj1) {\n if (hasOwnProperty.call(obj1, key)) {\n if (obj0[key] !== obj1[key]) {\n return false;\n }\n }\n }\n return true;\n}\nfunction getUnequalProps(obj0, obj1) {\n let keys = [];\n for (let key in obj0) {\n if (hasOwnProperty.call(obj0, key)) {\n if (!(key in obj1)) {\n keys.push(key);\n }\n }\n }\n for (let key in obj1) {\n if (hasOwnProperty.call(obj1, key)) {\n if (obj0[key] !== obj1[key]) {\n keys.push(key);\n }\n }\n }\n return keys;\n}\nfunction compareObjs(oldProps, newProps, equalityFuncs = {}) {\n if (oldProps === newProps) {\n return true;\n }\n for (let key in newProps) {\n if (key in oldProps && isObjValsEqual(oldProps[key], newProps[key], equalityFuncs[key])) ;\n else {\n return false;\n }\n }\n // check for props that were omitted in the new\n for (let key in oldProps) {\n if (!(key in newProps)) {\n return false;\n }\n }\n return true;\n}\n/*\nassumed \"true\" equality for handler names like \"onReceiveSomething\"\n*/\nfunction isObjValsEqual(val0, val1, comparator) {\n if (val0 === val1 || comparator === true) {\n return true;\n }\n if (comparator) {\n return comparator(val0, val1);\n }\n return false;\n}\nfunction collectFromHash(hash, startIndex = 0, endIndex, step = 1) {\n let res = [];\n if (endIndex == null) {\n endIndex = Object.keys(hash).length;\n }\n for (let i = startIndex; i < endIndex; i += step) {\n let val = hash[i];\n if (val !== undefined) { // will disregard undefined for sparse arrays\n res.push(val);\n }\n }\n return res;\n}\n\nconst DAY_IDS = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'];\n// Adding\nfunction addWeeks(m, n) {\n let a = dateToUtcArray(m);\n a[2] += n * 7;\n return arrayToUtcDate(a);\n}\nfunction addDays(m, n) {\n let a = dateToUtcArray(m);\n a[2] += n;\n return arrayToUtcDate(a);\n}\nfunction addMs(m, n) {\n let a = dateToUtcArray(m);\n a[6] += n;\n return arrayToUtcDate(a);\n}\n// Diffing (all return floats)\n// TODO: why not use ranges?\nfunction diffWeeks(m0, m1) {\n return diffDays(m0, m1) / 7;\n}\nfunction diffDays(m0, m1) {\n return (m1.valueOf() - m0.valueOf()) / (1000 * 60 * 60 * 24);\n}\nfunction diffHours(m0, m1) {\n return (m1.valueOf() - m0.valueOf()) / (1000 * 60 * 60);\n}\nfunction diffMinutes(m0, m1) {\n return (m1.valueOf() - m0.valueOf()) / (1000 * 60);\n}\nfunction diffSeconds(m0, m1) {\n return (m1.valueOf() - m0.valueOf()) / 1000;\n}\nfunction diffDayAndTime(m0, m1) {\n let m0day = startOfDay(m0);\n let m1day = startOfDay(m1);\n return {\n years: 0,\n months: 0,\n days: Math.round(diffDays(m0day, m1day)),\n milliseconds: (m1.valueOf() - m1day.valueOf()) - (m0.valueOf() - m0day.valueOf()),\n };\n}\n// Diffing Whole Units\nfunction diffWholeWeeks(m0, m1) {\n let d = diffWholeDays(m0, m1);\n if (d !== null && d % 7 === 0) {\n return d / 7;\n }\n return null;\n}\nfunction diffWholeDays(m0, m1) {\n if (timeAsMs(m0) === timeAsMs(m1)) {\n return Math.round(diffDays(m0, m1));\n }\n return null;\n}\n// Start-Of\nfunction startOfDay(m) {\n return arrayToUtcDate([\n m.getUTCFullYear(),\n m.getUTCMonth(),\n m.getUTCDate(),\n ]);\n}\nfunction startOfHour(m) {\n return arrayToUtcDate([\n m.getUTCFullYear(),\n m.getUTCMonth(),\n m.getUTCDate(),\n m.getUTCHours(),\n ]);\n}\nfunction startOfMinute(m) {\n return arrayToUtcDate([\n m.getUTCFullYear(),\n m.getUTCMonth(),\n m.getUTCDate(),\n m.getUTCHours(),\n m.getUTCMinutes(),\n ]);\n}\nfunction startOfSecond(m) {\n return arrayToUtcDate([\n m.getUTCFullYear(),\n m.getUTCMonth(),\n m.getUTCDate(),\n m.getUTCHours(),\n m.getUTCMinutes(),\n m.getUTCSeconds(),\n ]);\n}\n// Week Computation\nfunction weekOfYear(marker, dow, doy) {\n let y = marker.getUTCFullYear();\n let w = weekOfGivenYear(marker, y, dow, doy);\n if (w < 1) {\n return weekOfGivenYear(marker, y - 1, dow, doy);\n }\n let nextW = weekOfGivenYear(marker, y + 1, dow, doy);\n if (nextW >= 1) {\n return Math.min(w, nextW);\n }\n return w;\n}\nfunction weekOfGivenYear(marker, year, dow, doy) {\n let firstWeekStart = arrayToUtcDate([year, 0, 1 + firstWeekOffset(year, dow, doy)]);\n let dayStart = startOfDay(marker);\n let days = Math.round(diffDays(firstWeekStart, dayStart));\n return Math.floor(days / 7) + 1; // zero-indexed\n}\n// start-of-first-week - start-of-year\nfunction firstWeekOffset(year, dow, doy) {\n // first-week day -- which january is always in the first week (4 for iso, 1 for other)\n let fwd = 7 + dow - doy;\n // first-week day local weekday -- which local weekday is fwd\n let fwdlw = (7 + arrayToUtcDate([year, 0, fwd]).getUTCDay() - dow) % 7;\n return -fwdlw + fwd - 1;\n}\n// Array Conversion\nfunction dateToLocalArray(date) {\n return [\n date.getFullYear(),\n date.getMonth(),\n date.getDate(),\n date.getHours(),\n date.getMinutes(),\n date.getSeconds(),\n date.getMilliseconds(),\n ];\n}\nfunction arrayToLocalDate(a) {\n return new Date(a[0], a[1] || 0, a[2] == null ? 1 : a[2], // day of month\n a[3] || 0, a[4] || 0, a[5] || 0);\n}\nfunction dateToUtcArray(date) {\n return [\n date.getUTCFullYear(),\n date.getUTCMonth(),\n date.getUTCDate(),\n date.getUTCHours(),\n date.getUTCMinutes(),\n date.getUTCSeconds(),\n date.getUTCMilliseconds(),\n ];\n}\nfunction arrayToUtcDate(a) {\n // according to web standards (and Safari), a month index is required.\n // massage if only given a year.\n if (a.length === 1) {\n a = a.concat([0]);\n }\n return new Date(Date.UTC(...a));\n}\n// Other Utils\nfunction isValidDate(m) {\n return !isNaN(m.valueOf());\n}\nfunction timeAsMs(m) {\n return m.getUTCHours() * 1000 * 60 * 60 +\n m.getUTCMinutes() * 1000 * 60 +\n m.getUTCSeconds() * 1000 +\n m.getUTCMilliseconds();\n}\n\n// timeZoneOffset is in minutes\nfunction buildIsoString(marker, timeZoneOffset, stripZeroTime = false) {\n let s = marker.toISOString();\n s = s.replace('.000', '');\n if (stripZeroTime) {\n s = s.replace('T00:00:00Z', '');\n }\n if (s.length > 10) { // time part wasn't stripped, can add timezone info\n if (timeZoneOffset == null) {\n s = s.replace('Z', '');\n }\n else if (timeZoneOffset !== 0) {\n s = s.replace('Z', formatTimeZoneOffset(timeZoneOffset, true));\n }\n // otherwise, its UTC-0 and we want to keep the Z\n }\n return s;\n}\n// formats the date, but with no time part\n// TODO: somehow merge with buildIsoString and stripZeroTime\n// TODO: rename. omit \"string\"\nfunction formatDayString(marker) {\n return marker.toISOString().replace(/T.*$/, '');\n}\n// TODO: use Date::toISOString and use everything after the T?\nfunction formatIsoTimeString(marker) {\n return padStart(marker.getUTCHours(), 2) + ':' +\n padStart(marker.getUTCMinutes(), 2) + ':' +\n padStart(marker.getUTCSeconds(), 2);\n}\nfunction formatTimeZoneOffset(minutes, doIso = false) {\n let sign = minutes < 0 ? '-' : '+';\n let abs = Math.abs(minutes);\n let hours = Math.floor(abs / 60);\n let mins = Math.round(abs % 60);\n if (doIso) {\n return `${sign + padStart(hours, 2)}:${padStart(mins, 2)}`;\n }\n return `GMT${sign}${hours}${mins ? `:${padStart(mins, 2)}` : ''}`;\n}\n\n// TODO: new util arrayify?\nfunction removeExact(array, exactVal) {\n let removeCnt = 0;\n let i = 0;\n while (i < array.length) {\n if (array[i] === exactVal) {\n array.splice(i, 1);\n removeCnt += 1;\n }\n else {\n i += 1;\n }\n }\n return removeCnt;\n}\nfunction isArraysEqual(a0, a1, equalityFunc) {\n if (a0 === a1) {\n return true;\n }\n let len = a0.length;\n let i;\n if (len !== a1.length) { // not array? or not same length?\n return false;\n }\n for (i = 0; i < len; i += 1) {\n if (!(equalityFunc ? equalityFunc(a0[i], a1[i]) : a0[i] === a1[i])) {\n return false;\n }\n }\n return true;\n}\n\nfunction memoize(workerFunc, resEquality, teardownFunc) {\n let currentArgs;\n let currentRes;\n return function (...newArgs) {\n if (!currentArgs) {\n currentRes = workerFunc.apply(this, newArgs);\n }\n else if (!isArraysEqual(currentArgs, newArgs)) {\n if (teardownFunc) {\n teardownFunc(currentRes);\n }\n let res = workerFunc.apply(this, newArgs);\n if (!resEquality || !resEquality(res, currentRes)) {\n currentRes = res;\n }\n }\n currentArgs = newArgs;\n return currentRes;\n };\n}\nfunction memoizeObjArg(workerFunc, resEquality, teardownFunc) {\n let currentArg;\n let currentRes;\n return (newArg) => {\n if (!currentArg) {\n currentRes = workerFunc.call(this, newArg);\n }\n else if (!isPropsEqual(currentArg, newArg)) {\n if (teardownFunc) {\n teardownFunc(currentRes);\n }\n let res = workerFunc.call(this, newArg);\n if (!resEquality || !resEquality(res, currentRes)) {\n currentRes = res;\n }\n }\n currentArg = newArg;\n return currentRes;\n };\n}\nfunction memoizeArraylike(// used at all?\nworkerFunc, resEquality, teardownFunc) {\n let currentArgSets = [];\n let currentResults = [];\n return (newArgSets) => {\n let currentLen = currentArgSets.length;\n let newLen = newArgSets.length;\n let i = 0;\n for (; i < currentLen; i += 1) {\n if (!newArgSets[i]) { // one of the old sets no longer exists\n if (teardownFunc) {\n teardownFunc(currentResults[i]);\n }\n }\n else if (!isArraysEqual(currentArgSets[i], newArgSets[i])) {\n if (teardownFunc) {\n teardownFunc(currentResults[i]);\n }\n let res = workerFunc.apply(this, newArgSets[i]);\n if (!resEquality || !resEquality(res, currentResults[i])) {\n currentResults[i] = res;\n }\n }\n }\n for (; i < newLen; i += 1) {\n currentResults[i] = workerFunc.apply(this, newArgSets[i]);\n }\n currentArgSets = newArgSets;\n currentResults.splice(newLen); // remove excess\n return currentResults;\n };\n}\nfunction memoizeHashlike(workerFunc, resEquality, teardownFunc) {\n let currentArgHash = {};\n let currentResHash = {};\n return (newArgHash) => {\n let newResHash = {};\n for (let key in newArgHash) {\n if (!currentResHash[key]) {\n newResHash[key] = workerFunc.apply(this, newArgHash[key]);\n }\n else if (!isArraysEqual(currentArgHash[key], newArgHash[key])) {\n if (teardownFunc) {\n teardownFunc(currentResHash[key]);\n }\n let res = workerFunc.apply(this, newArgHash[key]);\n newResHash[key] = (resEquality && resEquality(res, currentResHash[key]))\n ? currentResHash[key]\n : res;\n }\n else {\n newResHash[key] = currentResHash[key];\n }\n }\n currentArgHash = newArgHash;\n currentResHash = newResHash;\n return newResHash;\n };\n}\n\nconst EXTENDED_SETTINGS_AND_SEVERITIES = {\n week: 3,\n separator: 0,\n omitZeroMinute: 0,\n meridiem: 0,\n omitCommas: 0,\n};\nconst STANDARD_DATE_PROP_SEVERITIES = {\n timeZoneName: 7,\n era: 6,\n year: 5,\n month: 4,\n day: 2,\n weekday: 2,\n hour: 1,\n minute: 1,\n second: 1,\n};\nconst MERIDIEM_RE = /\\s*([ap])\\.?m\\.?/i; // eats up leading spaces too\nconst COMMA_RE = /,/g; // we need re for globalness\nconst MULTI_SPACE_RE = /\\s+/g;\nconst LTR_RE = /\\u200e/g; // control character\nconst UTC_RE = /UTC|GMT/;\nclass NativeFormatter {\n constructor(formatSettings) {\n let standardDateProps = {};\n let extendedSettings = {};\n let severity = 0;\n for (let name in formatSettings) {\n if (name in EXTENDED_SETTINGS_AND_SEVERITIES) {\n extendedSettings[name] = formatSettings[name];\n severity = Math.max(EXTENDED_SETTINGS_AND_SEVERITIES[name], severity);\n }\n else {\n standardDateProps[name] = formatSettings[name];\n if (name in STANDARD_DATE_PROP_SEVERITIES) { // TODO: what about hour12? no severity\n severity = Math.max(STANDARD_DATE_PROP_SEVERITIES[name], severity);\n }\n }\n }\n this.standardDateProps = standardDateProps;\n this.extendedSettings = extendedSettings;\n this.severity = severity;\n this.buildFormattingFunc = memoize(buildFormattingFunc);\n }\n format(date, context) {\n return this.buildFormattingFunc(this.standardDateProps, this.extendedSettings, context)(date);\n }\n formatRange(start, end, context, betterDefaultSeparator) {\n let { standardDateProps, extendedSettings } = this;\n let diffSeverity = computeMarkerDiffSeverity(start.marker, end.marker, context.calendarSystem);\n if (!diffSeverity) {\n return this.format(start, context);\n }\n let biggestUnitForPartial = diffSeverity;\n if (biggestUnitForPartial > 1 && // the two dates are different in a way that's larger scale than time\n (standardDateProps.year === 'numeric' || standardDateProps.year === '2-digit') &&\n (standardDateProps.month === 'numeric' || standardDateProps.month === '2-digit') &&\n (standardDateProps.day === 'numeric' || standardDateProps.day === '2-digit')) {\n biggestUnitForPartial = 1; // make it look like the dates are only different in terms of time\n }\n let full0 = this.format(start, context);\n let full1 = this.format(end, context);\n if (full0 === full1) {\n return full0;\n }\n let partialDateProps = computePartialFormattingOptions(standardDateProps, biggestUnitForPartial);\n let partialFormattingFunc = buildFormattingFunc(partialDateProps, extendedSettings, context);\n let partial0 = partialFormattingFunc(start);\n let partial1 = partialFormattingFunc(end);\n let insertion = findCommonInsertion(full0, partial0, full1, partial1);\n let separator = extendedSettings.separator || betterDefaultSeparator || context.defaultSeparator || '';\n if (insertion) {\n return insertion.before + partial0 + separator + partial1 + insertion.after;\n }\n return full0 + separator + full1;\n }\n getLargestUnit() {\n switch (this.severity) {\n case 7:\n case 6:\n case 5:\n return 'year';\n case 4:\n return 'month';\n case 3:\n return 'week';\n case 2:\n return 'day';\n default:\n return 'time'; // really?\n }\n }\n}\nfunction buildFormattingFunc(standardDateProps, extendedSettings, context) {\n let standardDatePropCnt = Object.keys(standardDateProps).length;\n if (standardDatePropCnt === 1 && standardDateProps.timeZoneName === 'short') {\n return (date) => (formatTimeZoneOffset(date.timeZoneOffset));\n }\n if (standardDatePropCnt === 0 && extendedSettings.week) {\n return (date) => (formatWeekNumber(context.computeWeekNumber(date.marker), context.weekText, context.weekTextLong, context.locale, extendedSettings.week));\n }\n return buildNativeFormattingFunc(standardDateProps, extendedSettings, context);\n}\nfunction buildNativeFormattingFunc(standardDateProps, extendedSettings, context) {\n standardDateProps = Object.assign({}, standardDateProps); // copy\n extendedSettings = Object.assign({}, extendedSettings); // copy\n sanitizeSettings(standardDateProps, extendedSettings);\n standardDateProps.timeZone = 'UTC'; // we leverage the only guaranteed timeZone for our UTC markers\n let normalFormat = new Intl.DateTimeFormat(context.locale.codes, standardDateProps);\n let zeroFormat; // needed?\n if (extendedSettings.omitZeroMinute) {\n let zeroProps = Object.assign({}, standardDateProps);\n delete zeroProps.minute; // seconds and ms were already considered in sanitizeSettings\n zeroFormat = new Intl.DateTimeFormat(context.locale.codes, zeroProps);\n }\n return (date) => {\n let { marker } = date;\n let format;\n if (zeroFormat && !marker.getUTCMinutes()) {\n format = zeroFormat;\n }\n else {\n format = normalFormat;\n }\n let s = format.format(marker);\n return postProcess(s, date, standardDateProps, extendedSettings, context);\n };\n}\nfunction sanitizeSettings(standardDateProps, extendedSettings) {\n // deal with a browser inconsistency where formatting the timezone\n // requires that the hour/minute be present.\n if (standardDateProps.timeZoneName) {\n if (!standardDateProps.hour) {\n standardDateProps.hour = '2-digit';\n }\n if (!standardDateProps.minute) {\n standardDateProps.minute = '2-digit';\n }\n }\n // only support short timezone names\n if (standardDateProps.timeZoneName === 'long') {\n standardDateProps.timeZoneName = 'short';\n }\n // if requesting to display seconds, MUST display minutes\n if (extendedSettings.omitZeroMinute && (standardDateProps.second || standardDateProps.millisecond)) {\n delete extendedSettings.omitZeroMinute;\n }\n}\nfunction postProcess(s, date, standardDateProps, extendedSettings, context) {\n s = s.replace(LTR_RE, ''); // remove left-to-right control chars. do first. good for other regexes\n if (standardDateProps.timeZoneName === 'short') {\n s = injectTzoStr(s, (context.timeZone === 'UTC' || date.timeZoneOffset == null) ?\n 'UTC' : // important to normalize for IE, which does \"GMT\"\n formatTimeZoneOffset(date.timeZoneOffset));\n }\n if (extendedSettings.omitCommas) {\n s = s.replace(COMMA_RE, '').trim();\n }\n if (extendedSettings.omitZeroMinute) {\n s = s.replace(':00', ''); // zeroFormat doesn't always achieve this\n }\n // ^ do anything that might create adjacent spaces before this point,\n // because MERIDIEM_RE likes to eat up loading spaces\n if (extendedSettings.meridiem === false) {\n s = s.replace(MERIDIEM_RE, '').trim();\n }\n else if (extendedSettings.meridiem === 'narrow') { // a/p\n s = s.replace(MERIDIEM_RE, (m0, m1) => m1.toLocaleLowerCase());\n }\n else if (extendedSettings.meridiem === 'short') { // am/pm\n s = s.replace(MERIDIEM_RE, (m0, m1) => `${m1.toLocaleLowerCase()}m`);\n }\n else if (extendedSettings.meridiem === 'lowercase') { // other meridiem transformers already converted to lowercase\n s = s.replace(MERIDIEM_RE, (m0) => m0.toLocaleLowerCase());\n }\n s = s.replace(MULTI_SPACE_RE, ' ');\n s = s.trim();\n return s;\n}\nfunction injectTzoStr(s, tzoStr) {\n let replaced = false;\n s = s.replace(UTC_RE, () => {\n replaced = true;\n return tzoStr;\n });\n // IE11 doesn't include UTC/GMT in the original string, so append to end\n if (!replaced) {\n s += ` ${tzoStr}`;\n }\n return s;\n}\nfunction formatWeekNumber(num, weekText, weekTextLong, locale, display) {\n let parts = [];\n if (display === 'long') {\n parts.push(weekTextLong);\n }\n else if (display === 'short' || display === 'narrow') {\n parts.push(weekText);\n }\n if (display === 'long' || display === 'short') {\n parts.push(' ');\n }\n parts.push(locale.simpleNumberFormat.format(num));\n if (locale.options.direction === 'rtl') { // TODO: use control characters instead?\n parts.reverse();\n }\n return parts.join('');\n}\n// Range Formatting Utils\n// 0 = exactly the same\n// 1 = different by time\n// and bigger\nfunction computeMarkerDiffSeverity(d0, d1, ca) {\n if (ca.getMarkerYear(d0) !== ca.getMarkerYear(d1)) {\n return 5;\n }\n if (ca.getMarkerMonth(d0) !== ca.getMarkerMonth(d1)) {\n return 4;\n }\n if (ca.getMarkerDay(d0) !== ca.getMarkerDay(d1)) {\n return 2;\n }\n if (timeAsMs(d0) !== timeAsMs(d1)) {\n return 1;\n }\n return 0;\n}\nfunction computePartialFormattingOptions(options, biggestUnit) {\n let partialOptions = {};\n for (let name in options) {\n if (!(name in STANDARD_DATE_PROP_SEVERITIES) || // not a date part prop (like timeZone)\n STANDARD_DATE_PROP_SEVERITIES[name] <= biggestUnit) {\n partialOptions[name] = options[name];\n }\n }\n return partialOptions;\n}\nfunction findCommonInsertion(full0, partial0, full1, partial1) {\n let i0 = 0;\n while (i0 < full0.length) {\n let found0 = full0.indexOf(partial0, i0);\n if (found0 === -1) {\n break;\n }\n let before0 = full0.substr(0, found0);\n i0 = found0 + partial0.length;\n let after0 = full0.substr(i0);\n let i1 = 0;\n while (i1 < full1.length) {\n let found1 = full1.indexOf(partial1, i1);\n if (found1 === -1) {\n break;\n }\n let before1 = full1.substr(0, found1);\n i1 = found1 + partial1.length;\n let after1 = full1.substr(i1);\n if (before0 === before1 && after0 === after1) {\n return {\n before: before0,\n after: after0,\n };\n }\n }\n }\n return null;\n}\n\nfunction expandZonedMarker(dateInfo, calendarSystem) {\n let a = calendarSystem.markerToArray(dateInfo.marker);\n return {\n marker: dateInfo.marker,\n timeZoneOffset: dateInfo.timeZoneOffset,\n array: a,\n year: a[0],\n month: a[1],\n day: a[2],\n hour: a[3],\n minute: a[4],\n second: a[5],\n millisecond: a[6],\n };\n}\n\nfunction createVerboseFormattingArg(start, end, context, betterDefaultSeparator) {\n let startInfo = expandZonedMarker(start, context.calendarSystem);\n let endInfo = end ? expandZonedMarker(end, context.calendarSystem) : null;\n return {\n date: startInfo,\n start: startInfo,\n end: endInfo,\n timeZone: context.timeZone,\n localeCodes: context.locale.codes,\n defaultSeparator: betterDefaultSeparator || context.defaultSeparator,\n };\n}\n\n/*\nTODO: fix the terminology of \"formatter\" vs \"formatting func\"\n*/\n/*\nAt the time of instantiation, this object does not know which cmd-formatting system it will use.\nIt receives this at the time of formatting, as a setting.\n*/\nclass CmdFormatter {\n constructor(cmdStr) {\n this.cmdStr = cmdStr;\n }\n format(date, context, betterDefaultSeparator) {\n return context.cmdFormatter(this.cmdStr, createVerboseFormattingArg(date, null, context, betterDefaultSeparator));\n }\n formatRange(start, end, context, betterDefaultSeparator) {\n return context.cmdFormatter(this.cmdStr, createVerboseFormattingArg(start, end, context, betterDefaultSeparator));\n }\n}\n\nclass FuncFormatter {\n constructor(func) {\n this.func = func;\n }\n format(date, context, betterDefaultSeparator) {\n return this.func(createVerboseFormattingArg(date, null, context, betterDefaultSeparator));\n }\n formatRange(start, end, context, betterDefaultSeparator) {\n return this.func(createVerboseFormattingArg(start, end, context, betterDefaultSeparator));\n }\n}\n\nfunction createFormatter(input) {\n if (typeof input === 'object' && input) { // non-null object\n return new NativeFormatter(input);\n }\n if (typeof input === 'string') {\n return new CmdFormatter(input);\n }\n if (typeof input === 'function') {\n return new FuncFormatter(input);\n }\n return null;\n}\n\n// base options\n// ------------\nconst BASE_OPTION_REFINERS = {\n navLinkDayClick: identity,\n navLinkWeekClick: identity,\n duration: createDuration,\n bootstrapFontAwesome: identity,\n buttonIcons: identity,\n customButtons: identity,\n defaultAllDayEventDuration: createDuration,\n defaultTimedEventDuration: createDuration,\n nextDayThreshold: createDuration,\n scrollTime: createDuration,\n scrollTimeReset: Boolean,\n slotMinTime: createDuration,\n slotMaxTime: createDuration,\n dayPopoverFormat: createFormatter,\n slotDuration: createDuration,\n snapDuration: createDuration,\n headerToolbar: identity,\n footerToolbar: identity,\n defaultRangeSeparator: String,\n titleRangeSeparator: String,\n forceEventDuration: Boolean,\n dayHeaders: Boolean,\n dayHeaderFormat: createFormatter,\n dayHeaderClassNames: identity,\n dayHeaderContent: identity,\n dayHeaderDidMount: identity,\n dayHeaderWillUnmount: identity,\n dayCellClassNames: identity,\n dayCellContent: identity,\n dayCellDidMount: identity,\n dayCellWillUnmount: identity,\n initialView: String,\n aspectRatio: Number,\n weekends: Boolean,\n weekNumberCalculation: identity,\n weekNumbers: Boolean,\n weekNumberClassNames: identity,\n weekNumberContent: identity,\n weekNumberDidMount: identity,\n weekNumberWillUnmount: identity,\n editable: Boolean,\n viewClassNames: identity,\n viewDidMount: identity,\n viewWillUnmount: identity,\n nowIndicator: Boolean,\n nowIndicatorClassNames: identity,\n nowIndicatorContent: identity,\n nowIndicatorDidMount: identity,\n nowIndicatorWillUnmount: identity,\n showNonCurrentDates: Boolean,\n lazyFetching: Boolean,\n startParam: String,\n endParam: String,\n timeZoneParam: String,\n timeZone: String,\n locales: identity,\n locale: identity,\n themeSystem: String,\n dragRevertDuration: Number,\n dragScroll: Boolean,\n allDayMaintainDuration: Boolean,\n unselectAuto: Boolean,\n dropAccept: identity,\n eventOrder: parseFieldSpecs,\n eventOrderStrict: Boolean,\n handleWindowResize: Boolean,\n windowResizeDelay: Number,\n longPressDelay: Number,\n eventDragMinDistance: Number,\n expandRows: Boolean,\n height: identity,\n contentHeight: identity,\n direction: String,\n weekNumberFormat: createFormatter,\n eventResizableFromStart: Boolean,\n displayEventTime: Boolean,\n displayEventEnd: Boolean,\n weekText: String,\n weekTextLong: String,\n progressiveEventRendering: Boolean,\n businessHours: identity,\n initialDate: identity,\n now: identity,\n eventDataTransform: identity,\n stickyHeaderDates: identity,\n stickyFooterScrollbar: identity,\n viewHeight: identity,\n defaultAllDay: Boolean,\n eventSourceFailure: identity,\n eventSourceSuccess: identity,\n eventDisplay: String,\n eventStartEditable: Boolean,\n eventDurationEditable: Boolean,\n eventOverlap: identity,\n eventConstraint: identity,\n eventAllow: identity,\n eventBackgroundColor: String,\n eventBorderColor: String,\n eventTextColor: String,\n eventColor: String,\n eventClassNames: identity,\n eventContent: identity,\n eventDidMount: identity,\n eventWillUnmount: identity,\n selectConstraint: identity,\n selectOverlap: identity,\n selectAllow: identity,\n droppable: Boolean,\n unselectCancel: String,\n slotLabelFormat: identity,\n slotLaneClassNames: identity,\n slotLaneContent: identity,\n slotLaneDidMount: identity,\n slotLaneWillUnmount: identity,\n slotLabelClassNames: identity,\n slotLabelContent: identity,\n slotLabelDidMount: identity,\n slotLabelWillUnmount: identity,\n dayMaxEvents: identity,\n dayMaxEventRows: identity,\n dayMinWidth: Number,\n slotLabelInterval: createDuration,\n allDayText: String,\n allDayClassNames: identity,\n allDayContent: identity,\n allDayDidMount: identity,\n allDayWillUnmount: identity,\n slotMinWidth: Number,\n navLinks: Boolean,\n eventTimeFormat: createFormatter,\n rerenderDelay: Number,\n moreLinkText: identity,\n moreLinkHint: identity,\n selectMinDistance: Number,\n selectable: Boolean,\n selectLongPressDelay: Number,\n eventLongPressDelay: Number,\n selectMirror: Boolean,\n eventMaxStack: Number,\n eventMinHeight: Number,\n eventMinWidth: Number,\n eventShortHeight: Number,\n slotEventOverlap: Boolean,\n plugins: identity,\n firstDay: Number,\n dayCount: Number,\n dateAlignment: String,\n dateIncrement: createDuration,\n hiddenDays: identity,\n monthMode: Boolean,\n fixedWeekCount: Boolean,\n validRange: identity,\n visibleRange: identity,\n titleFormat: identity,\n eventInteractive: Boolean,\n // only used by list-view, but languages define the value, so we need it in base options\n noEventsText: String,\n viewHint: identity,\n navLinkHint: identity,\n closeHint: String,\n timeHint: String,\n eventHint: String,\n moreLinkClick: identity,\n moreLinkClassNames: identity,\n moreLinkContent: identity,\n moreLinkDidMount: identity,\n moreLinkWillUnmount: identity,\n // for connectors\n // (can't be part of plugin system b/c must be provided at runtime)\n handleCustomRendering: identity,\n customRenderingMetaMap: identity,\n};\n// do NOT give a type here. need `typeof BASE_OPTION_DEFAULTS` to give real results.\n// raw values.\nconst BASE_OPTION_DEFAULTS = {\n eventDisplay: 'auto',\n defaultRangeSeparator: ' - ',\n titleRangeSeparator: ' \\u2013 ',\n defaultTimedEventDuration: '01:00:00',\n defaultAllDayEventDuration: { day: 1 },\n forceEventDuration: false,\n nextDayThreshold: '00:00:00',\n dayHeaders: true,\n initialView: '',\n aspectRatio: 1.35,\n headerToolbar: {\n start: 'title',\n center: '',\n end: 'today prev,next',\n },\n weekends: true,\n weekNumbers: false,\n weekNumberCalculation: 'local',\n editable: false,\n nowIndicator: false,\n scrollTime: '06:00:00',\n scrollTimeReset: true,\n slotMinTime: '00:00:00',\n slotMaxTime: '24:00:00',\n showNonCurrentDates: true,\n lazyFetching: true,\n startParam: 'start',\n endParam: 'end',\n timeZoneParam: 'timeZone',\n timeZone: 'local',\n locales: [],\n locale: '',\n themeSystem: 'standard',\n dragRevertDuration: 500,\n dragScroll: true,\n allDayMaintainDuration: false,\n unselectAuto: true,\n dropAccept: '*',\n eventOrder: 'start,-duration,allDay,title',\n dayPopoverFormat: { month: 'long', day: 'numeric', year: 'numeric' },\n handleWindowResize: true,\n windowResizeDelay: 100,\n longPressDelay: 1000,\n eventDragMinDistance: 5,\n expandRows: false,\n navLinks: false,\n selectable: false,\n eventMinHeight: 15,\n eventMinWidth: 30,\n eventShortHeight: 30,\n};\n// calendar listeners\n// ------------------\nconst CALENDAR_LISTENER_REFINERS = {\n datesSet: identity,\n eventsSet: identity,\n eventAdd: identity,\n eventChange: identity,\n eventRemove: identity,\n windowResize: identity,\n eventClick: identity,\n eventMouseEnter: identity,\n eventMouseLeave: identity,\n select: identity,\n unselect: identity,\n loading: identity,\n // internal\n _unmount: identity,\n _beforeprint: identity,\n _afterprint: identity,\n _noEventDrop: identity,\n _noEventResize: identity,\n _resize: identity,\n _scrollRequest: identity,\n};\n// calendar-specific options\n// -------------------------\nconst CALENDAR_OPTION_REFINERS = {\n buttonText: identity,\n buttonHints: identity,\n views: identity,\n plugins: identity,\n initialEvents: identity,\n events: identity,\n eventSources: identity,\n};\nconst COMPLEX_OPTION_COMPARATORS = {\n headerToolbar: isMaybeObjectsEqual,\n footerToolbar: isMaybeObjectsEqual,\n buttonText: isMaybeObjectsEqual,\n buttonHints: isMaybeObjectsEqual,\n buttonIcons: isMaybeObjectsEqual,\n dateIncrement: isMaybeObjectsEqual,\n};\nfunction isMaybeObjectsEqual(a, b) {\n if (typeof a === 'object' && typeof b === 'object' && a && b) { // both non-null objects\n return isPropsEqual(a, b);\n }\n return a === b;\n}\n// view-specific options\n// ---------------------\nconst VIEW_OPTION_REFINERS = {\n type: String,\n component: identity,\n buttonText: String,\n buttonTextKey: String,\n dateProfileGeneratorClass: identity,\n usesMinMaxTime: Boolean,\n classNames: identity,\n content: identity,\n didMount: identity,\n willUnmount: identity,\n};\n// util funcs\n// ----------------------------------------------------------------------------------------------------\nfunction mergeRawOptions(optionSets) {\n return mergeProps(optionSets, COMPLEX_OPTION_COMPARATORS);\n}\nfunction refineProps(input, refiners) {\n let refined = {};\n let extra = {};\n for (let propName in refiners) {\n if (propName in input) {\n refined[propName] = refiners[propName](input[propName]);\n }\n }\n for (let propName in input) {\n if (!(propName in refiners)) {\n extra[propName] = input[propName];\n }\n }\n return { refined, extra };\n}\nfunction identity(raw) {\n return raw;\n}\n\nfunction createEventInstance(defId, range, forcedStartTzo, forcedEndTzo) {\n return {\n instanceId: guid(),\n defId,\n range,\n forcedStartTzo: forcedStartTzo == null ? null : forcedStartTzo,\n forcedEndTzo: forcedEndTzo == null ? null : forcedEndTzo,\n };\n}\n\nfunction parseRecurring(refined, defaultAllDay, dateEnv, recurringTypes) {\n for (let i = 0; i < recurringTypes.length; i += 1) {\n let parsed = recurringTypes[i].parse(refined, dateEnv);\n if (parsed) {\n let { allDay } = refined;\n if (allDay == null) {\n allDay = defaultAllDay;\n if (allDay == null) {\n allDay = parsed.allDayGuess;\n if (allDay == null) {\n allDay = false;\n }\n }\n }\n return {\n allDay,\n duration: parsed.duration,\n typeData: parsed.typeData,\n typeId: i,\n };\n }\n }\n return null;\n}\nfunction expandRecurring(eventStore, framingRange, context) {\n let { dateEnv, pluginHooks, options } = context;\n let { defs, instances } = eventStore;\n // remove existing recurring instances\n // TODO: bad. always expand events as a second step\n instances = filterHash(instances, (instance) => !defs[instance.defId].recurringDef);\n for (let defId in defs) {\n let def = defs[defId];\n if (def.recurringDef) {\n let { duration } = def.recurringDef;\n if (!duration) {\n duration = def.allDay ?\n options.defaultAllDayEventDuration :\n options.defaultTimedEventDuration;\n }\n let starts = expandRecurringRanges(def, duration, framingRange, dateEnv, pluginHooks.recurringTypes);\n for (let start of starts) {\n let instance = createEventInstance(defId, {\n start,\n end: dateEnv.add(start, duration),\n });\n instances[instance.instanceId] = instance;\n }\n }\n }\n return { defs, instances };\n}\n/*\nEvent MUST have a recurringDef\n*/\nfunction expandRecurringRanges(eventDef, duration, framingRange, dateEnv, recurringTypes) {\n let typeDef = recurringTypes[eventDef.recurringDef.typeId];\n let markers = typeDef.expand(eventDef.recurringDef.typeData, {\n start: dateEnv.subtract(framingRange.start, duration),\n end: framingRange.end,\n }, dateEnv);\n // the recurrence plugins don't guarantee that all-day events are start-of-day, so we have to\n if (eventDef.allDay) {\n markers = markers.map(startOfDay);\n }\n return markers;\n}\n\nfunction parseEvents(rawEvents, eventSource, context, allowOpenRange) {\n let eventStore = createEmptyEventStore();\n let eventRefiners = buildEventRefiners(context);\n for (let rawEvent of rawEvents) {\n let tuple = parseEvent(rawEvent, eventSource, context, allowOpenRange, eventRefiners);\n if (tuple) {\n eventTupleToStore(tuple, eventStore);\n }\n }\n return eventStore;\n}\nfunction eventTupleToStore(tuple, eventStore = createEmptyEventStore()) {\n eventStore.defs[tuple.def.defId] = tuple.def;\n if (tuple.instance) {\n eventStore.instances[tuple.instance.instanceId] = tuple.instance;\n }\n return eventStore;\n}\n// retrieves events that have the same groupId as the instance specified by `instanceId`\n// or they are the same as the instance.\n// why might instanceId not be in the store? an event from another calendar?\nfunction getRelevantEvents(eventStore, instanceId) {\n let instance = eventStore.instances[instanceId];\n if (instance) {\n let def = eventStore.defs[instance.defId];\n // get events/instances with same group\n let newStore = filterEventStoreDefs(eventStore, (lookDef) => isEventDefsGrouped(def, lookDef));\n // add the original\n // TODO: wish we could use eventTupleToStore or something like it\n newStore.defs[def.defId] = def;\n newStore.instances[instance.instanceId] = instance;\n return newStore;\n }\n return createEmptyEventStore();\n}\nfunction isEventDefsGrouped(def0, def1) {\n return Boolean(def0.groupId && def0.groupId === def1.groupId);\n}\nfunction createEmptyEventStore() {\n return { defs: {}, instances: {} };\n}\nfunction mergeEventStores(store0, store1) {\n return {\n defs: Object.assign(Object.assign({}, store0.defs), store1.defs),\n instances: Object.assign(Object.assign({}, store0.instances), store1.instances),\n };\n}\nfunction filterEventStoreDefs(eventStore, filterFunc) {\n let defs = filterHash(eventStore.defs, filterFunc);\n let instances = filterHash(eventStore.instances, (instance) => (defs[instance.defId] // still exists?\n ));\n return { defs, instances };\n}\nfunction excludeSubEventStore(master, sub) {\n let { defs, instances } = master;\n let filteredDefs = {};\n let filteredInstances = {};\n for (let defId in defs) {\n if (!sub.defs[defId]) { // not explicitly excluded\n filteredDefs[defId] = defs[defId];\n }\n }\n for (let instanceId in instances) {\n if (!sub.instances[instanceId] && // not explicitly excluded\n filteredDefs[instances[instanceId].defId] // def wasn't filtered away\n ) {\n filteredInstances[instanceId] = instances[instanceId];\n }\n }\n return {\n defs: filteredDefs,\n instances: filteredInstances,\n };\n}\n\nfunction normalizeConstraint(input, context) {\n if (Array.isArray(input)) {\n return parseEvents(input, null, context, true); // allowOpenRange=true\n }\n if (typeof input === 'object' && input) { // non-null object\n return parseEvents([input], null, context, true); // allowOpenRange=true\n }\n if (input != null) {\n return String(input);\n }\n return null;\n}\n\nfunction parseClassNames(raw) {\n if (Array.isArray(raw)) {\n return raw;\n }\n if (typeof raw === 'string') {\n return raw.split(/\\s+/);\n }\n return [];\n}\n\n// TODO: better called \"EventSettings\" or \"EventConfig\"\n// TODO: move this file into structs\n// TODO: separate constraint/overlap/allow, because selection uses only that, not other props\nconst EVENT_UI_REFINERS = {\n display: String,\n editable: Boolean,\n startEditable: Boolean,\n durationEditable: Boolean,\n constraint: identity,\n overlap: identity,\n allow: identity,\n className: parseClassNames,\n classNames: parseClassNames,\n color: String,\n backgroundColor: String,\n borderColor: String,\n textColor: String,\n};\nconst EMPTY_EVENT_UI = {\n display: null,\n startEditable: null,\n durationEditable: null,\n constraints: [],\n overlap: null,\n allows: [],\n backgroundColor: '',\n borderColor: '',\n textColor: '',\n classNames: [],\n};\nfunction createEventUi(refined, context) {\n let constraint = normalizeConstraint(refined.constraint, context);\n return {\n display: refined.display || null,\n startEditable: refined.startEditable != null ? refined.startEditable : refined.editable,\n durationEditable: refined.durationEditable != null ? refined.durationEditable : refined.editable,\n constraints: constraint != null ? [constraint] : [],\n overlap: refined.overlap != null ? refined.overlap : null,\n allows: refined.allow != null ? [refined.allow] : [],\n backgroundColor: refined.backgroundColor || refined.color || '',\n borderColor: refined.borderColor || refined.color || '',\n textColor: refined.textColor || '',\n classNames: (refined.className || []).concat(refined.classNames || []), // join singular and plural\n };\n}\n// TODO: prevent against problems with <2 args!\nfunction combineEventUis(uis) {\n return uis.reduce(combineTwoEventUis, EMPTY_EVENT_UI);\n}\nfunction combineTwoEventUis(item0, item1) {\n return {\n display: item1.display != null ? item1.display : item0.display,\n startEditable: item1.startEditable != null ? item1.startEditable : item0.startEditable,\n durationEditable: item1.durationEditable != null ? item1.durationEditable : item0.durationEditable,\n constraints: item0.constraints.concat(item1.constraints),\n overlap: typeof item1.overlap === 'boolean' ? item1.overlap : item0.overlap,\n allows: item0.allows.concat(item1.allows),\n backgroundColor: item1.backgroundColor || item0.backgroundColor,\n borderColor: item1.borderColor || item0.borderColor,\n textColor: item1.textColor || item0.textColor,\n classNames: item0.classNames.concat(item1.classNames),\n };\n}\n\nconst EVENT_NON_DATE_REFINERS = {\n id: String,\n groupId: String,\n title: String,\n url: String,\n interactive: Boolean,\n};\nconst EVENT_DATE_REFINERS = {\n start: identity,\n end: identity,\n date: identity,\n allDay: Boolean,\n};\nconst EVENT_REFINERS = Object.assign(Object.assign(Object.assign({}, EVENT_NON_DATE_REFINERS), EVENT_DATE_REFINERS), { extendedProps: identity });\nfunction parseEvent(raw, eventSource, context, allowOpenRange, refiners = buildEventRefiners(context)) {\n let { refined, extra } = refineEventDef(raw, context, refiners);\n let defaultAllDay = computeIsDefaultAllDay(eventSource, context);\n let recurringRes = parseRecurring(refined, defaultAllDay, context.dateEnv, context.pluginHooks.recurringTypes);\n if (recurringRes) {\n let def = parseEventDef(refined, extra, eventSource ? eventSource.sourceId : '', recurringRes.allDay, Boolean(recurringRes.duration), context);\n def.recurringDef = {\n typeId: recurringRes.typeId,\n typeData: recurringRes.typeData,\n duration: recurringRes.duration,\n };\n return { def, instance: null };\n }\n let singleRes = parseSingle(refined, defaultAllDay, context, allowOpenRange);\n if (singleRes) {\n let def = parseEventDef(refined, extra, eventSource ? eventSource.sourceId : '', singleRes.allDay, singleRes.hasEnd, context);\n let instance = createEventInstance(def.defId, singleRes.range, singleRes.forcedStartTzo, singleRes.forcedEndTzo);\n return { def, instance };\n }\n return null;\n}\nfunction refineEventDef(raw, context, refiners = buildEventRefiners(context)) {\n return refineProps(raw, refiners);\n}\nfunction buildEventRefiners(context) {\n return Object.assign(Object.assign(Object.assign({}, EVENT_UI_REFINERS), EVENT_REFINERS), context.pluginHooks.eventRefiners);\n}\n/*\nWill NOT populate extendedProps with the leftover properties.\nWill NOT populate date-related props.\n*/\nfunction parseEventDef(refined, extra, sourceId, allDay, hasEnd, context) {\n let def = {\n title: refined.title || '',\n groupId: refined.groupId || '',\n publicId: refined.id || '',\n url: refined.url || '',\n recurringDef: null,\n defId: guid(),\n sourceId,\n allDay,\n hasEnd,\n interactive: refined.interactive,\n ui: createEventUi(refined, context),\n extendedProps: Object.assign(Object.assign({}, (refined.extendedProps || {})), extra),\n };\n for (let memberAdder of context.pluginHooks.eventDefMemberAdders) {\n Object.assign(def, memberAdder(refined));\n }\n // help out EventImpl from having user modify props\n Object.freeze(def.ui.classNames);\n Object.freeze(def.extendedProps);\n return def;\n}\nfunction parseSingle(refined, defaultAllDay, context, allowOpenRange) {\n let { allDay } = refined;\n let startMeta;\n let startMarker = null;\n let hasEnd = false;\n let endMeta;\n let endMarker = null;\n let startInput = refined.start != null ? refined.start : refined.date;\n startMeta = context.dateEnv.createMarkerMeta(startInput);\n if (startMeta) {\n startMarker = startMeta.marker;\n }\n else if (!allowOpenRange) {\n return null;\n }\n if (refined.end != null) {\n endMeta = context.dateEnv.createMarkerMeta(refined.end);\n }\n if (allDay == null) {\n if (defaultAllDay != null) {\n allDay = defaultAllDay;\n }\n else {\n // fall back to the date props LAST\n allDay = (!startMeta || startMeta.isTimeUnspecified) &&\n (!endMeta || endMeta.isTimeUnspecified);\n }\n }\n if (allDay && startMarker) {\n startMarker = startOfDay(startMarker);\n }\n if (endMeta) {\n endMarker = endMeta.marker;\n if (allDay) {\n endMarker = startOfDay(endMarker);\n }\n if (startMarker && endMarker <= startMarker) {\n endMarker = null;\n }\n }\n if (endMarker) {\n hasEnd = true;\n }\n else if (!allowOpenRange) {\n hasEnd = context.options.forceEventDuration || false;\n endMarker = context.dateEnv.add(startMarker, allDay ?\n context.options.defaultAllDayEventDuration :\n context.options.defaultTimedEventDuration);\n }\n return {\n allDay,\n hasEnd,\n range: { start: startMarker, end: endMarker },\n forcedStartTzo: startMeta ? startMeta.forcedTzo : null,\n forcedEndTzo: endMeta ? endMeta.forcedTzo : null,\n };\n}\nfunction computeIsDefaultAllDay(eventSource, context) {\n let res = null;\n if (eventSource) {\n res = eventSource.defaultAllDay;\n }\n if (res == null) {\n res = context.options.defaultAllDay;\n }\n return res;\n}\n\nconst DEF_DEFAULTS = {\n startTime: '09:00',\n endTime: '17:00',\n daysOfWeek: [1, 2, 3, 4, 5],\n display: 'inverse-background',\n classNames: 'fc-non-business',\n groupId: '_businessHours', // so multiple defs get grouped\n};\n/*\nTODO: pass around as EventDefHash!!!\n*/\nfunction parseBusinessHours(input, context) {\n return parseEvents(refineInputs(input), null, context);\n}\nfunction refineInputs(input) {\n let rawDefs;\n if (input === true) {\n rawDefs = [{}]; // will get DEF_DEFAULTS verbatim\n }\n else if (Array.isArray(input)) {\n // if specifying an array, every sub-definition NEEDS a day-of-week\n rawDefs = input.filter((rawDef) => rawDef.daysOfWeek);\n }\n else if (typeof input === 'object' && input) { // non-null object\n rawDefs = [input];\n }\n else { // is probably false\n rawDefs = [];\n }\n rawDefs = rawDefs.map((rawDef) => (Object.assign(Object.assign({}, DEF_DEFAULTS), rawDef)));\n return rawDefs;\n}\n\n/* Date stuff that doesn't belong in datelib core\n----------------------------------------------------------------------------------------------------------------------*/\n// given a timed range, computes an all-day range that has the same exact duration,\n// but whose start time is aligned with the start of the day.\nfunction computeAlignedDayRange(timedRange) {\n let dayCnt = Math.floor(diffDays(timedRange.start, timedRange.end)) || 1;\n let start = startOfDay(timedRange.start);\n let end = addDays(start, dayCnt);\n return { start, end };\n}\n// given a timed range, computes an all-day range based on how for the end date bleeds into the next day\n// TODO: give nextDayThreshold a default arg\nfunction computeVisibleDayRange(timedRange, nextDayThreshold = createDuration(0)) {\n let startDay = null;\n let endDay = null;\n if (timedRange.end) {\n endDay = startOfDay(timedRange.end);\n let endTimeMS = timedRange.end.valueOf() - endDay.valueOf(); // # of milliseconds into `endDay`\n // If the end time is actually inclusively part of the next day and is equal to or\n // beyond the next day threshold, adjust the end to be the exclusive end of `endDay`.\n // Otherwise, leaving it as inclusive will cause it to exclude `endDay`.\n if (endTimeMS && endTimeMS >= asRoughMs(nextDayThreshold)) {\n endDay = addDays(endDay, 1);\n }\n }\n if (timedRange.start) {\n startDay = startOfDay(timedRange.start); // the beginning of the day the range starts\n // If end is within `startDay` but not past nextDayThreshold, assign the default duration of one day.\n if (endDay && endDay <= startDay) {\n endDay = addDays(startDay, 1);\n }\n }\n return { start: startDay, end: endDay };\n}\n// spans from one day into another?\nfunction isMultiDayRange(range) {\n let visibleRange = computeVisibleDayRange(range);\n return diffDays(visibleRange.start, visibleRange.end) > 1;\n}\nfunction diffDates(date0, date1, dateEnv, largeUnit) {\n if (largeUnit === 'year') {\n return createDuration(dateEnv.diffWholeYears(date0, date1), 'year');\n }\n if (largeUnit === 'month') {\n return createDuration(dateEnv.diffWholeMonths(date0, date1), 'month');\n }\n return diffDayAndTime(date0, date1); // returns a duration\n}\n\nfunction pointInsideRect(point, rect) {\n return point.left >= rect.left &&\n point.left < rect.right &&\n point.top >= rect.top &&\n point.top < rect.bottom;\n}\n// Returns a new rectangle that is the intersection of the two rectangles. If they don't intersect, returns false\nfunction intersectRects(rect1, rect2) {\n let res = {\n left: Math.max(rect1.left, rect2.left),\n right: Math.min(rect1.right, rect2.right),\n top: Math.max(rect1.top, rect2.top),\n bottom: Math.min(rect1.bottom, rect2.bottom),\n };\n if (res.left < res.right && res.top < res.bottom) {\n return res;\n }\n return false;\n}\nfunction translateRect(rect, deltaX, deltaY) {\n return {\n left: rect.left + deltaX,\n right: rect.right + deltaX,\n top: rect.top + deltaY,\n bottom: rect.bottom + deltaY,\n };\n}\n// Returns a new point that will have been moved to reside within the given rectangle\nfunction constrainPoint(point, rect) {\n return {\n left: Math.min(Math.max(point.left, rect.left), rect.right),\n top: Math.min(Math.max(point.top, rect.top), rect.bottom),\n };\n}\n// Returns a point that is the center of the given rectangle\nfunction getRectCenter(rect) {\n return {\n left: (rect.left + rect.right) / 2,\n top: (rect.top + rect.bottom) / 2,\n };\n}\n// Subtracts point2's coordinates from point1's coordinates, returning a delta\nfunction diffPoints(point1, point2) {\n return {\n left: point1.left - point2.left,\n top: point1.top - point2.top,\n };\n}\n\nlet canVGrowWithinCell;\nfunction getCanVGrowWithinCell() {\n if (canVGrowWithinCell == null) {\n canVGrowWithinCell = computeCanVGrowWithinCell();\n }\n return canVGrowWithinCell;\n}\nfunction computeCanVGrowWithinCell() {\n // for SSR, because this function is call immediately at top-level\n // TODO: just make this logic execute top-level, immediately, instead of doing lazily\n if (typeof document === 'undefined') {\n return true;\n }\n let el = document.createElement('div');\n el.style.position = 'absolute';\n el.style.top = '0px';\n el.style.left = '0px';\n el.innerHTML = '<table><tr><td><div></div></td></tr></table>';\n el.querySelector('table').style.height = '100px';\n el.querySelector('div').style.height = '100%';\n document.body.appendChild(el);\n let div = el.querySelector('div');\n let possible = div.offsetHeight > 0;\n document.body.removeChild(el);\n return possible;\n}\n\nconst EMPTY_EVENT_STORE = createEmptyEventStore(); // for purecomponents. TODO: keep elsewhere\nclass Splitter {\n constructor() {\n this.getKeysForEventDefs = memoize(this._getKeysForEventDefs);\n this.splitDateSelection = memoize(this._splitDateSpan);\n this.splitEventStore = memoize(this._splitEventStore);\n this.splitIndividualUi = memoize(this._splitIndividualUi);\n this.splitEventDrag = memoize(this._splitInteraction);\n this.splitEventResize = memoize(this._splitInteraction);\n this.eventUiBuilders = {}; // TODO: typescript protection\n }\n splitProps(props) {\n let keyInfos = this.getKeyInfo(props);\n let defKeys = this.getKeysForEventDefs(props.eventStore);\n let dateSelections = this.splitDateSelection(props.dateSelection);\n let individualUi = this.splitIndividualUi(props.eventUiBases, defKeys); // the individual *bases*\n let eventStores = this.splitEventStore(props.eventStore, defKeys);\n let eventDrags = this.splitEventDrag(props.eventDrag);\n let eventResizes = this.splitEventResize(props.eventResize);\n let splitProps = {};\n this.eventUiBuilders = mapHash(keyInfos, (info, key) => this.eventUiBuilders[key] || memoize(buildEventUiForKey));\n for (let key in keyInfos) {\n let keyInfo = keyInfos[key];\n let eventStore = eventStores[key] || EMPTY_EVENT_STORE;\n let buildEventUi = this.eventUiBuilders[key];\n splitProps[key] = {\n businessHours: keyInfo.businessHours || props.businessHours,\n dateSelection: dateSelections[key] || null,\n eventStore,\n eventUiBases: buildEventUi(props.eventUiBases[''], keyInfo.ui, individualUi[key]),\n eventSelection: eventStore.instances[props.eventSelection] ? props.eventSelection : '',\n eventDrag: eventDrags[key] || null,\n eventResize: eventResizes[key] || null,\n };\n }\n return splitProps;\n }\n _splitDateSpan(dateSpan) {\n let dateSpans = {};\n if (dateSpan) {\n let keys = this.getKeysForDateSpan(dateSpan);\n for (let key of keys) {\n dateSpans[key] = dateSpan;\n }\n }\n return dateSpans;\n }\n _getKeysForEventDefs(eventStore) {\n return mapHash(eventStore.defs, (eventDef) => this.getKeysForEventDef(eventDef));\n }\n _splitEventStore(eventStore, defKeys) {\n let { defs, instances } = eventStore;\n let splitStores = {};\n for (let defId in defs) {\n for (let key of defKeys[defId]) {\n if (!splitStores[key]) {\n splitStores[key] = createEmptyEventStore();\n }\n splitStores[key].defs[defId] = defs[defId];\n }\n }\n for (let instanceId in instances) {\n let instance = instances[instanceId];\n for (let key of defKeys[instance.defId]) {\n if (splitStores[key]) { // must have already been created\n splitStores[key].instances[instanceId] = instance;\n }\n }\n }\n return splitStores;\n }\n _splitIndividualUi(eventUiBases, defKeys) {\n let splitHashes = {};\n for (let defId in eventUiBases) {\n if (defId) { // not the '' key\n for (let key of defKeys[defId]) {\n if (!splitHashes[key]) {\n splitHashes[key] = {};\n }\n splitHashes[key][defId] = eventUiBases[defId];\n }\n }\n }\n return splitHashes;\n }\n _splitInteraction(interaction) {\n let splitStates = {};\n if (interaction) {\n let affectedStores = this._splitEventStore(interaction.affectedEvents, this._getKeysForEventDefs(interaction.affectedEvents));\n // can't rely on defKeys because event data is mutated\n let mutatedKeysByDefId = this._getKeysForEventDefs(interaction.mutatedEvents);\n let mutatedStores = this._splitEventStore(interaction.mutatedEvents, mutatedKeysByDefId);\n let populate = (key) => {\n if (!splitStates[key]) {\n splitStates[key] = {\n affectedEvents: affectedStores[key] || EMPTY_EVENT_STORE,\n mutatedEvents: mutatedStores[key] || EMPTY_EVENT_STORE,\n isEvent: interaction.isEvent,\n };\n }\n };\n for (let key in affectedStores) {\n populate(key);\n }\n for (let key in mutatedStores) {\n populate(key);\n }\n }\n return splitStates;\n }\n}\nfunction buildEventUiForKey(allUi, eventUiForKey, individualUi) {\n let baseParts = [];\n if (allUi) {\n baseParts.push(allUi);\n }\n if (eventUiForKey) {\n baseParts.push(eventUiForKey);\n }\n let stuff = {\n '': combineEventUis(baseParts),\n };\n if (individualUi) {\n Object.assign(stuff, individualUi);\n }\n return stuff;\n}\n\nfunction parseRange(input, dateEnv) {\n let start = null;\n let end = null;\n if (input.start) {\n start = dateEnv.createMarker(input.start);\n }\n if (input.end) {\n end = dateEnv.createMarker(input.end);\n }\n if (!start && !end) {\n return null;\n }\n if (start && end && end < start) {\n return null;\n }\n return { start, end };\n}\n// SIDE-EFFECT: will mutate ranges.\n// Will return a new array result.\nfunction invertRanges(ranges, constraintRange) {\n let invertedRanges = [];\n let { start } = constraintRange; // the end of the previous range. the start of the new range\n let i;\n let dateRange;\n // ranges need to be in order. required for our date-walking algorithm\n ranges.sort(compareRanges);\n for (i = 0; i < ranges.length; i += 1) {\n dateRange = ranges[i];\n // add the span of time before the event (if there is any)\n if (dateRange.start > start) { // compare millisecond time (skip any ambig logic)\n invertedRanges.push({ start, end: dateRange.start });\n }\n if (dateRange.end > start) {\n start = dateRange.end;\n }\n }\n // add the span of time after the last event (if there is any)\n if (start < constraintRange.end) { // compare millisecond time (skip any ambig logic)\n invertedRanges.push({ start, end: constraintRange.end });\n }\n return invertedRanges;\n}\nfunction compareRanges(range0, range1) {\n return range0.start.valueOf() - range1.start.valueOf(); // earlier ranges go first\n}\nfunction intersectRanges(range0, range1) {\n let { start, end } = range0;\n let newRange = null;\n if (range1.start !== null) {\n if (start === null) {\n start = range1.start;\n }\n else {\n start = new Date(Math.max(start.valueOf(), range1.start.valueOf()));\n }\n }\n if (range1.end != null) {\n if (end === null) {\n end = range1.end;\n }\n else {\n end = new Date(Math.min(end.valueOf(), range1.end.valueOf()));\n }\n }\n if (start === null || end === null || start < end) {\n newRange = { start, end };\n }\n return newRange;\n}\nfunction rangesEqual(range0, range1) {\n return (range0.start === null ? null : range0.start.valueOf()) === (range1.start === null ? null : range1.start.valueOf()) &&\n (range0.end === null ? null : range0.end.valueOf()) === (range1.end === null ? null : range1.end.valueOf());\n}\nfunction rangesIntersect(range0, range1) {\n return (range0.end === null || range1.start === null || range0.end > range1.start) &&\n (range0.start === null || range1.end === null || range0.start < range1.end);\n}\nfunction rangeContainsRange(outerRange, innerRange) {\n return (outerRange.start === null || (innerRange.start !== null && innerRange.start >= outerRange.start)) &&\n (outerRange.end === null || (innerRange.end !== null && innerRange.end <= outerRange.end));\n}\nfunction rangeContainsMarker(range, date) {\n return (range.start === null || date >= range.start) &&\n (range.end === null || date < range.end);\n}\n// If the given date is not within the given range, move it inside.\n// (If it's past the end, make it one millisecond before the end).\nfunction constrainMarkerToRange(date, range) {\n if (range.start != null && date < range.start) {\n return range.start;\n }\n if (range.end != null && date >= range.end) {\n return new Date(range.end.valueOf() - 1);\n }\n return date;\n}\n\nfunction getDateMeta(date, todayRange, nowDate, dateProfile) {\n return {\n dow: date.getUTCDay(),\n isDisabled: Boolean(dateProfile && !rangeContainsMarker(dateProfile.activeRange, date)),\n isOther: Boolean(dateProfile && !rangeContainsMarker(dateProfile.currentRange, date)),\n isToday: Boolean(todayRange && rangeContainsMarker(todayRange, date)),\n isPast: Boolean(nowDate ? (date < nowDate) : todayRange ? (date < todayRange.start) : false),\n isFuture: Boolean(nowDate ? (date > nowDate) : todayRange ? (date >= todayRange.end) : false),\n };\n}\nfunction getDayClassNames(meta, theme) {\n let classNames = [\n 'fc-day',\n `fc-day-${DAY_IDS[meta.dow]}`,\n ];\n if (meta.isDisabled) {\n classNames.push('fc-day-disabled');\n }\n else {\n if (meta.isToday) {\n classNames.push('fc-day-today');\n classNames.push(theme.getClass('today'));\n }\n if (meta.isPast) {\n classNames.push('fc-day-past');\n }\n if (meta.isFuture) {\n classNames.push('fc-day-future');\n }\n if (meta.isOther) {\n classNames.push('fc-day-other');\n }\n }\n return classNames;\n}\nfunction getSlotClassNames(meta, theme) {\n let classNames = [\n 'fc-slot',\n `fc-slot-${DAY_IDS[meta.dow]}`,\n ];\n if (meta.isDisabled) {\n classNames.push('fc-slot-disabled');\n }\n else {\n if (meta.isToday) {\n classNames.push('fc-slot-today');\n classNames.push(theme.getClass('today'));\n }\n if (meta.isPast) {\n classNames.push('fc-slot-past');\n }\n if (meta.isFuture) {\n classNames.push('fc-slot-future');\n }\n }\n return classNames;\n}\n\nconst DAY_FORMAT = createFormatter({ year: 'numeric', month: 'long', day: 'numeric' });\nconst WEEK_FORMAT = createFormatter({ week: 'long' });\nfunction buildNavLinkAttrs(context, dateMarker, viewType = 'day', isTabbable = true) {\n const { dateEnv, options, calendarApi } = context;\n let dateStr = dateEnv.format(dateMarker, viewType === 'week' ? WEEK_FORMAT : DAY_FORMAT);\n if (options.navLinks) {\n let zonedDate = dateEnv.toDate(dateMarker);\n const handleInteraction = (ev) => {\n let customAction = viewType === 'day' ? options.navLinkDayClick :\n viewType === 'week' ? options.navLinkWeekClick : null;\n if (typeof customAction === 'function') {\n customAction.call(calendarApi, dateEnv.toDate(dateMarker), ev);\n }\n else {\n if (typeof customAction === 'string') {\n viewType = customAction;\n }\n calendarApi.zoomTo(dateMarker, viewType);\n }\n };\n return Object.assign({ title: formatWithOrdinals(options.navLinkHint, [dateStr, zonedDate], dateStr), 'data-navlink': '' }, (isTabbable\n ? createAriaClickAttrs(handleInteraction)\n : { onClick: handleInteraction }));\n }\n return { 'aria-label': dateStr };\n}\n\nlet _isRtlScrollbarOnLeft = null;\nfunction getIsRtlScrollbarOnLeft() {\n if (_isRtlScrollbarOnLeft === null) {\n _isRtlScrollbarOnLeft = computeIsRtlScrollbarOnLeft();\n }\n return _isRtlScrollbarOnLeft;\n}\nfunction computeIsRtlScrollbarOnLeft() {\n let outerEl = document.createElement('div');\n applyStyle(outerEl, {\n position: 'absolute',\n top: -1000,\n left: 0,\n border: 0,\n padding: 0,\n overflow: 'scroll',\n direction: 'rtl',\n });\n outerEl.innerHTML = '<div></div>';\n document.body.appendChild(outerEl);\n let innerEl = outerEl.firstChild;\n let res = innerEl.getBoundingClientRect().left > outerEl.getBoundingClientRect().left;\n removeElement(outerEl);\n return res;\n}\n\nlet _scrollbarWidths;\nfunction getScrollbarWidths() {\n if (!_scrollbarWidths) {\n _scrollbarWidths = computeScrollbarWidths();\n }\n return _scrollbarWidths;\n}\nfunction computeScrollbarWidths() {\n let el = document.createElement('div');\n el.style.overflow = 'scroll';\n el.style.position = 'absolute';\n el.style.top = '-9999px';\n el.style.left = '-9999px';\n document.body.appendChild(el);\n let res = computeScrollbarWidthsForEl(el);\n document.body.removeChild(el);\n return res;\n}\n// WARNING: will include border\nfunction computeScrollbarWidthsForEl(el) {\n return {\n x: el.offsetHeight - el.clientHeight,\n y: el.offsetWidth - el.clientWidth,\n };\n}\n\nfunction computeEdges(el, getPadding = false) {\n let computedStyle = window.getComputedStyle(el);\n let borderLeft = parseInt(computedStyle.borderLeftWidth, 10) || 0;\n let borderRight = parseInt(computedStyle.borderRightWidth, 10) || 0;\n let borderTop = parseInt(computedStyle.borderTopWidth, 10) || 0;\n let borderBottom = parseInt(computedStyle.borderBottomWidth, 10) || 0;\n let badScrollbarWidths = computeScrollbarWidthsForEl(el); // includes border!\n let scrollbarLeftRight = badScrollbarWidths.y - borderLeft - borderRight;\n let scrollbarBottom = badScrollbarWidths.x - borderTop - borderBottom;\n let res = {\n borderLeft,\n borderRight,\n borderTop,\n borderBottom,\n scrollbarBottom,\n scrollbarLeft: 0,\n scrollbarRight: 0,\n };\n if (getIsRtlScrollbarOnLeft() && computedStyle.direction === 'rtl') { // is the scrollbar on the left side?\n res.scrollbarLeft = scrollbarLeftRight;\n }\n else {\n res.scrollbarRight = scrollbarLeftRight;\n }\n if (getPadding) {\n res.paddingLeft = parseInt(computedStyle.paddingLeft, 10) || 0;\n res.paddingRight = parseInt(computedStyle.paddingRight, 10) || 0;\n res.paddingTop = parseInt(computedStyle.paddingTop, 10) || 0;\n res.paddingBottom = parseInt(computedStyle.paddingBottom, 10) || 0;\n }\n return res;\n}\nfunction computeInnerRect(el, goWithinPadding = false, doFromWindowViewport) {\n let outerRect = doFromWindowViewport ? el.getBoundingClientRect() : computeRect(el);\n let edges = computeEdges(el, goWithinPadding);\n let res = {\n left: outerRect.left + edges.borderLeft + edges.scrollbarLeft,\n right: outerRect.right - edges.borderRight - edges.scrollbarRight,\n top: outerRect.top + edges.borderTop,\n bottom: outerRect.bottom - edges.borderBottom - edges.scrollbarBottom,\n };\n if (goWithinPadding) {\n res.left += edges.paddingLeft;\n res.right -= edges.paddingRight;\n res.top += edges.paddingTop;\n res.bottom -= edges.paddingBottom;\n }\n return res;\n}\nfunction computeRect(el) {\n let rect = el.getBoundingClientRect();\n return {\n left: rect.left + window.pageXOffset,\n top: rect.top + window.pageYOffset,\n right: rect.right + window.pageXOffset,\n bottom: rect.bottom + window.pageYOffset,\n };\n}\nfunction computeClippedClientRect(el) {\n let clippingParents = getClippingParents(el);\n let rect = el.getBoundingClientRect();\n for (let clippingParent of clippingParents) {\n let intersection = intersectRects(rect, clippingParent.getBoundingClientRect());\n if (intersection) {\n rect = intersection;\n }\n else {\n return null;\n }\n }\n return rect;\n}\n// does not return window\nfunction getClippingParents(el) {\n let parents = [];\n while (el instanceof HTMLElement) { // will stop when gets to document or null\n let computedStyle = window.getComputedStyle(el);\n if (computedStyle.position === 'fixed') {\n break;\n }\n if ((/(auto|scroll)/).test(computedStyle.overflow + computedStyle.overflowY + computedStyle.overflowX)) {\n parents.push(el);\n }\n el = el.parentNode;\n }\n return parents;\n}\n\n/*\ngiven a function that resolves a result asynchronously.\nthe function can either call passed-in success and failure callbacks,\nor it can return a promise.\nif you need to pass additional params to func, bind them first.\n*/\nfunction unpromisify(func, normalizedSuccessCallback, normalizedFailureCallback) {\n // guard against success/failure callbacks being called more than once\n // and guard against a promise AND callback being used together.\n let isResolved = false;\n let wrappedSuccess = function (res) {\n if (!isResolved) {\n isResolved = true;\n normalizedSuccessCallback(res);\n }\n };\n let wrappedFailure = function (error) {\n if (!isResolved) {\n isResolved = true;\n normalizedFailureCallback(error);\n }\n };\n let res = func(wrappedSuccess, wrappedFailure);\n if (res && typeof res.then === 'function') {\n res.then(wrappedSuccess, wrappedFailure);\n }\n}\n\nclass Emitter {\n constructor() {\n this.handlers = {};\n this.thisContext = null;\n }\n setThisContext(thisContext) {\n this.thisContext = thisContext;\n }\n setOptions(options) {\n this.options = options;\n }\n on(type, handler) {\n addToHash(this.handlers, type, handler);\n }\n off(type, handler) {\n removeFromHash(this.handlers, type, handler);\n }\n trigger(type, ...args) {\n let attachedHandlers = this.handlers[type] || [];\n let optionHandler = this.options && this.options[type];\n let handlers = [].concat(optionHandler || [], attachedHandlers);\n for (let handler of handlers) {\n handler.apply(this.thisContext, args);\n }\n }\n hasHandlers(type) {\n return Boolean((this.handlers[type] && this.handlers[type].length) ||\n (this.options && this.options[type]));\n }\n}\nfunction addToHash(hash, type, handler) {\n (hash[type] || (hash[type] = []))\n .push(handler);\n}\nfunction removeFromHash(hash, type, handler) {\n if (handler) {\n if (hash[type]) {\n hash[type] = hash[type].filter((func) => func !== handler);\n }\n }\n else {\n delete hash[type]; // remove all handler funcs for this type\n }\n}\n\n/*\nRecords offset information for a set of elements, relative to an origin element.\nCan record the left/right OR the top/bottom OR both.\nProvides methods for querying the cache by position.\n*/\nclass PositionCache {\n constructor(originEl, els, isHorizontal, isVertical) {\n this.els = els;\n let originClientRect = this.originClientRect = originEl.getBoundingClientRect(); // relative to viewport top-left\n if (isHorizontal) {\n this.buildElHorizontals(originClientRect.left);\n }\n if (isVertical) {\n this.buildElVerticals(originClientRect.top);\n }\n }\n // Populates the left/right internal coordinate arrays\n buildElHorizontals(originClientLeft) {\n let lefts = [];\n let rights = [];\n for (let el of this.els) {\n let rect = el.getBoundingClientRect();\n lefts.push(rect.left - originClientLeft);\n rights.push(rect.right - originClientLeft);\n }\n this.lefts = lefts;\n this.rights = rights;\n }\n // Populates the top/bottom internal coordinate arrays\n buildElVerticals(originClientTop) {\n let tops = [];\n let bottoms = [];\n for (let el of this.els) {\n let rect = el.getBoundingClientRect();\n tops.push(rect.top - originClientTop);\n bottoms.push(rect.bottom - originClientTop);\n }\n this.tops = tops;\n this.bottoms = bottoms;\n }\n // Given a left offset (from document left), returns the index of the el that it horizontally intersects.\n // If no intersection is made, returns undefined.\n leftToIndex(leftPosition) {\n let { lefts, rights } = this;\n let len = lefts.length;\n let i;\n for (i = 0; i < len; i += 1) {\n if (leftPosition >= lefts[i] && leftPosition < rights[i]) {\n return i;\n }\n }\n return undefined; // TODO: better\n }\n // Given a top offset (from document top), returns the index of the el that it vertically intersects.\n // If no intersection is made, returns undefined.\n topToIndex(topPosition) {\n let { tops, bottoms } = this;\n let len = tops.length;\n let i;\n for (i = 0; i < len; i += 1) {\n if (topPosition >= tops[i] && topPosition < bottoms[i]) {\n return i;\n }\n }\n return undefined; // TODO: better\n }\n // Gets the width of the element at the given index\n getWidth(leftIndex) {\n return this.rights[leftIndex] - this.lefts[leftIndex];\n }\n // Gets the height of the element at the given index\n getHeight(topIndex) {\n return this.bottoms[topIndex] - this.tops[topIndex];\n }\n}\n\n/* eslint max-classes-per-file: \"off\" */\n/*\nAn object for getting/setting scroll-related information for an element.\nInternally, this is done very differently for window versus DOM element,\nso this object serves as a common interface.\n*/\nclass ScrollController {\n getMaxScrollTop() {\n return this.getScrollHeight() - this.getClientHeight();\n }\n getMaxScrollLeft() {\n return this.getScrollWidth() - this.getClientWidth();\n }\n canScrollVertically() {\n return this.getMaxScrollTop() > 0;\n }\n canScrollHorizontally() {\n return this.getMaxScrollLeft() > 0;\n }\n canScrollUp() {\n return this.getScrollTop() > 0;\n }\n canScrollDown() {\n return this.getScrollTop() < this.getMaxScrollTop();\n }\n canScrollLeft() {\n return this.getScrollLeft() > 0;\n }\n canScrollRight() {\n return this.getScrollLeft() < this.getMaxScrollLeft();\n }\n}\nclass ElementScrollController extends ScrollController {\n constructor(el) {\n super();\n this.el = el;\n }\n getScrollTop() {\n return this.el.scrollTop;\n }\n getScrollLeft() {\n return this.el.scrollLeft;\n }\n setScrollTop(top) {\n this.el.scrollTop = top;\n }\n setScrollLeft(left) {\n this.el.scrollLeft = left;\n }\n getScrollWidth() {\n return this.el.scrollWidth;\n }\n getScrollHeight() {\n return this.el.scrollHeight;\n }\n getClientHeight() {\n return this.el.clientHeight;\n }\n getClientWidth() {\n return this.el.clientWidth;\n }\n}\nclass WindowScrollController extends ScrollController {\n getScrollTop() {\n return window.pageYOffset;\n }\n getScrollLeft() {\n return window.pageXOffset;\n }\n setScrollTop(n) {\n window.scroll(window.pageXOffset, n);\n }\n setScrollLeft(n) {\n window.scroll(n, window.pageYOffset);\n }\n getScrollWidth() {\n return document.documentElement.scrollWidth;\n }\n getScrollHeight() {\n return document.documentElement.scrollHeight;\n }\n getClientHeight() {\n return document.documentElement.clientHeight;\n }\n getClientWidth() {\n return document.documentElement.clientWidth;\n }\n}\n\nclass Theme {\n constructor(calendarOptions) {\n if (this.iconOverrideOption) {\n this.setIconOverride(calendarOptions[this.iconOverrideOption]);\n }\n }\n setIconOverride(iconOverrideHash) {\n let iconClassesCopy;\n let buttonName;\n if (typeof iconOverrideHash === 'object' && iconOverrideHash) { // non-null object\n iconClassesCopy = Object.assign({}, this.iconClasses);\n for (buttonName in iconOverrideHash) {\n iconClassesCopy[buttonName] = this.applyIconOverridePrefix(iconOverrideHash[buttonName]);\n }\n this.iconClasses = iconClassesCopy;\n }\n else if (iconOverrideHash === false) {\n this.iconClasses = {};\n }\n }\n applyIconOverridePrefix(className) {\n let prefix = this.iconOverridePrefix;\n if (prefix && className.indexOf(prefix) !== 0) { // if not already present\n className = prefix + className;\n }\n return className;\n }\n getClass(key) {\n return this.classes[key] || '';\n }\n getIconClass(buttonName, isRtl) {\n let className;\n if (isRtl && this.rtlIconClasses) {\n className = this.rtlIconClasses[buttonName] || this.iconClasses[buttonName];\n }\n else {\n className = this.iconClasses[buttonName];\n }\n if (className) {\n return `${this.baseIconClass} ${className}`;\n }\n return '';\n }\n getCustomButtonIconClass(customButtonProps) {\n let className;\n if (this.iconOverrideCustomButtonOption) {\n className = customButtonProps[this.iconOverrideCustomButtonOption];\n if (className) {\n return `${this.baseIconClass} ${this.applyIconOverridePrefix(className)}`;\n }\n }\n return '';\n }\n}\nTheme.prototype.classes = {};\nTheme.prototype.iconClasses = {};\nTheme.prototype.baseIconClass = '';\nTheme.prototype.iconOverridePrefix = '';\n\n/*\nNOTE: this can be a public API, especially createElement for hooks.\nSee examples/typescript-scheduler/src/index.ts\n*/\nfunction flushSync(runBeforeFlush) {\n runBeforeFlush();\n let oldDebounceRendering = preact.options.debounceRendering; // orig\n let callbackQ = [];\n function execCallbackSync(callback) {\n callbackQ.push(callback);\n }\n preact.options.debounceRendering = execCallbackSync;\n preact.render(preact.createElement(FakeComponent, {}), document.createElement('div'));\n while (callbackQ.length) {\n callbackQ.shift()();\n }\n preact.options.debounceRendering = oldDebounceRendering;\n}\nclass FakeComponent extends preact.Component {\n render() { return preact.createElement('div', {}); }\n componentDidMount() { this.setState({}); }\n}\n// TODO: use preact/compat instead?\nfunction createContext(defaultValue) {\n let ContextType = preact.createContext(defaultValue);\n let origProvider = ContextType.Provider;\n ContextType.Provider = function () {\n let isNew = !this.getChildContext;\n let children = origProvider.apply(this, arguments); // eslint-disable-line prefer-rest-params\n if (isNew) {\n let subs = [];\n this.shouldComponentUpdate = (_props) => {\n if (this.props.value !== _props.value) {\n subs.forEach((c) => {\n c.context = _props.value;\n c.forceUpdate();\n });\n }\n };\n this.sub = (c) => {\n subs.push(c);\n let old = c.componentWillUnmount;\n c.componentWillUnmount = () => {\n subs.splice(subs.indexOf(c), 1);\n old && old.call(c);\n };\n };\n }\n return children;\n };\n return ContextType;\n}\n\nclass ScrollResponder {\n constructor(execFunc, emitter, scrollTime, scrollTimeReset) {\n this.execFunc = execFunc;\n this.emitter = emitter;\n this.scrollTime = scrollTime;\n this.scrollTimeReset = scrollTimeReset;\n this.handleScrollRequest = (request) => {\n this.queuedRequest = Object.assign({}, this.queuedRequest || {}, request);\n this.drain();\n };\n emitter.on('_scrollRequest', this.handleScrollRequest);\n this.fireInitialScroll();\n }\n detach() {\n this.emitter.off('_scrollRequest', this.handleScrollRequest);\n }\n update(isDatesNew) {\n if (isDatesNew && this.scrollTimeReset) {\n this.fireInitialScroll(); // will drain\n }\n else {\n this.drain();\n }\n }\n fireInitialScroll() {\n this.handleScrollRequest({\n time: this.scrollTime,\n });\n }\n drain() {\n if (this.queuedRequest && this.execFunc(this.queuedRequest)) {\n this.queuedRequest = null;\n }\n }\n}\n\nconst ViewContextType = createContext({}); // for Components\nfunction buildViewContext(viewSpec, viewApi, viewOptions, dateProfileGenerator, dateEnv, theme, pluginHooks, dispatch, getCurrentData, emitter, calendarApi, registerInteractiveComponent, unregisterInteractiveComponent) {\n return {\n dateEnv,\n options: viewOptions,\n pluginHooks,\n emitter,\n dispatch,\n getCurrentData,\n calendarApi,\n viewSpec,\n viewApi,\n dateProfileGenerator,\n theme,\n isRtl: viewOptions.direction === 'rtl',\n addResizeHandler(handler) {\n emitter.on('_resize', handler);\n },\n removeResizeHandler(handler) {\n emitter.off('_resize', handler);\n },\n createScrollResponder(execFunc) {\n return new ScrollResponder(execFunc, emitter, createDuration(viewOptions.scrollTime), viewOptions.scrollTimeReset);\n },\n registerInteractiveComponent,\n unregisterInteractiveComponent,\n };\n}\n\n/* eslint max-classes-per-file: off */\nclass PureComponent extends Component {\n shouldComponentUpdate(nextProps, nextState) {\n if (this.debug) {\n // eslint-disable-next-line no-console\n console.log(getUnequalProps(nextProps, this.props), getUnequalProps(nextState, this.state));\n }\n return !compareObjs(this.props, nextProps, this.propEquality) ||\n !compareObjs(this.state, nextState, this.stateEquality);\n }\n // HACK for freakin' React StrictMode\n safeSetState(newState) {\n if (!compareObjs(this.state, Object.assign(Object.assign({}, this.state), newState), this.stateEquality)) {\n this.setState(newState);\n }\n }\n}\nPureComponent.addPropsEquality = addPropsEquality;\nPureComponent.addStateEquality = addStateEquality;\nPureComponent.contextType = ViewContextType;\nPureComponent.prototype.propEquality = {};\nPureComponent.prototype.stateEquality = {};\nclass BaseComponent extends PureComponent {\n}\nBaseComponent.contextType = ViewContextType;\nfunction addPropsEquality(propEquality) {\n let hash = Object.create(this.prototype.propEquality);\n Object.assign(hash, propEquality);\n this.prototype.propEquality = hash;\n}\nfunction addStateEquality(stateEquality) {\n let hash = Object.create(this.prototype.stateEquality);\n Object.assign(hash, stateEquality);\n this.prototype.stateEquality = hash;\n}\n// use other one\nfunction setRef(ref, current) {\n if (typeof ref === 'function') {\n ref(current);\n }\n else if (ref) {\n // see https://github.com/facebook/react/issues/13029\n ref.current = current;\n }\n}\n\n/*\nan INTERACTABLE date component\n\nPURPOSES:\n- hook up to fg, fill, and mirror renderers\n- interface for dragging and hits\n*/\nclass DateComponent extends BaseComponent {\n constructor() {\n super(...arguments);\n this.uid = guid();\n }\n // Hit System\n // -----------------------------------------------------------------------------------------------------------------\n prepareHits() {\n }\n queryHit(positionLeft, positionTop, elWidth, elHeight) {\n return null; // this should be abstract\n }\n // Pointer Interaction Utils\n // -----------------------------------------------------------------------------------------------------------------\n isValidSegDownEl(el) {\n return !this.props.eventDrag && // HACK\n !this.props.eventResize && // HACK\n !elementClosest(el, '.fc-event-mirror');\n }\n isValidDateDownEl(el) {\n return !elementClosest(el, '.fc-event:not(.fc-bg-event)') &&\n !elementClosest(el, '.fc-more-link') && // a \"more..\" link\n !elementClosest(el, 'a[data-navlink]') && // a clickable nav link\n !elementClosest(el, '.fc-popover'); // hack\n }\n}\n\nfunction reduceCurrentDate(currentDate, action) {\n switch (action.type) {\n case 'CHANGE_DATE':\n return action.dateMarker;\n default:\n return currentDate;\n }\n}\nfunction getInitialDate(options, dateEnv) {\n let initialDateInput = options.initialDate;\n // compute the initial ambig-timezone date\n if (initialDateInput != null) {\n return dateEnv.createMarker(initialDateInput);\n }\n return getNow(options.now, dateEnv); // getNow already returns unzoned\n}\nfunction getNow(nowInput, dateEnv) {\n if (typeof nowInput === 'function') {\n nowInput = nowInput();\n }\n if (nowInput == null) {\n return dateEnv.createNowMarker();\n }\n return dateEnv.createMarker(nowInput);\n}\n\nclass DateProfileGenerator {\n constructor(props) {\n this.props = props;\n this.nowDate = getNow(props.nowInput, props.dateEnv);\n this.initHiddenDays();\n }\n /* Date Range Computation\n ------------------------------------------------------------------------------------------------------------------*/\n // Builds a structure with info about what the dates/ranges will be for the \"prev\" view.\n buildPrev(currentDateProfile, currentDate, forceToValid) {\n let { dateEnv } = this.props;\n let prevDate = dateEnv.subtract(dateEnv.startOf(currentDate, currentDateProfile.currentRangeUnit), // important for start-of-month\n currentDateProfile.dateIncrement);\n return this.build(prevDate, -1, forceToValid);\n }\n // Builds a structure with info about what the dates/ranges will be for the \"next\" view.\n buildNext(currentDateProfile, currentDate, forceToValid) {\n let { dateEnv } = this.props;\n let nextDate = dateEnv.add(dateEnv.startOf(currentDate, currentDateProfile.currentRangeUnit), // important for start-of-month\n currentDateProfile.dateIncrement);\n return this.build(nextDate, 1, forceToValid);\n }\n // Builds a structure holding dates/ranges for rendering around the given date.\n // Optional direction param indicates whether the date is being incremented/decremented\n // from its previous value. decremented = -1, incremented = 1 (default).\n build(currentDate, direction, forceToValid = true) {\n let { props } = this;\n let validRange;\n let currentInfo;\n let isRangeAllDay;\n let renderRange;\n let activeRange;\n let isValid;\n validRange = this.buildValidRange();\n validRange = this.trimHiddenDays(validRange);\n if (forceToValid) {\n currentDate = constrainMarkerToRange(currentDate, validRange);\n }\n currentInfo = this.buildCurrentRangeInfo(currentDate, direction);\n isRangeAllDay = /^(year|month|week|day)$/.test(currentInfo.unit);\n renderRange = this.buildRenderRange(this.trimHiddenDays(currentInfo.range), currentInfo.unit, isRangeAllDay);\n renderRange = this.trimHiddenDays(renderRange);\n activeRange = renderRange;\n if (!props.showNonCurrentDates) {\n activeRange = intersectRanges(activeRange, currentInfo.range);\n }\n activeRange = this.adjustActiveRange(activeRange);\n activeRange = intersectRanges(activeRange, validRange); // might return null\n // it's invalid if the originally requested date is not contained,\n // or if the range is completely outside of the valid range.\n isValid = rangesIntersect(currentInfo.range, validRange);\n return {\n // constraint for where prev/next operations can go and where events can be dragged/resized to.\n // an object with optional start and end properties.\n validRange,\n // range the view is formally responsible for.\n // for example, a month view might have 1st-31st, excluding padded dates\n currentRange: currentInfo.range,\n // name of largest unit being displayed, like \"month\" or \"week\"\n currentRangeUnit: currentInfo.unit,\n isRangeAllDay,\n // dates that display events and accept drag-n-drop\n // will be `null` if no dates accept events\n activeRange,\n // date range with a rendered skeleton\n // includes not-active days that need some sort of DOM\n renderRange,\n // Duration object that denotes the first visible time of any given day\n slotMinTime: props.slotMinTime,\n // Duration object that denotes the exclusive visible end time of any given day\n slotMaxTime: props.slotMaxTime,\n isValid,\n // how far the current date will move for a prev/next operation\n dateIncrement: this.buildDateIncrement(currentInfo.duration),\n // pass a fallback (might be null) ^\n };\n }\n // Builds an object with optional start/end properties.\n // Indicates the minimum/maximum dates to display.\n // not responsible for trimming hidden days.\n buildValidRange() {\n let input = this.props.validRangeInput;\n let simpleInput = typeof input === 'function'\n ? input.call(this.props.calendarApi, this.nowDate)\n : input;\n return this.refineRange(simpleInput) ||\n { start: null, end: null }; // completely open-ended\n }\n // Builds a structure with info about the \"current\" range, the range that is\n // highlighted as being the current month for example.\n // See build() for a description of `direction`.\n // Guaranteed to have `range` and `unit` properties. `duration` is optional.\n buildCurrentRangeInfo(date, direction) {\n let { props } = this;\n let duration = null;\n let unit = null;\n let range = null;\n let dayCount;\n if (props.duration) {\n duration = props.duration;\n unit = props.durationUnit;\n range = this.buildRangeFromDuration(date, direction, duration, unit);\n }\n else if ((dayCount = this.props.dayCount)) {\n unit = 'day';\n range = this.buildRangeFromDayCount(date, direction, dayCount);\n }\n else if ((range = this.buildCustomVisibleRange(date))) {\n unit = props.dateEnv.greatestWholeUnit(range.start, range.end).unit;\n }\n else {\n duration = this.getFallbackDuration();\n unit = greatestDurationDenominator(duration).unit;\n range = this.buildRangeFromDuration(date, direction, duration, unit);\n }\n return { duration, unit, range };\n }\n getFallbackDuration() {\n return createDuration({ day: 1 });\n }\n // Returns a new activeRange to have time values (un-ambiguate)\n // slotMinTime or slotMaxTime causes the range to expand.\n adjustActiveRange(range) {\n let { dateEnv, usesMinMaxTime, slotMinTime, slotMaxTime } = this.props;\n let { start, end } = range;\n if (usesMinMaxTime) {\n // expand active range if slotMinTime is negative (why not when positive?)\n if (asRoughDays(slotMinTime) < 0) {\n start = startOfDay(start); // necessary?\n start = dateEnv.add(start, slotMinTime);\n }\n // expand active range if slotMaxTime is beyond one day (why not when negative?)\n if (asRoughDays(slotMaxTime) > 1) {\n end = startOfDay(end); // necessary?\n end = addDays(end, -1);\n end = dateEnv.add(end, slotMaxTime);\n }\n }\n return { start, end };\n }\n // Builds the \"current\" range when it is specified as an explicit duration.\n // `unit` is the already-computed greatestDurationDenominator unit of duration.\n buildRangeFromDuration(date, direction, duration, unit) {\n let { dateEnv, dateAlignment } = this.props;\n let start;\n let end;\n let res;\n // compute what the alignment should be\n if (!dateAlignment) {\n let { dateIncrement } = this.props;\n if (dateIncrement) {\n // use the smaller of the two units\n if (asRoughMs(dateIncrement) < asRoughMs(duration)) {\n dateAlignment = greatestDurationDenominator(dateIncrement).unit;\n }\n else {\n dateAlignment = unit;\n }\n }\n else {\n dateAlignment = unit;\n }\n }\n // if the view displays a single day or smaller\n if (asRoughDays(duration) <= 1) {\n if (this.isHiddenDay(start)) {\n start = this.skipHiddenDays(start, direction);\n start = startOfDay(start);\n }\n }\n function computeRes() {\n start = dateEnv.startOf(date, dateAlignment);\n end = dateEnv.add(start, duration);\n res = { start, end };\n }\n computeRes();\n // if range is completely enveloped by hidden days, go past the hidden days\n if (!this.trimHiddenDays(res)) {\n date = this.skipHiddenDays(date, direction);\n computeRes();\n }\n return res;\n }\n // Builds the \"current\" range when a dayCount is specified.\n buildRangeFromDayCount(date, direction, dayCount) {\n let { dateEnv, dateAlignment } = this.props;\n let runningCount = 0;\n let start = date;\n let end;\n if (dateAlignment) {\n start = dateEnv.startOf(start, dateAlignment);\n }\n start = startOfDay(start);\n start = this.skipHiddenDays(start, direction);\n end = start;\n do {\n end = addDays(end, 1);\n if (!this.isHiddenDay(end)) {\n runningCount += 1;\n }\n } while (runningCount < dayCount);\n return { start, end };\n }\n // Builds a normalized range object for the \"visible\" range,\n // which is a way to define the currentRange and activeRange at the same time.\n buildCustomVisibleRange(date) {\n let { props } = this;\n let input = props.visibleRangeInput;\n let simpleInput = typeof input === 'function'\n ? input.call(props.calendarApi, props.dateEnv.toDate(date))\n : input;\n let range = this.refineRange(simpleInput);\n if (range && (range.start == null || range.end == null)) {\n return null;\n }\n return range;\n }\n // Computes the range that will represent the element/cells for *rendering*,\n // but which may have voided days/times.\n // not responsible for trimming hidden days.\n buildRenderRange(currentRange, currentRangeUnit, isRangeAllDay) {\n return currentRange;\n }\n // Compute the duration value that should be added/substracted to the current date\n // when a prev/next operation happens.\n buildDateIncrement(fallback) {\n let { dateIncrement } = this.props;\n let customAlignment;\n if (dateIncrement) {\n return dateIncrement;\n }\n if ((customAlignment = this.props.dateAlignment)) {\n return createDuration(1, customAlignment);\n }\n if (fallback) {\n return fallback;\n }\n return createDuration({ days: 1 });\n }\n refineRange(rangeInput) {\n if (rangeInput) {\n let range = parseRange(rangeInput, this.props.dateEnv);\n if (range) {\n range = computeVisibleDayRange(range);\n }\n return range;\n }\n return null;\n }\n /* Hidden Days\n ------------------------------------------------------------------------------------------------------------------*/\n // Initializes internal variables related to calculating hidden days-of-week\n initHiddenDays() {\n let hiddenDays = this.props.hiddenDays || []; // array of day-of-week indices that are hidden\n let isHiddenDayHash = []; // is the day-of-week hidden? (hash with day-of-week-index -> bool)\n let dayCnt = 0;\n let i;\n if (this.props.weekends === false) {\n hiddenDays.push(0, 6); // 0=sunday, 6=saturday\n }\n for (i = 0; i < 7; i += 1) {\n if (!(isHiddenDayHash[i] = hiddenDays.indexOf(i) !== -1)) {\n dayCnt += 1;\n }\n }\n if (!dayCnt) {\n throw new Error('invalid hiddenDays'); // all days were hidden? bad.\n }\n this.isHiddenDayHash = isHiddenDayHash;\n }\n // Remove days from the beginning and end of the range that are computed as hidden.\n // If the whole range is trimmed off, returns null\n trimHiddenDays(range) {\n let { start, end } = range;\n if (start) {\n start = this.skipHiddenDays(start);\n }\n if (end) {\n end = this.skipHiddenDays(end, -1, true);\n }\n if (start == null || end == null || start < end) {\n return { start, end };\n }\n return null;\n }\n // Is the current day hidden?\n // `day` is a day-of-week index (0-6), or a Date (used for UTC)\n isHiddenDay(day) {\n if (day instanceof Date) {\n day = day.getUTCDay();\n }\n return this.isHiddenDayHash[day];\n }\n // Incrementing the current day until it is no longer a hidden day, returning a copy.\n // DOES NOT CONSIDER validRange!\n // If the initial value of `date` is not a hidden day, don't do anything.\n // Pass `isExclusive` as `true` if you are dealing with an end date.\n // `inc` defaults to `1` (increment one day forward each time)\n skipHiddenDays(date, inc = 1, isExclusive = false) {\n while (this.isHiddenDayHash[(date.getUTCDay() + (isExclusive ? inc : 0) + 7) % 7]) {\n date = addDays(date, inc);\n }\n return date;\n }\n}\n\nfunction triggerDateSelect(selection, pev, context) {\n context.emitter.trigger('select', Object.assign(Object.assign({}, buildDateSpanApiWithContext(selection, context)), { jsEvent: pev ? pev.origEvent : null, view: context.viewApi || context.calendarApi.view }));\n}\nfunction triggerDateUnselect(pev, context) {\n context.emitter.trigger('unselect', {\n jsEvent: pev ? pev.origEvent : null,\n view: context.viewApi || context.calendarApi.view,\n });\n}\nfunction buildDateSpanApiWithContext(dateSpan, context) {\n let props = {};\n for (let transform of context.pluginHooks.dateSpanTransforms) {\n Object.assign(props, transform(dateSpan, context));\n }\n Object.assign(props, buildDateSpanApi(dateSpan, context.dateEnv));\n return props;\n}\n// Given an event's allDay status and start date, return what its fallback end date should be.\n// TODO: rename to computeDefaultEventEnd\nfunction getDefaultEventEnd(allDay, marker, context) {\n let { dateEnv, options } = context;\n let end = marker;\n if (allDay) {\n end = startOfDay(end);\n end = dateEnv.add(end, options.defaultAllDayEventDuration);\n }\n else {\n end = dateEnv.add(end, options.defaultTimedEventDuration);\n }\n return end;\n}\n\n// applies the mutation to ALL defs/instances within the event store\nfunction applyMutationToEventStore(eventStore, eventConfigBase, mutation, context) {\n let eventConfigs = compileEventUis(eventStore.defs, eventConfigBase);\n let dest = createEmptyEventStore();\n for (let defId in eventStore.defs) {\n let def = eventStore.defs[defId];\n dest.defs[defId] = applyMutationToEventDef(def, eventConfigs[defId], mutation, context);\n }\n for (let instanceId in eventStore.instances) {\n let instance = eventStore.instances[instanceId];\n let def = dest.defs[instance.defId]; // important to grab the newly modified def\n dest.instances[instanceId] = applyMutationToEventInstance(instance, def, eventConfigs[instance.defId], mutation, context);\n }\n return dest;\n}\nfunction applyMutationToEventDef(eventDef, eventConfig, mutation, context) {\n let standardProps = mutation.standardProps || {};\n // if hasEnd has not been specified, guess a good value based on deltas.\n // if duration will change, there's no way the default duration will persist,\n // and thus, we need to mark the event as having a real end\n if (standardProps.hasEnd == null &&\n eventConfig.durationEditable &&\n (mutation.startDelta || mutation.endDelta)) {\n standardProps.hasEnd = true; // TODO: is this mutation okay?\n }\n let copy = Object.assign(Object.assign(Object.assign({}, eventDef), standardProps), { ui: Object.assign(Object.assign({}, eventDef.ui), standardProps.ui) });\n if (mutation.extendedProps) {\n copy.extendedProps = Object.assign(Object.assign({}, copy.extendedProps), mutation.extendedProps);\n }\n for (let applier of context.pluginHooks.eventDefMutationAppliers) {\n applier(copy, mutation, context);\n }\n if (!copy.hasEnd && context.options.forceEventDuration) {\n copy.hasEnd = true;\n }\n return copy;\n}\nfunction applyMutationToEventInstance(eventInstance, eventDef, // must first be modified by applyMutationToEventDef\neventConfig, mutation, context) {\n let { dateEnv } = context;\n let forceAllDay = mutation.standardProps && mutation.standardProps.allDay === true;\n let clearEnd = mutation.standardProps && mutation.standardProps.hasEnd === false;\n let copy = Object.assign({}, eventInstance);\n if (forceAllDay) {\n copy.range = computeAlignedDayRange(copy.range);\n }\n if (mutation.datesDelta && eventConfig.startEditable) {\n copy.range = {\n start: dateEnv.add(copy.range.start, mutation.datesDelta),\n end: dateEnv.add(copy.range.end, mutation.datesDelta),\n };\n }\n if (mutation.startDelta && eventConfig.durationEditable) {\n copy.range = {\n start: dateEnv.add(copy.range.start, mutation.startDelta),\n end: copy.range.end,\n };\n }\n if (mutation.endDelta && eventConfig.durationEditable) {\n copy.range = {\n start: copy.range.start,\n end: dateEnv.add(copy.range.end, mutation.endDelta),\n };\n }\n if (clearEnd) {\n copy.range = {\n start: copy.range.start,\n end: getDefaultEventEnd(eventDef.allDay, copy.range.start, context),\n };\n }\n // in case event was all-day but the supplied deltas were not\n // better util for this?\n if (eventDef.allDay) {\n copy.range = {\n start: startOfDay(copy.range.start),\n end: startOfDay(copy.range.end),\n };\n }\n // handle invalid durations\n if (copy.range.end < copy.range.start) {\n copy.range.end = getDefaultEventEnd(eventDef.allDay, copy.range.start, context);\n }\n return copy;\n}\n\nclass EventSourceImpl {\n constructor(context, internalEventSource) {\n this.context = context;\n this.internalEventSource = internalEventSource;\n }\n remove() {\n this.context.dispatch({\n type: 'REMOVE_EVENT_SOURCE',\n sourceId: this.internalEventSource.sourceId,\n });\n }\n refetch() {\n this.context.dispatch({\n type: 'FETCH_EVENT_SOURCES',\n sourceIds: [this.internalEventSource.sourceId],\n isRefetch: true,\n });\n }\n get id() {\n return this.internalEventSource.publicId;\n }\n get url() {\n return this.internalEventSource.meta.url;\n }\n get format() {\n return this.internalEventSource.meta.format; // TODO: bad. not guaranteed\n }\n}\n\nclass EventImpl {\n // instance will be null if expressing a recurring event that has no current instances,\n // OR if trying to validate an incoming external event that has no dates assigned\n constructor(context, def, instance) {\n this._context = context;\n this._def = def;\n this._instance = instance || null;\n }\n /*\n TODO: make event struct more responsible for this\n */\n setProp(name, val) {\n if (name in EVENT_DATE_REFINERS) {\n console.warn('Could not set date-related prop \\'name\\'. Use one of the date-related methods instead.');\n // TODO: make proper aliasing system?\n }\n else if (name === 'id') {\n val = EVENT_NON_DATE_REFINERS[name](val);\n this.mutate({\n standardProps: { publicId: val }, // hardcoded internal name\n });\n }\n else if (name in EVENT_NON_DATE_REFINERS) {\n val = EVENT_NON_DATE_REFINERS[name](val);\n this.mutate({\n standardProps: { [name]: val },\n });\n }\n else if (name in EVENT_UI_REFINERS) {\n let ui = EVENT_UI_REFINERS[name](val);\n if (name === 'color') {\n ui = { backgroundColor: val, borderColor: val };\n }\n else if (name === 'editable') {\n ui = { startEditable: val, durationEditable: val };\n }\n else {\n ui = { [name]: val };\n }\n this.mutate({\n standardProps: { ui },\n });\n }\n else {\n console.warn(`Could not set prop '${name}'. Use setExtendedProp instead.`);\n }\n }\n setExtendedProp(name, val) {\n this.mutate({\n extendedProps: { [name]: val },\n });\n }\n setStart(startInput, options = {}) {\n let { dateEnv } = this._context;\n let start = dateEnv.createMarker(startInput);\n if (start && this._instance) { // TODO: warning if parsed bad\n let instanceRange = this._instance.range;\n let startDelta = diffDates(instanceRange.start, start, dateEnv, options.granularity); // what if parsed bad!?\n if (options.maintainDuration) {\n this.mutate({ datesDelta: startDelta });\n }\n else {\n this.mutate({ startDelta });\n }\n }\n }\n setEnd(endInput, options = {}) {\n let { dateEnv } = this._context;\n let end;\n if (endInput != null) {\n end = dateEnv.createMarker(endInput);\n if (!end) {\n return; // TODO: warning if parsed bad\n }\n }\n if (this._instance) {\n if (end) {\n let endDelta = diffDates(this._instance.range.end, end, dateEnv, options.granularity);\n this.mutate({ endDelta });\n }\n else {\n this.mutate({ standardProps: { hasEnd: false } });\n }\n }\n }\n setDates(startInput, endInput, options = {}) {\n let { dateEnv } = this._context;\n let standardProps = { allDay: options.allDay };\n let start = dateEnv.createMarker(startInput);\n let end;\n if (!start) {\n return; // TODO: warning if parsed bad\n }\n if (endInput != null) {\n end = dateEnv.createMarker(endInput);\n if (!end) { // TODO: warning if parsed bad\n return;\n }\n }\n if (this._instance) {\n let instanceRange = this._instance.range;\n // when computing the diff for an event being converted to all-day,\n // compute diff off of the all-day values the way event-mutation does.\n if (options.allDay === true) {\n instanceRange = computeAlignedDayRange(instanceRange);\n }\n let startDelta = diffDates(instanceRange.start, start, dateEnv, options.granularity);\n if (end) {\n let endDelta = diffDates(instanceRange.end, end, dateEnv, options.granularity);\n if (durationsEqual(startDelta, endDelta)) {\n this.mutate({ datesDelta: startDelta, standardProps });\n }\n else {\n this.mutate({ startDelta, endDelta, standardProps });\n }\n }\n else { // means \"clear the end\"\n standardProps.hasEnd = false;\n this.mutate({ datesDelta: startDelta, standardProps });\n }\n }\n }\n moveStart(deltaInput) {\n let delta = createDuration(deltaInput);\n if (delta) { // TODO: warning if parsed bad\n this.mutate({ startDelta: delta });\n }\n }\n moveEnd(deltaInput) {\n let delta = createDuration(deltaInput);\n if (delta) { // TODO: warning if parsed bad\n this.mutate({ endDelta: delta });\n }\n }\n moveDates(deltaInput) {\n let delta = createDuration(deltaInput);\n if (delta) { // TODO: warning if parsed bad\n this.mutate({ datesDelta: delta });\n }\n }\n setAllDay(allDay, options = {}) {\n let standardProps = { allDay };\n let { maintainDuration } = options;\n if (maintainDuration == null) {\n maintainDuration = this._context.options.allDayMaintainDuration;\n }\n if (this._def.allDay !== allDay) {\n standardProps.hasEnd = maintainDuration;\n }\n this.mutate({ standardProps });\n }\n formatRange(formatInput) {\n let { dateEnv } = this._context;\n let instance = this._instance;\n let formatter = createFormatter(formatInput);\n if (this._def.hasEnd) {\n return dateEnv.formatRange(instance.range.start, instance.range.end, formatter, {\n forcedStartTzo: instance.forcedStartTzo,\n forcedEndTzo: instance.forcedEndTzo,\n });\n }\n return dateEnv.format(instance.range.start, formatter, {\n forcedTzo: instance.forcedStartTzo,\n });\n }\n mutate(mutation) {\n let instance = this._instance;\n if (instance) {\n let def = this._def;\n let context = this._context;\n let { eventStore } = context.getCurrentData();\n let relevantEvents = getRelevantEvents(eventStore, instance.instanceId);\n let eventConfigBase = {\n '': {\n display: '',\n startEditable: true,\n durationEditable: true,\n constraints: [],\n overlap: null,\n allows: [],\n backgroundColor: '',\n borderColor: '',\n textColor: '',\n classNames: [],\n },\n };\n relevantEvents = applyMutationToEventStore(relevantEvents, eventConfigBase, mutation, context);\n let oldEvent = new EventImpl(context, def, instance); // snapshot\n this._def = relevantEvents.defs[def.defId];\n this._instance = relevantEvents.instances[instance.instanceId];\n context.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: relevantEvents,\n });\n context.emitter.trigger('eventChange', {\n oldEvent,\n event: this,\n relatedEvents: buildEventApis(relevantEvents, context, instance),\n revert() {\n context.dispatch({\n type: 'RESET_EVENTS',\n eventStore, // the ORIGINAL store\n });\n },\n });\n }\n }\n remove() {\n let context = this._context;\n let asStore = eventApiToStore(this);\n context.dispatch({\n type: 'REMOVE_EVENTS',\n eventStore: asStore,\n });\n context.emitter.trigger('eventRemove', {\n event: this,\n relatedEvents: [],\n revert() {\n context.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: asStore,\n });\n },\n });\n }\n get source() {\n let { sourceId } = this._def;\n if (sourceId) {\n return new EventSourceImpl(this._context, this._context.getCurrentData().eventSources[sourceId]);\n }\n return null;\n }\n get start() {\n return this._instance ?\n this._context.dateEnv.toDate(this._instance.range.start) :\n null;\n }\n get end() {\n return (this._instance && this._def.hasEnd) ?\n this._context.dateEnv.toDate(this._instance.range.end) :\n null;\n }\n get startStr() {\n let instance = this._instance;\n if (instance) {\n return this._context.dateEnv.formatIso(instance.range.start, {\n omitTime: this._def.allDay,\n forcedTzo: instance.forcedStartTzo,\n });\n }\n return '';\n }\n get endStr() {\n let instance = this._instance;\n if (instance && this._def.hasEnd) {\n return this._context.dateEnv.formatIso(instance.range.end, {\n omitTime: this._def.allDay,\n forcedTzo: instance.forcedEndTzo,\n });\n }\n return '';\n }\n // computable props that all access the def\n // TODO: find a TypeScript-compatible way to do this at scale\n get id() { return this._def.publicId; }\n get groupId() { return this._def.groupId; }\n get allDay() { return this._def.allDay; }\n get title() { return this._def.title; }\n get url() { return this._def.url; }\n get display() { return this._def.ui.display || 'auto'; } // bad. just normalize the type earlier\n get startEditable() { return this._def.ui.startEditable; }\n get durationEditable() { return this._def.ui.durationEditable; }\n get constraint() { return this._def.ui.constraints[0] || null; }\n get overlap() { return this._def.ui.overlap; }\n get allow() { return this._def.ui.allows[0] || null; }\n get backgroundColor() { return this._def.ui.backgroundColor; }\n get borderColor() { return this._def.ui.borderColor; }\n get textColor() { return this._def.ui.textColor; }\n // NOTE: user can't modify these because Object.freeze was called in event-def parsing\n get classNames() { return this._def.ui.classNames; }\n get extendedProps() { return this._def.extendedProps; }\n toPlainObject(settings = {}) {\n let def = this._def;\n let { ui } = def;\n let { startStr, endStr } = this;\n let res = {};\n if (def.title) {\n res.title = def.title;\n }\n if (startStr) {\n res.start = startStr;\n }\n if (endStr) {\n res.end = endStr;\n }\n if (def.publicId) {\n res.id = def.publicId;\n }\n if (def.groupId) {\n res.groupId = def.groupId;\n }\n if (def.url) {\n res.url = def.url;\n }\n if (ui.display && ui.display !== 'auto') {\n res.display = ui.display;\n }\n // TODO: what about recurring-event properties???\n // TODO: include startEditable/durationEditable/constraint/overlap/allow\n if (settings.collapseColor && ui.backgroundColor && ui.backgroundColor === ui.borderColor) {\n res.color = ui.backgroundColor;\n }\n else {\n if (ui.backgroundColor) {\n res.backgroundColor = ui.backgroundColor;\n }\n if (ui.borderColor) {\n res.borderColor = ui.borderColor;\n }\n }\n if (ui.textColor) {\n res.textColor = ui.textColor;\n }\n if (ui.classNames.length) {\n res.classNames = ui.classNames;\n }\n if (Object.keys(def.extendedProps).length) {\n if (settings.collapseExtendedProps) {\n Object.assign(res, def.extendedProps);\n }\n else {\n res.extendedProps = def.extendedProps;\n }\n }\n return res;\n }\n toJSON() {\n return this.toPlainObject();\n }\n}\nfunction eventApiToStore(eventApi) {\n let def = eventApi._def;\n let instance = eventApi._instance;\n return {\n defs: { [def.defId]: def },\n instances: instance\n ? { [instance.instanceId]: instance }\n : {},\n };\n}\nfunction buildEventApis(eventStore, context, excludeInstance) {\n let { defs, instances } = eventStore;\n let eventApis = [];\n let excludeInstanceId = excludeInstance ? excludeInstance.instanceId : '';\n for (let id in instances) {\n let instance = instances[id];\n let def = defs[instance.defId];\n if (instance.instanceId !== excludeInstanceId) {\n eventApis.push(new EventImpl(context, def, instance));\n }\n }\n return eventApis;\n}\n\n/*\nSpecifying nextDayThreshold signals that all-day ranges should be sliced.\n*/\nfunction sliceEventStore(eventStore, eventUiBases, framingRange, nextDayThreshold) {\n let inverseBgByGroupId = {};\n let inverseBgByDefId = {};\n let defByGroupId = {};\n let bgRanges = [];\n let fgRanges = [];\n let eventUis = compileEventUis(eventStore.defs, eventUiBases);\n for (let defId in eventStore.defs) {\n let def = eventStore.defs[defId];\n let ui = eventUis[def.defId];\n if (ui.display === 'inverse-background') {\n if (def.groupId) {\n inverseBgByGroupId[def.groupId] = [];\n if (!defByGroupId[def.groupId]) {\n defByGroupId[def.groupId] = def;\n }\n }\n else {\n inverseBgByDefId[defId] = [];\n }\n }\n }\n for (let instanceId in eventStore.instances) {\n let instance = eventStore.instances[instanceId];\n let def = eventStore.defs[instance.defId];\n let ui = eventUis[def.defId];\n let origRange = instance.range;\n let normalRange = (!def.allDay && nextDayThreshold) ?\n computeVisibleDayRange(origRange, nextDayThreshold) :\n origRange;\n let slicedRange = intersectRanges(normalRange, framingRange);\n if (slicedRange) {\n if (ui.display === 'inverse-background') {\n if (def.groupId) {\n inverseBgByGroupId[def.groupId].push(slicedRange);\n }\n else {\n inverseBgByDefId[instance.defId].push(slicedRange);\n }\n }\n else if (ui.display !== 'none') {\n (ui.display === 'background' ? bgRanges : fgRanges).push({\n def,\n ui,\n instance,\n range: slicedRange,\n isStart: normalRange.start && normalRange.start.valueOf() === slicedRange.start.valueOf(),\n isEnd: normalRange.end && normalRange.end.valueOf() === slicedRange.end.valueOf(),\n });\n }\n }\n }\n for (let groupId in inverseBgByGroupId) { // BY GROUP\n let ranges = inverseBgByGroupId[groupId];\n let invertedRanges = invertRanges(ranges, framingRange);\n for (let invertedRange of invertedRanges) {\n let def = defByGroupId[groupId];\n let ui = eventUis[def.defId];\n bgRanges.push({\n def,\n ui,\n instance: null,\n range: invertedRange,\n isStart: false,\n isEnd: false,\n });\n }\n }\n for (let defId in inverseBgByDefId) {\n let ranges = inverseBgByDefId[defId];\n let invertedRanges = invertRanges(ranges, framingRange);\n for (let invertedRange of invertedRanges) {\n bgRanges.push({\n def: eventStore.defs[defId],\n ui: eventUis[defId],\n instance: null,\n range: invertedRange,\n isStart: false,\n isEnd: false,\n });\n }\n }\n return { bg: bgRanges, fg: fgRanges };\n}\nfunction hasBgRendering(def) {\n return def.ui.display === 'background' || def.ui.display === 'inverse-background';\n}\nfunction setElSeg(el, seg) {\n el.fcSeg = seg;\n}\nfunction getElSeg(el) {\n return el.fcSeg ||\n el.parentNode.fcSeg || // for the harness\n null;\n}\n// event ui computation\nfunction compileEventUis(eventDefs, eventUiBases) {\n return mapHash(eventDefs, (eventDef) => compileEventUi(eventDef, eventUiBases));\n}\nfunction compileEventUi(eventDef, eventUiBases) {\n let uis = [];\n if (eventUiBases['']) {\n uis.push(eventUiBases['']);\n }\n if (eventUiBases[eventDef.defId]) {\n uis.push(eventUiBases[eventDef.defId]);\n }\n uis.push(eventDef.ui);\n return combineEventUis(uis);\n}\nfunction sortEventSegs(segs, eventOrderSpecs) {\n let objs = segs.map(buildSegCompareObj);\n objs.sort((obj0, obj1) => compareByFieldSpecs(obj0, obj1, eventOrderSpecs));\n return objs.map((c) => c._seg);\n}\n// returns a object with all primitive props that can be compared\nfunction buildSegCompareObj(seg) {\n let { eventRange } = seg;\n let eventDef = eventRange.def;\n let range = eventRange.instance ? eventRange.instance.range : eventRange.range;\n let start = range.start ? range.start.valueOf() : 0; // TODO: better support for open-range events\n let end = range.end ? range.end.valueOf() : 0; // \"\n return Object.assign(Object.assign(Object.assign({}, eventDef.extendedProps), eventDef), { id: eventDef.publicId, start,\n end, duration: end - start, allDay: Number(eventDef.allDay), _seg: seg });\n}\nfunction computeSegDraggable(seg, context) {\n let { pluginHooks } = context;\n let transformers = pluginHooks.isDraggableTransformers;\n let { def, ui } = seg.eventRange;\n let val = ui.startEditable;\n for (let transformer of transformers) {\n val = transformer(val, def, ui, context);\n }\n return val;\n}\nfunction computeSegStartResizable(seg, context) {\n return seg.isStart && seg.eventRange.ui.durationEditable && context.options.eventResizableFromStart;\n}\nfunction computeSegEndResizable(seg, context) {\n return seg.isEnd && seg.eventRange.ui.durationEditable;\n}\nfunction buildSegTimeText(seg, timeFormat, context, defaultDisplayEventTime, // defaults to true\ndefaultDisplayEventEnd, // defaults to true\nstartOverride, endOverride) {\n let { dateEnv, options } = context;\n let { displayEventTime, displayEventEnd } = options;\n let eventDef = seg.eventRange.def;\n let eventInstance = seg.eventRange.instance;\n if (displayEventTime == null) {\n displayEventTime = defaultDisplayEventTime !== false;\n }\n if (displayEventEnd == null) {\n displayEventEnd = defaultDisplayEventEnd !== false;\n }\n let wholeEventStart = eventInstance.range.start;\n let wholeEventEnd = eventInstance.range.end;\n let segStart = startOverride || seg.start || seg.eventRange.range.start;\n let segEnd = endOverride || seg.end || seg.eventRange.range.end;\n let isStartDay = startOfDay(wholeEventStart).valueOf() === startOfDay(segStart).valueOf();\n let isEndDay = startOfDay(addMs(wholeEventEnd, -1)).valueOf() === startOfDay(addMs(segEnd, -1)).valueOf();\n if (displayEventTime && !eventDef.allDay && (isStartDay || isEndDay)) {\n segStart = isStartDay ? wholeEventStart : segStart;\n segEnd = isEndDay ? wholeEventEnd : segEnd;\n if (displayEventEnd && eventDef.hasEnd) {\n return dateEnv.formatRange(segStart, segEnd, timeFormat, {\n forcedStartTzo: startOverride ? null : eventInstance.forcedStartTzo,\n forcedEndTzo: endOverride ? null : eventInstance.forcedEndTzo,\n });\n }\n return dateEnv.format(segStart, timeFormat, {\n forcedTzo: startOverride ? null : eventInstance.forcedStartTzo, // nooooo, same\n });\n }\n return '';\n}\nfunction getSegMeta(seg, todayRange, nowDate) {\n let segRange = seg.eventRange.range;\n return {\n isPast: segRange.end < (nowDate || todayRange.start),\n isFuture: segRange.start >= (nowDate || todayRange.end),\n isToday: todayRange && rangeContainsMarker(todayRange, segRange.start),\n };\n}\nfunction getEventClassNames(props) {\n let classNames = ['fc-event'];\n if (props.isMirror) {\n classNames.push('fc-event-mirror');\n }\n if (props.isDraggable) {\n classNames.push('fc-event-draggable');\n }\n if (props.isStartResizable || props.isEndResizable) {\n classNames.push('fc-event-resizable');\n }\n if (props.isDragging) {\n classNames.push('fc-event-dragging');\n }\n if (props.isResizing) {\n classNames.push('fc-event-resizing');\n }\n if (props.isSelected) {\n classNames.push('fc-event-selected');\n }\n if (props.isStart) {\n classNames.push('fc-event-start');\n }\n if (props.isEnd) {\n classNames.push('fc-event-end');\n }\n if (props.isPast) {\n classNames.push('fc-event-past');\n }\n if (props.isToday) {\n classNames.push('fc-event-today');\n }\n if (props.isFuture) {\n classNames.push('fc-event-future');\n }\n return classNames;\n}\nfunction buildEventRangeKey(eventRange) {\n return eventRange.instance\n ? eventRange.instance.instanceId\n : `${eventRange.def.defId}:${eventRange.range.start.toISOString()}`;\n // inverse-background events don't have specific instances. TODO: better solution\n}\nfunction getSegAnchorAttrs(seg, context) {\n let { def, instance } = seg.eventRange;\n let { url } = def;\n if (url) {\n return { href: url };\n }\n let { emitter, options } = context;\n let { eventInteractive } = options;\n if (eventInteractive == null) {\n eventInteractive = def.interactive;\n if (eventInteractive == null) {\n eventInteractive = Boolean(emitter.hasHandlers('eventClick'));\n }\n }\n // mock what happens in EventClicking\n if (eventInteractive) {\n // only attach keyboard-related handlers because click handler is already done in EventClicking\n return createAriaKeyboardAttrs((ev) => {\n emitter.trigger('eventClick', {\n el: ev.target,\n event: new EventImpl(context, def, instance),\n jsEvent: ev,\n view: context.viewApi,\n });\n });\n }\n return {};\n}\n\nconst STANDARD_PROPS = {\n start: identity,\n end: identity,\n allDay: Boolean,\n};\nfunction parseDateSpan(raw, dateEnv, defaultDuration) {\n let span = parseOpenDateSpan(raw, dateEnv);\n let { range } = span;\n if (!range.start) {\n return null;\n }\n if (!range.end) {\n if (defaultDuration == null) {\n return null;\n }\n range.end = dateEnv.add(range.start, defaultDuration);\n }\n return span;\n}\n/*\nTODO: somehow combine with parseRange?\nWill return null if the start/end props were present but parsed invalidly.\n*/\nfunction parseOpenDateSpan(raw, dateEnv) {\n let { refined: standardProps, extra } = refineProps(raw, STANDARD_PROPS);\n let startMeta = standardProps.start ? dateEnv.createMarkerMeta(standardProps.start) : null;\n let endMeta = standardProps.end ? dateEnv.createMarkerMeta(standardProps.end) : null;\n let { allDay } = standardProps;\n if (allDay == null) {\n allDay = (startMeta && startMeta.isTimeUnspecified) &&\n (!endMeta || endMeta.isTimeUnspecified);\n }\n return Object.assign({ range: {\n start: startMeta ? startMeta.marker : null,\n end: endMeta ? endMeta.marker : null,\n }, allDay }, extra);\n}\nfunction isDateSpansEqual(span0, span1) {\n return rangesEqual(span0.range, span1.range) &&\n span0.allDay === span1.allDay &&\n isSpanPropsEqual(span0, span1);\n}\n// the NON-DATE-RELATED props\nfunction isSpanPropsEqual(span0, span1) {\n for (let propName in span1) {\n if (propName !== 'range' && propName !== 'allDay') {\n if (span0[propName] !== span1[propName]) {\n return false;\n }\n }\n }\n // are there any props that span0 has that span1 DOESN'T have?\n // both have range/allDay, so no need to special-case.\n for (let propName in span0) {\n if (!(propName in span1)) {\n return false;\n }\n }\n return true;\n}\nfunction buildDateSpanApi(span, dateEnv) {\n return Object.assign(Object.assign({}, buildRangeApi(span.range, dateEnv, span.allDay)), { allDay: span.allDay });\n}\nfunction buildRangeApiWithTimeZone(range, dateEnv, omitTime) {\n return Object.assign(Object.assign({}, buildRangeApi(range, dateEnv, omitTime)), { timeZone: dateEnv.timeZone });\n}\nfunction buildRangeApi(range, dateEnv, omitTime) {\n return {\n start: dateEnv.toDate(range.start),\n end: dateEnv.toDate(range.end),\n startStr: dateEnv.formatIso(range.start, { omitTime }),\n endStr: dateEnv.formatIso(range.end, { omitTime }),\n };\n}\nfunction fabricateEventRange(dateSpan, eventUiBases, context) {\n let res = refineEventDef({ editable: false }, context);\n let def = parseEventDef(res.refined, res.extra, '', // sourceId\n dateSpan.allDay, true, // hasEnd\n context);\n return {\n def,\n ui: compileEventUi(def, eventUiBases),\n instance: createEventInstance(def.defId, dateSpan.range),\n range: dateSpan.range,\n isStart: true,\n isEnd: true,\n };\n}\n\nlet calendarSystemClassMap = {};\nfunction registerCalendarSystem(name, theClass) {\n calendarSystemClassMap[name] = theClass;\n}\nfunction createCalendarSystem(name) {\n return new calendarSystemClassMap[name]();\n}\nclass GregorianCalendarSystem {\n getMarkerYear(d) {\n return d.getUTCFullYear();\n }\n getMarkerMonth(d) {\n return d.getUTCMonth();\n }\n getMarkerDay(d) {\n return d.getUTCDate();\n }\n arrayToMarker(arr) {\n return arrayToUtcDate(arr);\n }\n markerToArray(marker) {\n return dateToUtcArray(marker);\n }\n}\nregisterCalendarSystem('gregory', GregorianCalendarSystem);\n\nconst ISO_RE = /^\\s*(\\d{4})(-?(\\d{2})(-?(\\d{2})([T ](\\d{2}):?(\\d{2})(:?(\\d{2})(\\.(\\d+))?)?(Z|(([-+])(\\d{2})(:?(\\d{2}))?))?)?)?)?$/;\nfunction parse(str) {\n let m = ISO_RE.exec(str);\n if (m) {\n let marker = new Date(Date.UTC(Number(m[1]), m[3] ? Number(m[3]) - 1 : 0, Number(m[5] || 1), Number(m[7] || 0), Number(m[8] || 0), Number(m[10] || 0), m[12] ? Number(`0.${m[12]}`) * 1000 : 0));\n if (isValidDate(marker)) {\n let timeZoneOffset = null;\n if (m[13]) {\n timeZoneOffset = (m[15] === '-' ? -1 : 1) * (Number(m[16] || 0) * 60 +\n Number(m[18] || 0));\n }\n return {\n marker,\n isTimeUnspecified: !m[6],\n timeZoneOffset,\n };\n }\n }\n return null;\n}\n\nclass DateEnv {\n constructor(settings) {\n let timeZone = this.timeZone = settings.timeZone;\n let isNamedTimeZone = timeZone !== 'local' && timeZone !== 'UTC';\n if (settings.namedTimeZoneImpl && isNamedTimeZone) {\n this.namedTimeZoneImpl = new settings.namedTimeZoneImpl(timeZone);\n }\n this.canComputeOffset = Boolean(!isNamedTimeZone || this.namedTimeZoneImpl);\n this.calendarSystem = createCalendarSystem(settings.calendarSystem);\n this.locale = settings.locale;\n this.weekDow = settings.locale.week.dow;\n this.weekDoy = settings.locale.week.doy;\n if (settings.weekNumberCalculation === 'ISO') {\n this.weekDow = 1;\n this.weekDoy = 4;\n }\n if (typeof settings.firstDay === 'number') {\n this.weekDow = settings.firstDay;\n }\n if (typeof settings.weekNumberCalculation === 'function') {\n this.weekNumberFunc = settings.weekNumberCalculation;\n }\n this.weekText = settings.weekText != null ? settings.weekText : settings.locale.options.weekText;\n this.weekTextLong = (settings.weekTextLong != null ? settings.weekTextLong : settings.locale.options.weekTextLong) || this.weekText;\n this.cmdFormatter = settings.cmdFormatter;\n this.defaultSeparator = settings.defaultSeparator;\n }\n // Creating / Parsing\n createMarker(input) {\n let meta = this.createMarkerMeta(input);\n if (meta === null) {\n return null;\n }\n return meta.marker;\n }\n createNowMarker() {\n if (this.canComputeOffset) {\n return this.timestampToMarker(new Date().valueOf());\n }\n // if we can't compute the current date val for a timezone,\n // better to give the current local date vals than UTC\n return arrayToUtcDate(dateToLocalArray(new Date()));\n }\n createMarkerMeta(input) {\n if (typeof input === 'string') {\n return this.parse(input);\n }\n let marker = null;\n if (typeof input === 'number') {\n marker = this.timestampToMarker(input);\n }\n else if (input instanceof Date) {\n input = input.valueOf();\n if (!isNaN(input)) {\n marker = this.timestampToMarker(input);\n }\n }\n else if (Array.isArray(input)) {\n marker = arrayToUtcDate(input);\n }\n if (marker === null || !isValidDate(marker)) {\n return null;\n }\n return { marker, isTimeUnspecified: false, forcedTzo: null };\n }\n parse(s) {\n let parts = parse(s);\n if (parts === null) {\n return null;\n }\n let { marker } = parts;\n let forcedTzo = null;\n if (parts.timeZoneOffset !== null) {\n if (this.canComputeOffset) {\n marker = this.timestampToMarker(marker.valueOf() - parts.timeZoneOffset * 60 * 1000);\n }\n else {\n forcedTzo = parts.timeZoneOffset;\n }\n }\n return { marker, isTimeUnspecified: parts.isTimeUnspecified, forcedTzo };\n }\n // Accessors\n getYear(marker) {\n return this.calendarSystem.getMarkerYear(marker);\n }\n getMonth(marker) {\n return this.calendarSystem.getMarkerMonth(marker);\n }\n // Adding / Subtracting\n add(marker, dur) {\n let a = this.calendarSystem.markerToArray(marker);\n a[0] += dur.years;\n a[1] += dur.months;\n a[2] += dur.days;\n a[6] += dur.milliseconds;\n return this.calendarSystem.arrayToMarker(a);\n }\n subtract(marker, dur) {\n let a = this.calendarSystem.markerToArray(marker);\n a[0] -= dur.years;\n a[1] -= dur.months;\n a[2] -= dur.days;\n a[6] -= dur.milliseconds;\n return this.calendarSystem.arrayToMarker(a);\n }\n addYears(marker, n) {\n let a = this.calendarSystem.markerToArray(marker);\n a[0] += n;\n return this.calendarSystem.arrayToMarker(a);\n }\n addMonths(marker, n) {\n let a = this.calendarSystem.markerToArray(marker);\n a[1] += n;\n return this.calendarSystem.arrayToMarker(a);\n }\n // Diffing Whole Units\n diffWholeYears(m0, m1) {\n let { calendarSystem } = this;\n if (timeAsMs(m0) === timeAsMs(m1) &&\n calendarSystem.getMarkerDay(m0) === calendarSystem.getMarkerDay(m1) &&\n calendarSystem.getMarkerMonth(m0) === calendarSystem.getMarkerMonth(m1)) {\n return calendarSystem.getMarkerYear(m1) - calendarSystem.getMarkerYear(m0);\n }\n return null;\n }\n diffWholeMonths(m0, m1) {\n let { calendarSystem } = this;\n if (timeAsMs(m0) === timeAsMs(m1) &&\n calendarSystem.getMarkerDay(m0) === calendarSystem.getMarkerDay(m1)) {\n return (calendarSystem.getMarkerMonth(m1) - calendarSystem.getMarkerMonth(m0)) +\n (calendarSystem.getMarkerYear(m1) - calendarSystem.getMarkerYear(m0)) * 12;\n }\n return null;\n }\n // Range / Duration\n greatestWholeUnit(m0, m1) {\n let n = this.diffWholeYears(m0, m1);\n if (n !== null) {\n return { unit: 'year', value: n };\n }\n n = this.diffWholeMonths(m0, m1);\n if (n !== null) {\n return { unit: 'month', value: n };\n }\n n = diffWholeWeeks(m0, m1);\n if (n !== null) {\n return { unit: 'week', value: n };\n }\n n = diffWholeDays(m0, m1);\n if (n !== null) {\n return { unit: 'day', value: n };\n }\n n = diffHours(m0, m1);\n if (isInt(n)) {\n return { unit: 'hour', value: n };\n }\n n = diffMinutes(m0, m1);\n if (isInt(n)) {\n return { unit: 'minute', value: n };\n }\n n = diffSeconds(m0, m1);\n if (isInt(n)) {\n return { unit: 'second', value: n };\n }\n return { unit: 'millisecond', value: m1.valueOf() - m0.valueOf() };\n }\n countDurationsBetween(m0, m1, d) {\n // TODO: can use greatestWholeUnit\n let diff;\n if (d.years) {\n diff = this.diffWholeYears(m0, m1);\n if (diff !== null) {\n return diff / asRoughYears(d);\n }\n }\n if (d.months) {\n diff = this.diffWholeMonths(m0, m1);\n if (diff !== null) {\n return diff / asRoughMonths(d);\n }\n }\n if (d.days) {\n diff = diffWholeDays(m0, m1);\n if (diff !== null) {\n return diff / asRoughDays(d);\n }\n }\n return (m1.valueOf() - m0.valueOf()) / asRoughMs(d);\n }\n // Start-Of\n // these DON'T return zoned-dates. only UTC start-of dates\n startOf(m, unit) {\n if (unit === 'year') {\n return this.startOfYear(m);\n }\n if (unit === 'month') {\n return this.startOfMonth(m);\n }\n if (unit === 'week') {\n return this.startOfWeek(m);\n }\n if (unit === 'day') {\n return startOfDay(m);\n }\n if (unit === 'hour') {\n return startOfHour(m);\n }\n if (unit === 'minute') {\n return startOfMinute(m);\n }\n if (unit === 'second') {\n return startOfSecond(m);\n }\n return null;\n }\n startOfYear(m) {\n return this.calendarSystem.arrayToMarker([\n this.calendarSystem.getMarkerYear(m),\n ]);\n }\n startOfMonth(m) {\n return this.calendarSystem.arrayToMarker([\n this.calendarSystem.getMarkerYear(m),\n this.calendarSystem.getMarkerMonth(m),\n ]);\n }\n startOfWeek(m) {\n return this.calendarSystem.arrayToMarker([\n this.calendarSystem.getMarkerYear(m),\n this.calendarSystem.getMarkerMonth(m),\n m.getUTCDate() - ((m.getUTCDay() - this.weekDow + 7) % 7),\n ]);\n }\n // Week Number\n computeWeekNumber(marker) {\n if (this.weekNumberFunc) {\n return this.weekNumberFunc(this.toDate(marker));\n }\n return weekOfYear(marker, this.weekDow, this.weekDoy);\n }\n // TODO: choke on timeZoneName: long\n format(marker, formatter, dateOptions = {}) {\n return formatter.format({\n marker,\n timeZoneOffset: dateOptions.forcedTzo != null ?\n dateOptions.forcedTzo :\n this.offsetForMarker(marker),\n }, this);\n }\n formatRange(start, end, formatter, dateOptions = {}) {\n if (dateOptions.isEndExclusive) {\n end = addMs(end, -1);\n }\n return formatter.formatRange({\n marker: start,\n timeZoneOffset: dateOptions.forcedStartTzo != null ?\n dateOptions.forcedStartTzo :\n this.offsetForMarker(start),\n }, {\n marker: end,\n timeZoneOffset: dateOptions.forcedEndTzo != null ?\n dateOptions.forcedEndTzo :\n this.offsetForMarker(end),\n }, this, dateOptions.defaultSeparator);\n }\n /*\n DUMB: the omitTime arg is dumb. if we omit the time, we want to omit the timezone offset. and if we do that,\n might as well use buildIsoString or some other util directly\n */\n formatIso(marker, extraOptions = {}) {\n let timeZoneOffset = null;\n if (!extraOptions.omitTimeZoneOffset) {\n if (extraOptions.forcedTzo != null) {\n timeZoneOffset = extraOptions.forcedTzo;\n }\n else {\n timeZoneOffset = this.offsetForMarker(marker);\n }\n }\n return buildIsoString(marker, timeZoneOffset, extraOptions.omitTime);\n }\n // TimeZone\n timestampToMarker(ms) {\n if (this.timeZone === 'local') {\n return arrayToUtcDate(dateToLocalArray(new Date(ms)));\n }\n if (this.timeZone === 'UTC' || !this.namedTimeZoneImpl) {\n return new Date(ms);\n }\n return arrayToUtcDate(this.namedTimeZoneImpl.timestampToArray(ms));\n }\n offsetForMarker(m) {\n if (this.timeZone === 'local') {\n return -arrayToLocalDate(dateToUtcArray(m)).getTimezoneOffset(); // convert \"inverse\" offset to \"normal\" offset\n }\n if (this.timeZone === 'UTC') {\n return 0;\n }\n if (this.namedTimeZoneImpl) {\n return this.namedTimeZoneImpl.offsetForArray(dateToUtcArray(m));\n }\n return null;\n }\n // Conversion\n toDate(m, forcedTzo) {\n if (this.timeZone === 'local') {\n return arrayToLocalDate(dateToUtcArray(m));\n }\n if (this.timeZone === 'UTC') {\n return new Date(m.valueOf()); // make sure it's a copy\n }\n if (!this.namedTimeZoneImpl) {\n return new Date(m.valueOf() - (forcedTzo || 0));\n }\n return new Date(m.valueOf() -\n this.namedTimeZoneImpl.offsetForArray(dateToUtcArray(m)) * 1000 * 60);\n }\n}\n\nclass NamedTimeZoneImpl {\n constructor(timeZoneName) {\n this.timeZoneName = timeZoneName;\n }\n}\n\nclass SegHierarchy {\n constructor() {\n // settings\n this.strictOrder = false;\n this.allowReslicing = false;\n this.maxCoord = -1; // -1 means no max\n this.maxStackCnt = -1; // -1 means no max\n this.levelCoords = []; // ordered\n this.entriesByLevel = []; // parallel with levelCoords\n this.stackCnts = {}; // TODO: use better technique!?\n }\n addSegs(inputs) {\n let hiddenEntries = [];\n for (let input of inputs) {\n this.insertEntry(input, hiddenEntries);\n }\n return hiddenEntries;\n }\n insertEntry(entry, hiddenEntries) {\n let insertion = this.findInsertion(entry);\n if (this.isInsertionValid(insertion, entry)) {\n this.insertEntryAt(entry, insertion);\n return 1;\n }\n return this.handleInvalidInsertion(insertion, entry, hiddenEntries);\n }\n isInsertionValid(insertion, entry) {\n return (this.maxCoord === -1 || insertion.levelCoord + entry.thickness <= this.maxCoord) &&\n (this.maxStackCnt === -1 || insertion.stackCnt < this.maxStackCnt);\n }\n // returns number of new entries inserted\n handleInvalidInsertion(insertion, entry, hiddenEntries) {\n if (this.allowReslicing && insertion.touchingEntry) {\n return this.splitEntry(entry, insertion.touchingEntry, hiddenEntries);\n }\n hiddenEntries.push(entry);\n return 0;\n }\n splitEntry(entry, barrier, hiddenEntries) {\n let partCnt = 0;\n let splitHiddenEntries = [];\n let entrySpan = entry.span;\n let barrierSpan = barrier.span;\n if (entrySpan.start < barrierSpan.start) {\n partCnt += this.insertEntry({\n index: entry.index,\n thickness: entry.thickness,\n span: { start: entrySpan.start, end: barrierSpan.start },\n }, splitHiddenEntries);\n }\n if (entrySpan.end > barrierSpan.end) {\n partCnt += this.insertEntry({\n index: entry.index,\n thickness: entry.thickness,\n span: { start: barrierSpan.end, end: entrySpan.end },\n }, splitHiddenEntries);\n }\n if (partCnt) {\n hiddenEntries.push({\n index: entry.index,\n thickness: entry.thickness,\n span: intersectSpans(barrierSpan, entrySpan), // guaranteed to intersect\n }, ...splitHiddenEntries);\n return partCnt;\n }\n hiddenEntries.push(entry);\n return 0;\n }\n insertEntryAt(entry, insertion) {\n let { entriesByLevel, levelCoords } = this;\n if (insertion.lateral === -1) {\n // create a new level\n insertAt(levelCoords, insertion.level, insertion.levelCoord);\n insertAt(entriesByLevel, insertion.level, [entry]);\n }\n else {\n // insert into existing level\n insertAt(entriesByLevel[insertion.level], insertion.lateral, entry);\n }\n this.stackCnts[buildEntryKey(entry)] = insertion.stackCnt;\n }\n findInsertion(newEntry) {\n let { levelCoords, entriesByLevel, strictOrder, stackCnts } = this;\n let levelCnt = levelCoords.length;\n let candidateCoord = 0;\n let touchingLevel = -1;\n let touchingLateral = -1;\n let touchingEntry = null;\n let stackCnt = 0;\n for (let trackingLevel = 0; trackingLevel < levelCnt; trackingLevel += 1) {\n let trackingCoord = levelCoords[trackingLevel];\n // if the current level is past the placed entry, we have found a good empty space and can stop.\n // if strictOrder, keep finding more lateral intersections.\n if (!strictOrder && trackingCoord >= candidateCoord + newEntry.thickness) {\n break;\n }\n let trackingEntries = entriesByLevel[trackingLevel];\n let trackingEntry;\n let searchRes = binarySearch(trackingEntries, newEntry.span.start, getEntrySpanEnd); // find first entry after newEntry's end\n let lateralIndex = searchRes[0] + searchRes[1]; // if exact match (which doesn't collide), go to next one\n while ( // loop through entries that horizontally intersect\n (trackingEntry = trackingEntries[lateralIndex]) && // but not past the whole entry list\n trackingEntry.span.start < newEntry.span.end // and not entirely past newEntry\n ) {\n let trackingEntryBottom = trackingCoord + trackingEntry.thickness;\n // intersects into the top of the candidate?\n if (trackingEntryBottom > candidateCoord) {\n candidateCoord = trackingEntryBottom;\n touchingEntry = trackingEntry;\n touchingLevel = trackingLevel;\n touchingLateral = lateralIndex;\n }\n // butts up against top of candidate? (will happen if just intersected as well)\n if (trackingEntryBottom === candidateCoord) {\n // accumulate the highest possible stackCnt of the trackingEntries that butt up\n stackCnt = Math.max(stackCnt, stackCnts[buildEntryKey(trackingEntry)] + 1);\n }\n lateralIndex += 1;\n }\n }\n // the destination level will be after touchingEntry's level. find it\n let destLevel = 0;\n if (touchingEntry) {\n destLevel = touchingLevel + 1;\n while (destLevel < levelCnt && levelCoords[destLevel] < candidateCoord) {\n destLevel += 1;\n }\n }\n // if adding to an existing level, find where to insert\n let destLateral = -1;\n if (destLevel < levelCnt && levelCoords[destLevel] === candidateCoord) {\n destLateral = binarySearch(entriesByLevel[destLevel], newEntry.span.end, getEntrySpanEnd)[0];\n }\n return {\n touchingLevel,\n touchingLateral,\n touchingEntry,\n stackCnt,\n levelCoord: candidateCoord,\n level: destLevel,\n lateral: destLateral,\n };\n }\n // sorted by levelCoord (lowest to highest)\n toRects() {\n let { entriesByLevel, levelCoords } = this;\n let levelCnt = entriesByLevel.length;\n let rects = [];\n for (let level = 0; level < levelCnt; level += 1) {\n let entries = entriesByLevel[level];\n let levelCoord = levelCoords[level];\n for (let entry of entries) {\n rects.push(Object.assign(Object.assign({}, entry), { levelCoord }));\n }\n }\n return rects;\n }\n}\nfunction getEntrySpanEnd(entry) {\n return entry.span.end;\n}\nfunction buildEntryKey(entry) {\n return entry.index + ':' + entry.span.start;\n}\n// returns groups with entries sorted by input order\nfunction groupIntersectingEntries(entries) {\n let merges = [];\n for (let entry of entries) {\n let filteredMerges = [];\n let hungryMerge = {\n span: entry.span,\n entries: [entry],\n };\n for (let merge of merges) {\n if (intersectSpans(merge.span, hungryMerge.span)) {\n hungryMerge = {\n entries: merge.entries.concat(hungryMerge.entries),\n span: joinSpans(merge.span, hungryMerge.span),\n };\n }\n else {\n filteredMerges.push(merge);\n }\n }\n filteredMerges.push(hungryMerge);\n merges = filteredMerges;\n }\n return merges;\n}\nfunction joinSpans(span0, span1) {\n return {\n start: Math.min(span0.start, span1.start),\n end: Math.max(span0.end, span1.end),\n };\n}\nfunction intersectSpans(span0, span1) {\n let start = Math.max(span0.start, span1.start);\n let end = Math.min(span0.end, span1.end);\n if (start < end) {\n return { start, end };\n }\n return null;\n}\n// general util\n// ---------------------------------------------------------------------------------------------------------------------\nfunction insertAt(arr, index, item) {\n arr.splice(index, 0, item);\n}\nfunction binarySearch(a, searchVal, getItemVal) {\n let startIndex = 0;\n let endIndex = a.length; // exclusive\n if (!endIndex || searchVal < getItemVal(a[startIndex])) { // no items OR before first item\n return [0, 0];\n }\n if (searchVal > getItemVal(a[endIndex - 1])) { // after last item\n return [endIndex, 0];\n }\n while (startIndex < endIndex) {\n let middleIndex = Math.floor(startIndex + (endIndex - startIndex) / 2);\n let middleVal = getItemVal(a[middleIndex]);\n if (searchVal < middleVal) {\n endIndex = middleIndex;\n }\n else if (searchVal > middleVal) {\n startIndex = middleIndex + 1;\n }\n else { // equal!\n return [middleIndex, 1];\n }\n }\n return [startIndex, 0];\n}\n\nclass Interaction {\n constructor(settings) {\n this.component = settings.component;\n this.isHitComboAllowed = settings.isHitComboAllowed || null;\n }\n destroy() {\n }\n}\nfunction parseInteractionSettings(component, input) {\n return {\n component,\n el: input.el,\n useEventCenter: input.useEventCenter != null ? input.useEventCenter : true,\n isHitComboAllowed: input.isHitComboAllowed || null,\n };\n}\nfunction interactionSettingsToStore(settings) {\n return {\n [settings.component.uid]: settings,\n };\n}\n// global state\nconst interactionSettingsStore = {};\n\n/*\nAn abstraction for a dragging interaction originating on an event.\nDoes higher-level things than PointerDragger, such as possibly:\n- a \"mirror\" that moves with the pointer\n- a minimum number of pixels or other criteria for a true drag to begin\n\nsubclasses must emit:\n- pointerdown\n- dragstart\n- dragmove\n- pointerup\n- dragend\n*/\nclass ElementDragging {\n constructor(el, selector) {\n this.emitter = new Emitter();\n }\n destroy() {\n }\n setMirrorIsVisible(bool) {\n // optional if subclass doesn't want to support a mirror\n }\n setMirrorNeedsRevert(bool) {\n // optional if subclass doesn't want to support a mirror\n }\n setAutoScrollEnabled(bool) {\n // optional\n }\n}\n\n// TODO: get rid of this in favor of options system,\n// tho it's really easy to access this globally rather than pass thru options.\nconst config = {};\n\nconst globalLocales = [];\n\n/*\nInformation about what will happen when an external element is dragged-and-dropped\nonto a calendar. Contains information for creating an event.\n*/\nconst DRAG_META_REFINERS = {\n startTime: createDuration,\n duration: createDuration,\n create: Boolean,\n sourceId: String,\n};\nfunction parseDragMeta(raw) {\n let { refined, extra } = refineProps(raw, DRAG_META_REFINERS);\n return {\n startTime: refined.startTime || null,\n duration: refined.duration || null,\n create: refined.create != null ? refined.create : true,\n sourceId: refined.sourceId,\n leftoverProps: extra,\n };\n}\n\nclass CalendarRoot extends BaseComponent {\n constructor() {\n super(...arguments);\n this.state = {\n forPrint: false,\n };\n this.handleBeforePrint = () => {\n this.setState({ forPrint: true });\n };\n this.handleAfterPrint = () => {\n this.setState({ forPrint: false });\n };\n }\n render() {\n let { props } = this;\n let { options } = props;\n let { forPrint } = this.state;\n let isHeightAuto = forPrint || options.height === 'auto' || options.contentHeight === 'auto';\n let height = (!isHeightAuto && options.height != null) ? options.height : '';\n let classNames = [\n 'fc',\n forPrint ? 'fc-media-print' : 'fc-media-screen',\n `fc-direction-${options.direction}`,\n props.theme.getClass('root'),\n ];\n if (!getCanVGrowWithinCell()) {\n classNames.push('fc-liquid-hack');\n }\n return props.children(classNames, height, isHeightAuto, forPrint);\n }\n componentDidMount() {\n let { emitter } = this.props;\n emitter.on('_beforeprint', this.handleBeforePrint);\n emitter.on('_afterprint', this.handleAfterPrint);\n }\n componentWillUnmount() {\n let { emitter } = this.props;\n emitter.off('_beforeprint', this.handleBeforePrint);\n emitter.off('_afterprint', this.handleAfterPrint);\n }\n}\n\n// Computes a default column header formatting string if `colFormat` is not explicitly defined\nfunction computeFallbackHeaderFormat(datesRepDistinctDays, dayCnt) {\n // if more than one week row, or if there are a lot of columns with not much space,\n // put just the day numbers will be in each cell\n if (!datesRepDistinctDays || dayCnt > 10) {\n return createFormatter({ weekday: 'short' }); // \"Sat\"\n }\n if (dayCnt > 1) {\n return createFormatter({ weekday: 'short', month: 'numeric', day: 'numeric', omitCommas: true }); // \"Sat 11/12\"\n }\n return createFormatter({ weekday: 'long' }); // \"Saturday\"\n}\n\nconst CLASS_NAME = 'fc-col-header-cell'; // do the cushion too? no\nfunction renderInner$1(renderProps) {\n return renderProps.text;\n}\n\nclass ContentInjector extends BaseComponent {\n constructor() {\n super(...arguments);\n this.id = guid();\n this.currentDomNodes = [];\n this.queuedDomNodes = [];\n }\n render() {\n const { props, context } = this;\n const { options } = context;\n const { generator, renderProps } = props;\n const attrs = buildElAttrs(props);\n let innerContent;\n let queuedDomNodes = [];\n if (!hasCustomRenderingHandler(props.generatorName, options)) {\n const customContent = typeof generator === 'function' ?\n generator(renderProps, createElement) :\n generator;\n if (typeof customContent === 'string' ||\n isValidElement(customContent) ||\n Array.isArray(customContent)) {\n innerContent = customContent;\n }\n else if (typeof customContent === 'object') {\n if ('html' in customContent) {\n attrs.dangerouslySetInnerHTML = { __html: customContent.html };\n }\n else if ('domNodes' in customContent) {\n queuedDomNodes = Array.prototype.slice.call(customContent.domNodes);\n }\n }\n }\n this.queuedDomNodes = queuedDomNodes;\n return createElement(props.elTag, attrs, innerContent);\n }\n componentDidMount() {\n this.applyQueueudDomNodes();\n this.triggerCustomRendering(true);\n }\n componentDidUpdate(oldProps) {\n this.applyQueueudDomNodes();\n this.triggerCustomRendering(true);\n }\n componentWillUnmount() {\n this.triggerCustomRendering(false); // TODO: different API for removal?\n }\n triggerCustomRendering(isActive) {\n const { props, context } = this;\n const { handleCustomRendering, customRenderingMetaMap } = context.options;\n if (handleCustomRendering) {\n const customRenderingMeta = customRenderingMetaMap === null || customRenderingMetaMap === void 0 ? void 0 : customRenderingMetaMap[props.generatorName];\n if (customRenderingMeta) {\n handleCustomRendering(Object.assign({ id: this.id, isActive, containerEl: this.base, generatorMeta: customRenderingMeta }, props));\n }\n }\n }\n applyQueueudDomNodes() {\n const { queuedDomNodes, currentDomNodes } = this;\n const el = this.base;\n if (!isArraysEqual(queuedDomNodes, currentDomNodes)) {\n currentDomNodes.forEach(removeElement);\n for (let newNode of queuedDomNodes) {\n el.appendChild(newNode);\n }\n this.currentDomNodes = queuedDomNodes;\n }\n }\n}\nContentInjector.addPropsEquality({\n elClasses: isArraysEqual,\n elStyle: isPropsEqual,\n elAttrs: isPropsEqual,\n renderProps: isPropsEqual,\n});\n// Util\nfunction hasCustomRenderingHandler(generatorName, options) {\n var _a;\n return Boolean(options.handleCustomRendering &&\n generatorName &&\n ((_a = options.customRenderingMetaMap) === null || _a === void 0 ? void 0 : _a[generatorName]));\n}\nfunction buildElAttrs(props, extraClassNames) {\n const attrs = Object.assign(Object.assign({}, props.elAttrs), { ref: props.elRef });\n if (props.elClasses || extraClassNames) {\n attrs.className = (props.elClasses || [])\n .concat(extraClassNames || [])\n .concat(attrs.className || [])\n .filter(Boolean)\n .join(' ');\n }\n if (props.elStyle) {\n attrs.style = props.elStyle;\n }\n return attrs;\n}\n\nconst RenderId = createContext(0);\n\nclass ContentContainer extends Component {\n constructor() {\n super(...arguments);\n this.InnerContent = InnerContentInjector.bind(undefined, this);\n }\n render() {\n const { props } = this;\n const generatedClassNames = generateClassNames(props.classNameGenerator, props.renderProps);\n if (props.children) {\n const elAttrs = buildElAttrs(props, generatedClassNames);\n const children = props.children(this.InnerContent, props.renderProps, elAttrs);\n if (props.elTag) {\n return createElement(props.elTag, elAttrs, children);\n }\n else {\n return children;\n }\n }\n else {\n return createElement((ContentInjector), Object.assign(Object.assign({}, props), { elTag: props.elTag || 'div', elClasses: (props.elClasses || []).concat(generatedClassNames), renderId: this.context }));\n }\n }\n componentDidMount() {\n var _a, _b;\n (_b = (_a = this.props).didMount) === null || _b === void 0 ? void 0 : _b.call(_a, Object.assign(Object.assign({}, this.props.renderProps), { el: this.base }));\n }\n componentWillUnmount() {\n var _a, _b;\n (_b = (_a = this.props).willUnmount) === null || _b === void 0 ? void 0 : _b.call(_a, Object.assign(Object.assign({}, this.props.renderProps), { el: this.base }));\n }\n}\nContentContainer.contextType = RenderId;\nfunction InnerContentInjector(containerComponent, props) {\n const parentProps = containerComponent.props;\n return createElement((ContentInjector), Object.assign({ renderProps: parentProps.renderProps, generatorName: parentProps.generatorName, generator: parentProps.generator, renderId: containerComponent.context }, props));\n}\n// Utils\nfunction generateClassNames(classNameGenerator, renderProps) {\n const classNames = typeof classNameGenerator === 'function' ?\n classNameGenerator(renderProps) :\n classNameGenerator || [];\n return typeof classNames === 'string' ? [classNames] : classNames;\n}\n\n// BAD name for this class now. used in the Header\nclass TableDateCell extends BaseComponent {\n render() {\n let { dateEnv, options, theme, viewApi } = this.context;\n let { props } = this;\n let { date, dateProfile } = props;\n let dayMeta = getDateMeta(date, props.todayRange, null, dateProfile);\n let classNames = [CLASS_NAME].concat(getDayClassNames(dayMeta, theme));\n let text = dateEnv.format(date, props.dayHeaderFormat);\n // if colCnt is 1, we are already in a day-view and don't need a navlink\n let navLinkAttrs = (!dayMeta.isDisabled && props.colCnt > 1)\n ? buildNavLinkAttrs(this.context, date)\n : {};\n let renderProps = Object.assign(Object.assign(Object.assign({ date: dateEnv.toDate(date), view: viewApi }, props.extraRenderProps), { text }), dayMeta);\n return (createElement(ContentContainer, { elTag: \"th\", elClasses: classNames, elAttrs: Object.assign({ role: 'columnheader', colSpan: props.colSpan, 'data-date': !dayMeta.isDisabled ? formatDayString(date) : undefined }, props.extraDataAttrs), renderProps: renderProps, generatorName: \"dayHeaderContent\", generator: options.dayHeaderContent || renderInner$1, classNameGenerator: options.dayHeaderClassNames, didMount: options.dayHeaderDidMount, willUnmount: options.dayHeaderWillUnmount }, (InnerContainer) => (createElement(\"div\", { className: \"fc-scrollgrid-sync-inner\" }, !dayMeta.isDisabled && (createElement(InnerContainer, { elTag: \"a\", elAttrs: navLinkAttrs, elClasses: [\n 'fc-col-header-cell-cushion',\n props.isSticky && 'fc-sticky',\n ] }))))));\n }\n}\n\nconst WEEKDAY_FORMAT = createFormatter({ weekday: 'long' });\nclass TableDowCell extends BaseComponent {\n render() {\n let { props } = this;\n let { dateEnv, theme, viewApi, options } = this.context;\n let date = addDays(new Date(259200000), props.dow); // start with Sun, 04 Jan 1970 00:00:00 GMT\n let dateMeta = {\n dow: props.dow,\n isDisabled: false,\n isFuture: false,\n isPast: false,\n isToday: false,\n isOther: false,\n };\n let text = dateEnv.format(date, props.dayHeaderFormat);\n let renderProps = Object.assign(Object.assign(Object.assign(Object.assign({ // TODO: make this public?\n date }, dateMeta), { view: viewApi }), props.extraRenderProps), { text });\n return (createElement(ContentContainer, { elTag: \"th\", elClasses: [\n CLASS_NAME,\n ...getDayClassNames(dateMeta, theme),\n ...(props.extraClassNames || []),\n ], elAttrs: Object.assign({ role: 'columnheader', colSpan: props.colSpan }, props.extraDataAttrs), renderProps: renderProps, generatorName: \"dayHeaderContent\", generator: options.dayHeaderContent || renderInner$1, classNameGenerator: options.dayHeaderClassNames, didMount: options.dayHeaderDidMount, willUnmount: options.dayHeaderWillUnmount }, (InnerContent) => (createElement(\"div\", { className: \"fc-scrollgrid-sync-inner\" },\n createElement(InnerContent, { elTag: \"a\", elClasses: [\n 'fc-col-header-cell-cushion',\n props.isSticky && 'fc-sticky',\n ], elAttrs: {\n 'aria-label': dateEnv.format(date, WEEKDAY_FORMAT),\n } })))));\n }\n}\n\nclass NowTimer extends Component {\n constructor(props, context) {\n super(props, context);\n this.initialNowDate = getNow(context.options.now, context.dateEnv);\n this.initialNowQueriedMs = new Date().valueOf();\n this.state = this.computeTiming().currentState;\n }\n render() {\n let { props, state } = this;\n return props.children(state.nowDate, state.todayRange);\n }\n componentDidMount() {\n this.setTimeout();\n }\n componentDidUpdate(prevProps) {\n if (prevProps.unit !== this.props.unit) {\n this.clearTimeout();\n this.setTimeout();\n }\n }\n componentWillUnmount() {\n this.clearTimeout();\n }\n computeTiming() {\n let { props, context } = this;\n let unroundedNow = addMs(this.initialNowDate, new Date().valueOf() - this.initialNowQueriedMs);\n let currentUnitStart = context.dateEnv.startOf(unroundedNow, props.unit);\n let nextUnitStart = context.dateEnv.add(currentUnitStart, createDuration(1, props.unit));\n let waitMs = nextUnitStart.valueOf() - unroundedNow.valueOf();\n // there is a max setTimeout ms value (https://stackoverflow.com/a/3468650/96342)\n // ensure no longer than a day\n waitMs = Math.min(1000 * 60 * 60 * 24, waitMs);\n return {\n currentState: { nowDate: currentUnitStart, todayRange: buildDayRange(currentUnitStart) },\n nextState: { nowDate: nextUnitStart, todayRange: buildDayRange(nextUnitStart) },\n waitMs,\n };\n }\n setTimeout() {\n let { nextState, waitMs } = this.computeTiming();\n this.timeoutId = setTimeout(() => {\n this.setState(nextState, () => {\n this.setTimeout();\n });\n }, waitMs);\n }\n clearTimeout() {\n if (this.timeoutId) {\n clearTimeout(this.timeoutId);\n }\n }\n}\nNowTimer.contextType = ViewContextType;\nfunction buildDayRange(date) {\n let start = startOfDay(date);\n let end = addDays(start, 1);\n return { start, end };\n}\n\nclass DayHeader extends BaseComponent {\n constructor() {\n super(...arguments);\n this.createDayHeaderFormatter = memoize(createDayHeaderFormatter);\n }\n render() {\n let { context } = this;\n let { dates, dateProfile, datesRepDistinctDays, renderIntro } = this.props;\n let dayHeaderFormat = this.createDayHeaderFormatter(context.options.dayHeaderFormat, datesRepDistinctDays, dates.length);\n return (createElement(NowTimer, { unit: \"day\" }, (nowDate, todayRange) => (createElement(\"tr\", { role: \"row\" },\n renderIntro && renderIntro('day'),\n dates.map((date) => (datesRepDistinctDays ? (createElement(TableDateCell, { key: date.toISOString(), date: date, dateProfile: dateProfile, todayRange: todayRange, colCnt: dates.length, dayHeaderFormat: dayHeaderFormat })) : (createElement(TableDowCell, { key: date.getUTCDay(), dow: date.getUTCDay(), dayHeaderFormat: dayHeaderFormat }))))))));\n }\n}\nfunction createDayHeaderFormatter(explicitFormat, datesRepDistinctDays, dateCnt) {\n return explicitFormat || computeFallbackHeaderFormat(datesRepDistinctDays, dateCnt);\n}\n\nclass DaySeriesModel {\n constructor(range, dateProfileGenerator) {\n let date = range.start;\n let { end } = range;\n let indices = [];\n let dates = [];\n let dayIndex = -1;\n while (date < end) { // loop each day from start to end\n if (dateProfileGenerator.isHiddenDay(date)) {\n indices.push(dayIndex + 0.5); // mark that it's between indices\n }\n else {\n dayIndex += 1;\n indices.push(dayIndex);\n dates.push(date);\n }\n date = addDays(date, 1);\n }\n this.dates = dates;\n this.indices = indices;\n this.cnt = dates.length;\n }\n sliceRange(range) {\n let firstIndex = this.getDateDayIndex(range.start); // inclusive first index\n let lastIndex = this.getDateDayIndex(addDays(range.end, -1)); // inclusive last index\n let clippedFirstIndex = Math.max(0, firstIndex);\n let clippedLastIndex = Math.min(this.cnt - 1, lastIndex);\n // deal with in-between indices\n clippedFirstIndex = Math.ceil(clippedFirstIndex); // in-between starts round to next cell\n clippedLastIndex = Math.floor(clippedLastIndex); // in-between ends round to prev cell\n if (clippedFirstIndex <= clippedLastIndex) {\n return {\n firstIndex: clippedFirstIndex,\n lastIndex: clippedLastIndex,\n isStart: firstIndex === clippedFirstIndex,\n isEnd: lastIndex === clippedLastIndex,\n };\n }\n return null;\n }\n // Given a date, returns its chronolocial cell-index from the first cell of the grid.\n // If the date lies between cells (because of hiddenDays), returns a floating-point value between offsets.\n // If before the first offset, returns a negative number.\n // If after the last offset, returns an offset past the last cell offset.\n // Only works for *start* dates of cells. Will not work for exclusive end dates for cells.\n getDateDayIndex(date) {\n let { indices } = this;\n let dayOffset = Math.floor(diffDays(this.dates[0], date));\n if (dayOffset < 0) {\n return indices[0] - 1;\n }\n if (dayOffset >= indices.length) {\n return indices[indices.length - 1] + 1;\n }\n return indices[dayOffset];\n }\n}\n\nclass DayTableModel {\n constructor(daySeries, breakOnWeeks) {\n let { dates } = daySeries;\n let daysPerRow;\n let firstDay;\n let rowCnt;\n if (breakOnWeeks) {\n // count columns until the day-of-week repeats\n firstDay = dates[0].getUTCDay();\n for (daysPerRow = 1; daysPerRow < dates.length; daysPerRow += 1) {\n if (dates[daysPerRow].getUTCDay() === firstDay) {\n break;\n }\n }\n rowCnt = Math.ceil(dates.length / daysPerRow);\n }\n else {\n rowCnt = 1;\n daysPerRow = dates.length;\n }\n this.rowCnt = rowCnt;\n this.colCnt = daysPerRow;\n this.daySeries = daySeries;\n this.cells = this.buildCells();\n this.headerDates = this.buildHeaderDates();\n }\n buildCells() {\n let rows = [];\n for (let row = 0; row < this.rowCnt; row += 1) {\n let cells = [];\n for (let col = 0; col < this.colCnt; col += 1) {\n cells.push(this.buildCell(row, col));\n }\n rows.push(cells);\n }\n return rows;\n }\n buildCell(row, col) {\n let date = this.daySeries.dates[row * this.colCnt + col];\n return {\n key: date.toISOString(),\n date,\n };\n }\n buildHeaderDates() {\n let dates = [];\n for (let col = 0; col < this.colCnt; col += 1) {\n dates.push(this.cells[0][col].date);\n }\n return dates;\n }\n sliceRange(range) {\n let { colCnt } = this;\n let seriesSeg = this.daySeries.sliceRange(range);\n let segs = [];\n if (seriesSeg) {\n let { firstIndex, lastIndex } = seriesSeg;\n let index = firstIndex;\n while (index <= lastIndex) {\n let row = Math.floor(index / colCnt);\n let nextIndex = Math.min((row + 1) * colCnt, lastIndex + 1);\n segs.push({\n row,\n firstCol: index % colCnt,\n lastCol: (nextIndex - 1) % colCnt,\n isStart: seriesSeg.isStart && index === firstIndex,\n isEnd: seriesSeg.isEnd && (nextIndex - 1) === lastIndex,\n });\n index = nextIndex;\n }\n }\n return segs;\n }\n}\n\nclass Slicer {\n constructor() {\n this.sliceBusinessHours = memoize(this._sliceBusinessHours);\n this.sliceDateSelection = memoize(this._sliceDateSpan);\n this.sliceEventStore = memoize(this._sliceEventStore);\n this.sliceEventDrag = memoize(this._sliceInteraction);\n this.sliceEventResize = memoize(this._sliceInteraction);\n this.forceDayIfListItem = false; // hack\n }\n sliceProps(props, dateProfile, nextDayThreshold, context, ...extraArgs) {\n let { eventUiBases } = props;\n let eventSegs = this.sliceEventStore(props.eventStore, eventUiBases, dateProfile, nextDayThreshold, ...extraArgs);\n return {\n dateSelectionSegs: this.sliceDateSelection(props.dateSelection, eventUiBases, context, ...extraArgs),\n businessHourSegs: this.sliceBusinessHours(props.businessHours, dateProfile, nextDayThreshold, context, ...extraArgs),\n fgEventSegs: eventSegs.fg,\n bgEventSegs: eventSegs.bg,\n eventDrag: this.sliceEventDrag(props.eventDrag, eventUiBases, dateProfile, nextDayThreshold, ...extraArgs),\n eventResize: this.sliceEventResize(props.eventResize, eventUiBases, dateProfile, nextDayThreshold, ...extraArgs),\n eventSelection: props.eventSelection,\n }; // TODO: give interactionSegs?\n }\n sliceNowDate(// does not memoize\n date, context, ...extraArgs) {\n return this._sliceDateSpan({ range: { start: date, end: addMs(date, 1) }, allDay: false }, // add 1 ms, protect against null range\n {}, context, ...extraArgs);\n }\n _sliceBusinessHours(businessHours, dateProfile, nextDayThreshold, context, ...extraArgs) {\n if (!businessHours) {\n return [];\n }\n return this._sliceEventStore(expandRecurring(businessHours, computeActiveRange(dateProfile, Boolean(nextDayThreshold)), context), {}, dateProfile, nextDayThreshold, ...extraArgs).bg;\n }\n _sliceEventStore(eventStore, eventUiBases, dateProfile, nextDayThreshold, ...extraArgs) {\n if (eventStore) {\n let rangeRes = sliceEventStore(eventStore, eventUiBases, computeActiveRange(dateProfile, Boolean(nextDayThreshold)), nextDayThreshold);\n return {\n bg: this.sliceEventRanges(rangeRes.bg, extraArgs),\n fg: this.sliceEventRanges(rangeRes.fg, extraArgs),\n };\n }\n return { bg: [], fg: [] };\n }\n _sliceInteraction(interaction, eventUiBases, dateProfile, nextDayThreshold, ...extraArgs) {\n if (!interaction) {\n return null;\n }\n let rangeRes = sliceEventStore(interaction.mutatedEvents, eventUiBases, computeActiveRange(dateProfile, Boolean(nextDayThreshold)), nextDayThreshold);\n return {\n segs: this.sliceEventRanges(rangeRes.fg, extraArgs),\n affectedInstances: interaction.affectedEvents.instances,\n isEvent: interaction.isEvent,\n };\n }\n _sliceDateSpan(dateSpan, eventUiBases, context, ...extraArgs) {\n if (!dateSpan) {\n return [];\n }\n let eventRange = fabricateEventRange(dateSpan, eventUiBases, context);\n let segs = this.sliceRange(dateSpan.range, ...extraArgs);\n for (let seg of segs) {\n seg.eventRange = eventRange;\n }\n return segs;\n }\n /*\n \"complete\" seg means it has component and eventRange\n */\n sliceEventRanges(eventRanges, extraArgs) {\n let segs = [];\n for (let eventRange of eventRanges) {\n segs.push(...this.sliceEventRange(eventRange, extraArgs));\n }\n return segs;\n }\n /*\n \"complete\" seg means it has component and eventRange\n */\n sliceEventRange(eventRange, extraArgs) {\n let dateRange = eventRange.range;\n // hack to make multi-day events that are being force-displayed as list-items to take up only one day\n if (this.forceDayIfListItem && eventRange.ui.display === 'list-item') {\n dateRange = {\n start: dateRange.start,\n end: addDays(dateRange.start, 1),\n };\n }\n let segs = this.sliceRange(dateRange, ...extraArgs);\n for (let seg of segs) {\n seg.eventRange = eventRange;\n seg.isStart = eventRange.isStart && seg.isStart;\n seg.isEnd = eventRange.isEnd && seg.isEnd;\n }\n return segs;\n }\n}\n/*\nfor incorporating slotMinTime/slotMaxTime if appropriate\nTODO: should be part of DateProfile!\nTimelineDateProfile already does this btw\n*/\nfunction computeActiveRange(dateProfile, isComponentAllDay) {\n let range = dateProfile.activeRange;\n if (isComponentAllDay) {\n return range;\n }\n return {\n start: addMs(range.start, dateProfile.slotMinTime.milliseconds),\n end: addMs(range.end, dateProfile.slotMaxTime.milliseconds - 864e5), // 864e5 = ms in a day\n };\n}\n\nfunction reduceEventStore(eventStore, action, eventSources, dateProfile, context) {\n switch (action.type) {\n case 'RECEIVE_EVENTS': // raw\n return receiveRawEvents(eventStore, eventSources[action.sourceId], action.fetchId, action.fetchRange, action.rawEvents, context);\n case 'ADD_EVENTS': // already parsed, but not expanded\n return addEvent(eventStore, action.eventStore, // new ones\n dateProfile ? dateProfile.activeRange : null, context);\n case 'RESET_EVENTS':\n return action.eventStore;\n case 'MERGE_EVENTS': // already parsed and expanded\n return mergeEventStores(eventStore, action.eventStore);\n case 'PREV': // TODO: how do we track all actions that affect dateProfile :(\n case 'NEXT':\n case 'CHANGE_DATE':\n case 'CHANGE_VIEW_TYPE':\n if (dateProfile) {\n return expandRecurring(eventStore, dateProfile.activeRange, context);\n }\n return eventStore;\n case 'REMOVE_EVENTS':\n return excludeSubEventStore(eventStore, action.eventStore);\n case 'REMOVE_EVENT_SOURCE':\n return excludeEventsBySourceId(eventStore, action.sourceId);\n case 'REMOVE_ALL_EVENT_SOURCES':\n return filterEventStoreDefs(eventStore, (eventDef) => (!eventDef.sourceId // only keep events with no source id\n ));\n case 'REMOVE_ALL_EVENTS':\n return createEmptyEventStore();\n default:\n return eventStore;\n }\n}\nfunction receiveRawEvents(eventStore, eventSource, fetchId, fetchRange, rawEvents, context) {\n if (eventSource && // not already removed\n fetchId === eventSource.latestFetchId // TODO: wish this logic was always in event-sources\n ) {\n let subset = parseEvents(transformRawEvents(rawEvents, eventSource, context), eventSource, context);\n if (fetchRange) {\n subset = expandRecurring(subset, fetchRange, context);\n }\n return mergeEventStores(excludeEventsBySourceId(eventStore, eventSource.sourceId), subset);\n }\n return eventStore;\n}\nfunction transformRawEvents(rawEvents, eventSource, context) {\n let calEachTransform = context.options.eventDataTransform;\n let sourceEachTransform = eventSource ? eventSource.eventDataTransform : null;\n if (sourceEachTransform) {\n rawEvents = transformEachRawEvent(rawEvents, sourceEachTransform);\n }\n if (calEachTransform) {\n rawEvents = transformEachRawEvent(rawEvents, calEachTransform);\n }\n return rawEvents;\n}\nfunction transformEachRawEvent(rawEvents, func) {\n let refinedEvents;\n if (!func) {\n refinedEvents = rawEvents;\n }\n else {\n refinedEvents = [];\n for (let rawEvent of rawEvents) {\n let refinedEvent = func(rawEvent);\n if (refinedEvent) {\n refinedEvents.push(refinedEvent);\n }\n else if (refinedEvent == null) {\n refinedEvents.push(rawEvent);\n } // if a different falsy value, do nothing\n }\n }\n return refinedEvents;\n}\nfunction addEvent(eventStore, subset, expandRange, context) {\n if (expandRange) {\n subset = expandRecurring(subset, expandRange, context);\n }\n return mergeEventStores(eventStore, subset);\n}\nfunction rezoneEventStoreDates(eventStore, oldDateEnv, newDateEnv) {\n let { defs } = eventStore;\n let instances = mapHash(eventStore.instances, (instance) => {\n let def = defs[instance.defId];\n if (def.allDay || def.recurringDef) {\n return instance; // isn't dependent on timezone\n }\n return Object.assign(Object.assign({}, instance), { range: {\n start: newDateEnv.createMarker(oldDateEnv.toDate(instance.range.start, instance.forcedStartTzo)),\n end: newDateEnv.createMarker(oldDateEnv.toDate(instance.range.end, instance.forcedEndTzo)),\n }, forcedStartTzo: newDateEnv.canComputeOffset ? null : instance.forcedStartTzo, forcedEndTzo: newDateEnv.canComputeOffset ? null : instance.forcedEndTzo });\n });\n return { defs, instances };\n}\nfunction excludeEventsBySourceId(eventStore, sourceId) {\n return filterEventStoreDefs(eventStore, (eventDef) => eventDef.sourceId !== sourceId);\n}\n// QUESTION: why not just return instances? do a general object-property-exclusion util\nfunction excludeInstances(eventStore, removals) {\n return {\n defs: eventStore.defs,\n instances: filterHash(eventStore.instances, (instance) => !removals[instance.instanceId]),\n };\n}\n\n// high-level segmenting-aware tester functions\n// ------------------------------------------------------------------------------------------------------------------------\nfunction isInteractionValid(interaction, dateProfile, context) {\n let { instances } = interaction.mutatedEvents;\n for (let instanceId in instances) {\n if (!rangeContainsRange(dateProfile.validRange, instances[instanceId].range)) {\n return false;\n }\n }\n return isNewPropsValid({ eventDrag: interaction }, context); // HACK: the eventDrag props is used for ALL interactions\n}\nfunction isDateSelectionValid(dateSelection, dateProfile, context) {\n if (!rangeContainsRange(dateProfile.validRange, dateSelection.range)) {\n return false;\n }\n return isNewPropsValid({ dateSelection }, context);\n}\nfunction isNewPropsValid(newProps, context) {\n let calendarState = context.getCurrentData();\n let props = Object.assign({ businessHours: calendarState.businessHours, dateSelection: '', eventStore: calendarState.eventStore, eventUiBases: calendarState.eventUiBases, eventSelection: '', eventDrag: null, eventResize: null }, newProps);\n return (context.pluginHooks.isPropsValid || isPropsValid)(props, context);\n}\nfunction isPropsValid(state, context, dateSpanMeta = {}, filterConfig) {\n if (state.eventDrag && !isInteractionPropsValid(state, context, dateSpanMeta, filterConfig)) {\n return false;\n }\n if (state.dateSelection && !isDateSelectionPropsValid(state, context, dateSpanMeta, filterConfig)) {\n return false;\n }\n return true;\n}\n// Moving Event Validation\n// ------------------------------------------------------------------------------------------------------------------------\nfunction isInteractionPropsValid(state, context, dateSpanMeta, filterConfig) {\n let currentState = context.getCurrentData();\n let interaction = state.eventDrag; // HACK: the eventDrag props is used for ALL interactions\n let subjectEventStore = interaction.mutatedEvents;\n let subjectDefs = subjectEventStore.defs;\n let subjectInstances = subjectEventStore.instances;\n let subjectConfigs = compileEventUis(subjectDefs, interaction.isEvent ?\n state.eventUiBases :\n { '': currentState.selectionConfig });\n if (filterConfig) {\n subjectConfigs = mapHash(subjectConfigs, filterConfig);\n }\n // exclude the subject events. TODO: exclude defs too?\n let otherEventStore = excludeInstances(state.eventStore, interaction.affectedEvents.instances);\n let otherDefs = otherEventStore.defs;\n let otherInstances = otherEventStore.instances;\n let otherConfigs = compileEventUis(otherDefs, state.eventUiBases);\n for (let subjectInstanceId in subjectInstances) {\n let subjectInstance = subjectInstances[subjectInstanceId];\n let subjectRange = subjectInstance.range;\n let subjectConfig = subjectConfigs[subjectInstance.defId];\n let subjectDef = subjectDefs[subjectInstance.defId];\n // constraint\n if (!allConstraintsPass(subjectConfig.constraints, subjectRange, otherEventStore, state.businessHours, context)) {\n return false;\n }\n // overlap\n let { eventOverlap } = context.options;\n let eventOverlapFunc = typeof eventOverlap === 'function' ? eventOverlap : null;\n for (let otherInstanceId in otherInstances) {\n let otherInstance = otherInstances[otherInstanceId];\n // intersect! evaluate\n if (rangesIntersect(subjectRange, otherInstance.range)) {\n let otherOverlap = otherConfigs[otherInstance.defId].overlap;\n // consider the other event's overlap. only do this if the subject event is a \"real\" event\n if (otherOverlap === false && interaction.isEvent) {\n return false;\n }\n if (subjectConfig.overlap === false) {\n return false;\n }\n if (eventOverlapFunc && !eventOverlapFunc(new EventImpl(context, otherDefs[otherInstance.defId], otherInstance), // still event\n new EventImpl(context, subjectDef, subjectInstance))) {\n return false;\n }\n }\n }\n // allow (a function)\n let calendarEventStore = currentState.eventStore; // need global-to-calendar, not local to component (splittable)state\n for (let subjectAllow of subjectConfig.allows) {\n let subjectDateSpan = Object.assign(Object.assign({}, dateSpanMeta), { range: subjectInstance.range, allDay: subjectDef.allDay });\n let origDef = calendarEventStore.defs[subjectDef.defId];\n let origInstance = calendarEventStore.instances[subjectInstanceId];\n let eventApi;\n if (origDef) { // was previously in the calendar\n eventApi = new EventImpl(context, origDef, origInstance);\n }\n else { // was an external event\n eventApi = new EventImpl(context, subjectDef); // no instance, because had no dates\n }\n if (!subjectAllow(buildDateSpanApiWithContext(subjectDateSpan, context), eventApi)) {\n return false;\n }\n }\n }\n return true;\n}\n// Date Selection Validation\n// ------------------------------------------------------------------------------------------------------------------------\nfunction isDateSelectionPropsValid(state, context, dateSpanMeta, filterConfig) {\n let relevantEventStore = state.eventStore;\n let relevantDefs = relevantEventStore.defs;\n let relevantInstances = relevantEventStore.instances;\n let selection = state.dateSelection;\n let selectionRange = selection.range;\n let { selectionConfig } = context.getCurrentData();\n if (filterConfig) {\n selectionConfig = filterConfig(selectionConfig);\n }\n // constraint\n if (!allConstraintsPass(selectionConfig.constraints, selectionRange, relevantEventStore, state.businessHours, context)) {\n return false;\n }\n // overlap\n let { selectOverlap } = context.options;\n let selectOverlapFunc = typeof selectOverlap === 'function' ? selectOverlap : null;\n for (let relevantInstanceId in relevantInstances) {\n let relevantInstance = relevantInstances[relevantInstanceId];\n // intersect! evaluate\n if (rangesIntersect(selectionRange, relevantInstance.range)) {\n if (selectionConfig.overlap === false) {\n return false;\n }\n if (selectOverlapFunc && !selectOverlapFunc(new EventImpl(context, relevantDefs[relevantInstance.defId], relevantInstance), null)) {\n return false;\n }\n }\n }\n // allow (a function)\n for (let selectionAllow of selectionConfig.allows) {\n let fullDateSpan = Object.assign(Object.assign({}, dateSpanMeta), selection);\n if (!selectionAllow(buildDateSpanApiWithContext(fullDateSpan, context), null)) {\n return false;\n }\n }\n return true;\n}\n// Constraint Utils\n// ------------------------------------------------------------------------------------------------------------------------\nfunction allConstraintsPass(constraints, subjectRange, otherEventStore, businessHoursUnexpanded, context) {\n for (let constraint of constraints) {\n if (!anyRangesContainRange(constraintToRanges(constraint, subjectRange, otherEventStore, businessHoursUnexpanded, context), subjectRange)) {\n return false;\n }\n }\n return true;\n}\nfunction constraintToRanges(constraint, subjectRange, // for expanding a recurring constraint, or expanding business hours\notherEventStore, // for if constraint is an even group ID\nbusinessHoursUnexpanded, // for if constraint is 'businessHours'\ncontext) {\n if (constraint === 'businessHours') {\n return eventStoreToRanges(expandRecurring(businessHoursUnexpanded, subjectRange, context));\n }\n if (typeof constraint === 'string') { // an group ID\n return eventStoreToRanges(filterEventStoreDefs(otherEventStore, (eventDef) => eventDef.groupId === constraint));\n }\n if (typeof constraint === 'object' && constraint) { // non-null object\n return eventStoreToRanges(expandRecurring(constraint, subjectRange, context));\n }\n return []; // if it's false\n}\n// TODO: move to event-store file?\nfunction eventStoreToRanges(eventStore) {\n let { instances } = eventStore;\n let ranges = [];\n for (let instanceId in instances) {\n ranges.push(instances[instanceId].range);\n }\n return ranges;\n}\n// TODO: move to geom file?\nfunction anyRangesContainRange(outerRanges, innerRange) {\n for (let outerRange of outerRanges) {\n if (rangeContainsRange(outerRange, innerRange)) {\n return true;\n }\n }\n return false;\n}\n\nclass JsonRequestError extends Error {\n constructor(message, response) {\n super(message);\n this.response = response;\n }\n}\nfunction requestJson(method, url, params) {\n method = method.toUpperCase();\n const fetchOptions = {\n method,\n };\n if (method === 'GET') {\n url += (url.indexOf('?') === -1 ? '?' : '&') +\n new URLSearchParams(params);\n }\n else {\n fetchOptions.body = new URLSearchParams(params);\n fetchOptions.headers = {\n 'Content-Type': 'application/x-www-form-urlencoded',\n };\n }\n return fetch(url, fetchOptions).then((fetchRes) => {\n if (fetchRes.ok) {\n return fetchRes.json().then((parsedResponse) => {\n return [parsedResponse, fetchRes];\n }, () => {\n throw new JsonRequestError('Failure parsing JSON', fetchRes);\n });\n }\n else {\n throw new JsonRequestError('Request failed', fetchRes);\n }\n });\n}\n\nclass DelayedRunner {\n constructor(drainedOption) {\n this.drainedOption = drainedOption;\n this.isRunning = false;\n this.isDirty = false;\n this.pauseDepths = {};\n this.timeoutId = 0;\n }\n request(delay) {\n this.isDirty = true;\n if (!this.isPaused()) {\n this.clearTimeout();\n if (delay == null) {\n this.tryDrain();\n }\n else {\n this.timeoutId = setTimeout(// NOT OPTIMAL! TODO: look at debounce\n this.tryDrain.bind(this), delay);\n }\n }\n }\n pause(scope = '') {\n let { pauseDepths } = this;\n pauseDepths[scope] = (pauseDepths[scope] || 0) + 1;\n this.clearTimeout();\n }\n resume(scope = '', force) {\n let { pauseDepths } = this;\n if (scope in pauseDepths) {\n if (force) {\n delete pauseDepths[scope];\n }\n else {\n pauseDepths[scope] -= 1;\n let depth = pauseDepths[scope];\n if (depth <= 0) {\n delete pauseDepths[scope];\n }\n }\n this.tryDrain();\n }\n }\n isPaused() {\n return Object.keys(this.pauseDepths).length;\n }\n tryDrain() {\n if (!this.isRunning && !this.isPaused()) {\n this.isRunning = true;\n while (this.isDirty) {\n this.isDirty = false;\n this.drained(); // might set isDirty to true again\n }\n this.isRunning = false;\n }\n }\n clear() {\n this.clearTimeout();\n this.isDirty = false;\n this.pauseDepths = {};\n }\n clearTimeout() {\n if (this.timeoutId) {\n clearTimeout(this.timeoutId);\n this.timeoutId = 0;\n }\n }\n drained() {\n if (this.drainedOption) {\n this.drainedOption();\n }\n }\n}\n\nconst VISIBLE_HIDDEN_RE = /^(visible|hidden)$/;\nclass Scroller extends BaseComponent {\n constructor() {\n super(...arguments);\n this.handleEl = (el) => {\n this.el = el;\n setRef(this.props.elRef, el);\n };\n }\n render() {\n let { props } = this;\n let { liquid, liquidIsAbsolute } = props;\n let isAbsolute = liquid && liquidIsAbsolute;\n let className = ['fc-scroller'];\n if (liquid) {\n if (liquidIsAbsolute) {\n className.push('fc-scroller-liquid-absolute');\n }\n else {\n className.push('fc-scroller-liquid');\n }\n }\n return (createElement(\"div\", { ref: this.handleEl, className: className.join(' '), style: {\n overflowX: props.overflowX,\n overflowY: props.overflowY,\n left: (isAbsolute && -(props.overcomeLeft || 0)) || '',\n right: (isAbsolute && -(props.overcomeRight || 0)) || '',\n bottom: (isAbsolute && -(props.overcomeBottom || 0)) || '',\n marginLeft: (!isAbsolute && -(props.overcomeLeft || 0)) || '',\n marginRight: (!isAbsolute && -(props.overcomeRight || 0)) || '',\n marginBottom: (!isAbsolute && -(props.overcomeBottom || 0)) || '',\n maxHeight: props.maxHeight || '',\n } }, props.children));\n }\n needsXScrolling() {\n if (VISIBLE_HIDDEN_RE.test(this.props.overflowX)) {\n return false;\n }\n // testing scrollWidth>clientWidth is unreliable cross-browser when pixel heights aren't integers.\n // much more reliable to see if children are taller than the scroller, even tho doesn't account for\n // inner-child margins and absolute positioning\n let { el } = this;\n let realClientWidth = this.el.getBoundingClientRect().width - this.getYScrollbarWidth();\n let { children } = el;\n for (let i = 0; i < children.length; i += 1) {\n let childEl = children[i];\n if (childEl.getBoundingClientRect().width > realClientWidth) {\n return true;\n }\n }\n return false;\n }\n needsYScrolling() {\n if (VISIBLE_HIDDEN_RE.test(this.props.overflowY)) {\n return false;\n }\n // testing scrollHeight>clientHeight is unreliable cross-browser when pixel heights aren't integers.\n // much more reliable to see if children are taller than the scroller, even tho doesn't account for\n // inner-child margins and absolute positioning\n let { el } = this;\n let realClientHeight = this.el.getBoundingClientRect().height - this.getXScrollbarWidth();\n let { children } = el;\n for (let i = 0; i < children.length; i += 1) {\n let childEl = children[i];\n if (childEl.getBoundingClientRect().height > realClientHeight) {\n return true;\n }\n }\n return false;\n }\n getXScrollbarWidth() {\n if (VISIBLE_HIDDEN_RE.test(this.props.overflowX)) {\n return 0;\n }\n return this.el.offsetHeight - this.el.clientHeight; // only works because we guarantee no borders. TODO: add to CSS with important?\n }\n getYScrollbarWidth() {\n if (VISIBLE_HIDDEN_RE.test(this.props.overflowY)) {\n return 0;\n }\n return this.el.offsetWidth - this.el.clientWidth; // only works because we guarantee no borders. TODO: add to CSS with important?\n }\n}\n\n/*\nTODO: somehow infer OtherArgs from masterCallback?\nTODO: infer RefType from masterCallback if provided\n*/\nclass RefMap {\n constructor(masterCallback) {\n this.masterCallback = masterCallback;\n this.currentMap = {};\n this.depths = {};\n this.callbackMap = {};\n this.handleValue = (val, key) => {\n let { depths, currentMap } = this;\n let removed = false;\n let added = false;\n if (val !== null) {\n // for bug... ACTUALLY: can probably do away with this now that callers don't share numeric indices anymore\n removed = (key in currentMap);\n currentMap[key] = val;\n depths[key] = (depths[key] || 0) + 1;\n added = true;\n }\n else {\n depths[key] -= 1;\n if (!depths[key]) {\n delete currentMap[key];\n delete this.callbackMap[key];\n removed = true;\n }\n }\n if (this.masterCallback) {\n if (removed) {\n this.masterCallback(null, String(key));\n }\n if (added) {\n this.masterCallback(val, String(key));\n }\n }\n };\n }\n createRef(key) {\n let refCallback = this.callbackMap[key];\n if (!refCallback) {\n refCallback = this.callbackMap[key] = (val) => {\n this.handleValue(val, String(key));\n };\n }\n return refCallback;\n }\n // TODO: check callers that don't care about order. should use getAll instead\n // NOTE: this method has become less valuable now that we are encouraged to map order by some other index\n // TODO: provide ONE array-export function, buildArray, which fails on non-numeric indexes. caller can manipulate and \"collect\"\n collect(startIndex, endIndex, step) {\n return collectFromHash(this.currentMap, startIndex, endIndex, step);\n }\n getAll() {\n return hashValuesToArray(this.currentMap);\n }\n}\n\nfunction computeShrinkWidth(chunkEls) {\n let shrinkCells = findElements(chunkEls, '.fc-scrollgrid-shrink');\n let largestWidth = 0;\n for (let shrinkCell of shrinkCells) {\n largestWidth = Math.max(largestWidth, computeSmallestCellWidth(shrinkCell));\n }\n return Math.ceil(largestWidth); // <table> elements work best with integers. round up to ensure contents fits\n}\nfunction getSectionHasLiquidHeight(props, sectionConfig) {\n return props.liquid && sectionConfig.liquid; // does the section do liquid-height? (need to have whole scrollgrid liquid-height as well)\n}\nfunction getAllowYScrolling(props, sectionConfig) {\n return sectionConfig.maxHeight != null || // if its possible for the height to max out, we might need scrollbars\n getSectionHasLiquidHeight(props, sectionConfig); // if the section is liquid height, it might condense enough to require scrollbars\n}\n// TODO: ONLY use `arg`. force out internal function to use same API\nfunction renderChunkContent(sectionConfig, chunkConfig, arg, isHeader) {\n let { expandRows } = arg;\n let content = typeof chunkConfig.content === 'function' ?\n chunkConfig.content(arg) :\n createElement('table', {\n role: 'presentation',\n className: [\n chunkConfig.tableClassName,\n sectionConfig.syncRowHeights ? 'fc-scrollgrid-sync-table' : '',\n ].join(' '),\n style: {\n minWidth: arg.tableMinWidth,\n width: arg.clientWidth,\n height: expandRows ? arg.clientHeight : '', // css `height` on a <table> serves as a min-height\n },\n }, arg.tableColGroupNode, createElement(isHeader ? 'thead' : 'tbody', {\n role: 'presentation',\n }, typeof chunkConfig.rowContent === 'function'\n ? chunkConfig.rowContent(arg)\n : chunkConfig.rowContent));\n return content;\n}\nfunction isColPropsEqual(cols0, cols1) {\n return isArraysEqual(cols0, cols1, isPropsEqual);\n}\nfunction renderMicroColGroup(cols, shrinkWidth) {\n let colNodes = [];\n /*\n for ColProps with spans, it would have been great to make a single <col span=\"\">\n HOWEVER, Chrome was getting messing up distributing the width to <td>/<th> elements with colspans.\n SOLUTION: making individual <col> elements makes Chrome behave.\n */\n for (let colProps of cols) {\n let span = colProps.span || 1;\n for (let i = 0; i < span; i += 1) {\n colNodes.push(createElement(\"col\", { style: {\n width: colProps.width === 'shrink' ? sanitizeShrinkWidth(shrinkWidth) : (colProps.width || ''),\n minWidth: colProps.minWidth || '',\n } }));\n }\n }\n return createElement('colgroup', {}, ...colNodes);\n}\nfunction sanitizeShrinkWidth(shrinkWidth) {\n /* why 4? if we do 0, it will kill any border, which are needed for computeSmallestCellWidth\n 4 accounts for 2 2-pixel borders. TODO: better solution? */\n return shrinkWidth == null ? 4 : shrinkWidth;\n}\nfunction hasShrinkWidth(cols) {\n for (let col of cols) {\n if (col.width === 'shrink') {\n return true;\n }\n }\n return false;\n}\nfunction getScrollGridClassNames(liquid, context) {\n let classNames = [\n 'fc-scrollgrid',\n context.theme.getClass('table'),\n ];\n if (liquid) {\n classNames.push('fc-scrollgrid-liquid');\n }\n return classNames;\n}\nfunction getSectionClassNames(sectionConfig, wholeTableVGrow) {\n let classNames = [\n 'fc-scrollgrid-section',\n `fc-scrollgrid-section-${sectionConfig.type}`,\n sectionConfig.className, // used?\n ];\n if (wholeTableVGrow && sectionConfig.liquid && sectionConfig.maxHeight == null) {\n classNames.push('fc-scrollgrid-section-liquid');\n }\n if (sectionConfig.isSticky) {\n classNames.push('fc-scrollgrid-section-sticky');\n }\n return classNames;\n}\nfunction renderScrollShim(arg) {\n return (createElement(\"div\", { className: \"fc-scrollgrid-sticky-shim\", style: {\n width: arg.clientWidth,\n minWidth: arg.tableMinWidth,\n } }));\n}\nfunction getStickyHeaderDates(options) {\n let { stickyHeaderDates } = options;\n if (stickyHeaderDates == null || stickyHeaderDates === 'auto') {\n stickyHeaderDates = options.height === 'auto' || options.viewHeight === 'auto';\n }\n return stickyHeaderDates;\n}\nfunction getStickyFooterScrollbar(options) {\n let { stickyFooterScrollbar } = options;\n if (stickyFooterScrollbar == null || stickyFooterScrollbar === 'auto') {\n stickyFooterScrollbar = options.height === 'auto' || options.viewHeight === 'auto';\n }\n return stickyFooterScrollbar;\n}\n\nclass SimpleScrollGrid extends BaseComponent {\n constructor() {\n super(...arguments);\n this.processCols = memoize((a) => a, isColPropsEqual); // so we get same `cols` props every time\n // yucky to memoize VNodes, but much more efficient for consumers\n this.renderMicroColGroup = memoize(renderMicroColGroup);\n this.scrollerRefs = new RefMap();\n this.scrollerElRefs = new RefMap(this._handleScrollerEl.bind(this));\n this.state = {\n shrinkWidth: null,\n forceYScrollbars: false,\n scrollerClientWidths: {},\n scrollerClientHeights: {},\n };\n // TODO: can do a really simple print-view. dont need to join rows\n this.handleSizing = () => {\n this.safeSetState(Object.assign({ shrinkWidth: this.computeShrinkWidth() }, this.computeScrollerDims()));\n };\n }\n render() {\n let { props, state, context } = this;\n let sectionConfigs = props.sections || [];\n let cols = this.processCols(props.cols);\n let microColGroupNode = this.renderMicroColGroup(cols, state.shrinkWidth);\n let classNames = getScrollGridClassNames(props.liquid, context);\n if (props.collapsibleWidth) {\n classNames.push('fc-scrollgrid-collapsible');\n }\n // TODO: make DRY\n let configCnt = sectionConfigs.length;\n let configI = 0;\n let currentConfig;\n let headSectionNodes = [];\n let bodySectionNodes = [];\n let footSectionNodes = [];\n while (configI < configCnt && (currentConfig = sectionConfigs[configI]).type === 'header') {\n headSectionNodes.push(this.renderSection(currentConfig, microColGroupNode, true));\n configI += 1;\n }\n while (configI < configCnt && (currentConfig = sectionConfigs[configI]).type === 'body') {\n bodySectionNodes.push(this.renderSection(currentConfig, microColGroupNode, false));\n configI += 1;\n }\n while (configI < configCnt && (currentConfig = sectionConfigs[configI]).type === 'footer') {\n footSectionNodes.push(this.renderSection(currentConfig, microColGroupNode, true));\n configI += 1;\n }\n // firefox bug: when setting height on table and there is a thead or tfoot,\n // the necessary height:100% on the liquid-height body section forces the *whole* table to be taller. (bug #5524)\n // use getCanVGrowWithinCell as a way to detect table-stupid firefox.\n // if so, use a simpler dom structure, jam everything into a lone tbody.\n let isBuggy = !getCanVGrowWithinCell();\n const roleAttrs = { role: 'rowgroup' };\n return createElement('table', {\n role: 'grid',\n className: classNames.join(' '),\n style: { height: props.height },\n }, Boolean(!isBuggy && headSectionNodes.length) && createElement('thead', roleAttrs, ...headSectionNodes), Boolean(!isBuggy && bodySectionNodes.length) && createElement('tbody', roleAttrs, ...bodySectionNodes), Boolean(!isBuggy && footSectionNodes.length) && createElement('tfoot', roleAttrs, ...footSectionNodes), isBuggy && createElement('tbody', roleAttrs, ...headSectionNodes, ...bodySectionNodes, ...footSectionNodes));\n }\n renderSection(sectionConfig, microColGroupNode, isHeader) {\n if ('outerContent' in sectionConfig) {\n return (createElement(Fragment, { key: sectionConfig.key }, sectionConfig.outerContent));\n }\n return (createElement(\"tr\", { key: sectionConfig.key, role: \"presentation\", className: getSectionClassNames(sectionConfig, this.props.liquid).join(' ') }, this.renderChunkTd(sectionConfig, microColGroupNode, sectionConfig.chunk, isHeader)));\n }\n renderChunkTd(sectionConfig, microColGroupNode, chunkConfig, isHeader) {\n if ('outerContent' in chunkConfig) {\n return chunkConfig.outerContent;\n }\n let { props } = this;\n let { forceYScrollbars, scrollerClientWidths, scrollerClientHeights } = this.state;\n let needsYScrolling = getAllowYScrolling(props, sectionConfig); // TODO: do lazily. do in section config?\n let isLiquid = getSectionHasLiquidHeight(props, sectionConfig);\n // for `!props.liquid` - is WHOLE scrollgrid natural height?\n // TODO: do same thing in advanced scrollgrid? prolly not b/c always has horizontal scrollbars\n let overflowY = !props.liquid ? 'visible' :\n forceYScrollbars ? 'scroll' :\n !needsYScrolling ? 'hidden' :\n 'auto';\n let sectionKey = sectionConfig.key;\n let content = renderChunkContent(sectionConfig, chunkConfig, {\n tableColGroupNode: microColGroupNode,\n tableMinWidth: '',\n clientWidth: (!props.collapsibleWidth && scrollerClientWidths[sectionKey] !== undefined) ? scrollerClientWidths[sectionKey] : null,\n clientHeight: scrollerClientHeights[sectionKey] !== undefined ? scrollerClientHeights[sectionKey] : null,\n expandRows: sectionConfig.expandRows,\n syncRowHeights: false,\n rowSyncHeights: [],\n reportRowHeightChange: () => { },\n }, isHeader);\n return createElement(isHeader ? 'th' : 'td', {\n ref: chunkConfig.elRef,\n role: 'presentation',\n }, createElement(\"div\", { className: `fc-scroller-harness${isLiquid ? ' fc-scroller-harness-liquid' : ''}` },\n createElement(Scroller, { ref: this.scrollerRefs.createRef(sectionKey), elRef: this.scrollerElRefs.createRef(sectionKey), overflowY: overflowY, overflowX: !props.liquid ? 'visible' : 'hidden' /* natural height? */, maxHeight: sectionConfig.maxHeight, liquid: isLiquid, liquidIsAbsolute // because its within a harness\n : true }, content)));\n }\n _handleScrollerEl(scrollerEl, key) {\n let section = getSectionByKey(this.props.sections, key);\n if (section) {\n setRef(section.chunk.scrollerElRef, scrollerEl);\n }\n }\n componentDidMount() {\n this.handleSizing();\n this.context.addResizeHandler(this.handleSizing);\n }\n componentDidUpdate() {\n // TODO: need better solution when state contains non-sizing things\n this.handleSizing();\n }\n componentWillUnmount() {\n this.context.removeResizeHandler(this.handleSizing);\n }\n computeShrinkWidth() {\n return hasShrinkWidth(this.props.cols)\n ? computeShrinkWidth(this.scrollerElRefs.getAll())\n : 0;\n }\n computeScrollerDims() {\n let scrollbarWidth = getScrollbarWidths();\n let { scrollerRefs, scrollerElRefs } = this;\n let forceYScrollbars = false;\n let scrollerClientWidths = {};\n let scrollerClientHeights = {};\n for (let sectionKey in scrollerRefs.currentMap) {\n let scroller = scrollerRefs.currentMap[sectionKey];\n if (scroller && scroller.needsYScrolling()) {\n forceYScrollbars = true;\n break;\n }\n }\n for (let section of this.props.sections) {\n let sectionKey = section.key;\n let scrollerEl = scrollerElRefs.currentMap[sectionKey];\n if (scrollerEl) {\n let harnessEl = scrollerEl.parentNode; // TODO: weird way to get this. need harness b/c doesn't include table borders\n scrollerClientWidths[sectionKey] = Math.floor(harnessEl.getBoundingClientRect().width - (forceYScrollbars\n ? scrollbarWidth.y // use global because scroller might not have scrollbars yet but will need them in future\n : 0));\n scrollerClientHeights[sectionKey] = Math.floor(harnessEl.getBoundingClientRect().height);\n }\n }\n return { forceYScrollbars, scrollerClientWidths, scrollerClientHeights };\n }\n}\nSimpleScrollGrid.addStateEquality({\n scrollerClientWidths: isPropsEqual,\n scrollerClientHeights: isPropsEqual,\n});\nfunction getSectionByKey(sections, key) {\n for (let section of sections) {\n if (section.key === key) {\n return section;\n }\n }\n return null;\n}\n\n// TODO: easier way to add new hooks? need to update a million things\nfunction createPlugin(input) {\n return {\n id: guid(),\n name: input.name,\n premiumReleaseDate: input.premiumReleaseDate ? new Date(input.premiumReleaseDate) : undefined,\n deps: input.deps || [],\n reducers: input.reducers || [],\n isLoadingFuncs: input.isLoadingFuncs || [],\n contextInit: [].concat(input.contextInit || []),\n eventRefiners: input.eventRefiners || {},\n eventDefMemberAdders: input.eventDefMemberAdders || [],\n eventSourceRefiners: input.eventSourceRefiners || {},\n isDraggableTransformers: input.isDraggableTransformers || [],\n eventDragMutationMassagers: input.eventDragMutationMassagers || [],\n eventDefMutationAppliers: input.eventDefMutationAppliers || [],\n dateSelectionTransformers: input.dateSelectionTransformers || [],\n datePointTransforms: input.datePointTransforms || [],\n dateSpanTransforms: input.dateSpanTransforms || [],\n views: input.views || {},\n viewPropsTransformers: input.viewPropsTransformers || [],\n isPropsValid: input.isPropsValid || null,\n externalDefTransforms: input.externalDefTransforms || [],\n viewContainerAppends: input.viewContainerAppends || [],\n eventDropTransformers: input.eventDropTransformers || [],\n componentInteractions: input.componentInteractions || [],\n calendarInteractions: input.calendarInteractions || [],\n themeClasses: input.themeClasses || {},\n eventSourceDefs: input.eventSourceDefs || [],\n cmdFormatter: input.cmdFormatter,\n recurringTypes: input.recurringTypes || [],\n namedTimeZonedImpl: input.namedTimeZonedImpl,\n initialView: input.initialView || '',\n elementDraggingImpl: input.elementDraggingImpl,\n optionChangeHandlers: input.optionChangeHandlers || {},\n scrollGridImpl: input.scrollGridImpl || null,\n listenerRefiners: input.listenerRefiners || {},\n optionRefiners: input.optionRefiners || {},\n propSetHandlers: input.propSetHandlers || {},\n };\n}\nfunction buildPluginHooks(pluginDefs, globalDefs) {\n let currentPluginIds = {};\n let hooks = {\n premiumReleaseDate: undefined,\n reducers: [],\n isLoadingFuncs: [],\n contextInit: [],\n eventRefiners: {},\n eventDefMemberAdders: [],\n eventSourceRefiners: {},\n isDraggableTransformers: [],\n eventDragMutationMassagers: [],\n eventDefMutationAppliers: [],\n dateSelectionTransformers: [],\n datePointTransforms: [],\n dateSpanTransforms: [],\n views: {},\n viewPropsTransformers: [],\n isPropsValid: null,\n externalDefTransforms: [],\n viewContainerAppends: [],\n eventDropTransformers: [],\n componentInteractions: [],\n calendarInteractions: [],\n themeClasses: {},\n eventSourceDefs: [],\n cmdFormatter: null,\n recurringTypes: [],\n namedTimeZonedImpl: null,\n initialView: '',\n elementDraggingImpl: null,\n optionChangeHandlers: {},\n scrollGridImpl: null,\n listenerRefiners: {},\n optionRefiners: {},\n propSetHandlers: {},\n };\n function addDefs(defs) {\n for (let def of defs) {\n const pluginName = def.name;\n const currentId = currentPluginIds[pluginName];\n if (currentId === undefined) {\n currentPluginIds[pluginName] = def.id;\n addDefs(def.deps);\n hooks = combineHooks(hooks, def);\n }\n else if (currentId !== def.id) {\n // different ID than the one already added\n console.warn(`Duplicate plugin '${pluginName}'`);\n }\n }\n }\n if (pluginDefs) {\n addDefs(pluginDefs);\n }\n addDefs(globalDefs);\n return hooks;\n}\nfunction buildBuildPluginHooks() {\n let currentOverrideDefs = [];\n let currentGlobalDefs = [];\n let currentHooks;\n return (overrideDefs, globalDefs) => {\n if (!currentHooks || !isArraysEqual(overrideDefs, currentOverrideDefs) || !isArraysEqual(globalDefs, currentGlobalDefs)) {\n currentHooks = buildPluginHooks(overrideDefs, globalDefs);\n }\n currentOverrideDefs = overrideDefs;\n currentGlobalDefs = globalDefs;\n return currentHooks;\n };\n}\nfunction combineHooks(hooks0, hooks1) {\n return {\n premiumReleaseDate: compareOptionalDates(hooks0.premiumReleaseDate, hooks1.premiumReleaseDate),\n reducers: hooks0.reducers.concat(hooks1.reducers),\n isLoadingFuncs: hooks0.isLoadingFuncs.concat(hooks1.isLoadingFuncs),\n contextInit: hooks0.contextInit.concat(hooks1.contextInit),\n eventRefiners: Object.assign(Object.assign({}, hooks0.eventRefiners), hooks1.eventRefiners),\n eventDefMemberAdders: hooks0.eventDefMemberAdders.concat(hooks1.eventDefMemberAdders),\n eventSourceRefiners: Object.assign(Object.assign({}, hooks0.eventSourceRefiners), hooks1.eventSourceRefiners),\n isDraggableTransformers: hooks0.isDraggableTransformers.concat(hooks1.isDraggableTransformers),\n eventDragMutationMassagers: hooks0.eventDragMutationMassagers.concat(hooks1.eventDragMutationMassagers),\n eventDefMutationAppliers: hooks0.eventDefMutationAppliers.concat(hooks1.eventDefMutationAppliers),\n dateSelectionTransformers: hooks0.dateSelectionTransformers.concat(hooks1.dateSelectionTransformers),\n datePointTransforms: hooks0.datePointTransforms.concat(hooks1.datePointTransforms),\n dateSpanTransforms: hooks0.dateSpanTransforms.concat(hooks1.dateSpanTransforms),\n views: Object.assign(Object.assign({}, hooks0.views), hooks1.views),\n viewPropsTransformers: hooks0.viewPropsTransformers.concat(hooks1.viewPropsTransformers),\n isPropsValid: hooks1.isPropsValid || hooks0.isPropsValid,\n externalDefTransforms: hooks0.externalDefTransforms.concat(hooks1.externalDefTransforms),\n viewContainerAppends: hooks0.viewContainerAppends.concat(hooks1.viewContainerAppends),\n eventDropTransformers: hooks0.eventDropTransformers.concat(hooks1.eventDropTransformers),\n calendarInteractions: hooks0.calendarInteractions.concat(hooks1.calendarInteractions),\n componentInteractions: hooks0.componentInteractions.concat(hooks1.componentInteractions),\n themeClasses: Object.assign(Object.assign({}, hooks0.themeClasses), hooks1.themeClasses),\n eventSourceDefs: hooks0.eventSourceDefs.concat(hooks1.eventSourceDefs),\n cmdFormatter: hooks1.cmdFormatter || hooks0.cmdFormatter,\n recurringTypes: hooks0.recurringTypes.concat(hooks1.recurringTypes),\n namedTimeZonedImpl: hooks1.namedTimeZonedImpl || hooks0.namedTimeZonedImpl,\n initialView: hooks0.initialView || hooks1.initialView,\n elementDraggingImpl: hooks0.elementDraggingImpl || hooks1.elementDraggingImpl,\n optionChangeHandlers: Object.assign(Object.assign({}, hooks0.optionChangeHandlers), hooks1.optionChangeHandlers),\n scrollGridImpl: hooks1.scrollGridImpl || hooks0.scrollGridImpl,\n listenerRefiners: Object.assign(Object.assign({}, hooks0.listenerRefiners), hooks1.listenerRefiners),\n optionRefiners: Object.assign(Object.assign({}, hooks0.optionRefiners), hooks1.optionRefiners),\n propSetHandlers: Object.assign(Object.assign({}, hooks0.propSetHandlers), hooks1.propSetHandlers),\n };\n}\nfunction compareOptionalDates(date0, date1) {\n if (date0 === undefined) {\n return date1;\n }\n if (date1 === undefined) {\n return date0;\n }\n return new Date(Math.max(date0.valueOf(), date1.valueOf()));\n}\n\nlet eventSourceDef$2 = {\n ignoreRange: true,\n parseMeta(refined) {\n if (Array.isArray(refined.events)) {\n return refined.events;\n }\n return null;\n },\n fetch(arg, successCallback) {\n successCallback({\n rawEvents: arg.eventSource.meta,\n });\n },\n};\nconst arrayEventSourcePlugin = createPlugin({\n name: 'array-event-source',\n eventSourceDefs: [eventSourceDef$2],\n});\n\nlet eventSourceDef$1 = {\n parseMeta(refined) {\n if (typeof refined.events === 'function') {\n return refined.events;\n }\n return null;\n },\n fetch(arg, successCallback, errorCallback) {\n const { dateEnv } = arg.context;\n const func = arg.eventSource.meta;\n unpromisify(func.bind(null, buildRangeApiWithTimeZone(arg.range, dateEnv)), (rawEvents) => successCallback({ rawEvents }), errorCallback);\n },\n};\nconst funcEventSourcePlugin = createPlugin({\n name: 'func-event-source',\n eventSourceDefs: [eventSourceDef$1],\n});\n\nconst JSON_FEED_EVENT_SOURCE_REFINERS = {\n method: String,\n extraParams: identity,\n startParam: String,\n endParam: String,\n timeZoneParam: String,\n};\n\nlet eventSourceDef = {\n parseMeta(refined) {\n if (refined.url && (refined.format === 'json' || !refined.format)) {\n return {\n url: refined.url,\n format: 'json',\n method: (refined.method || 'GET').toUpperCase(),\n extraParams: refined.extraParams,\n startParam: refined.startParam,\n endParam: refined.endParam,\n timeZoneParam: refined.timeZoneParam,\n };\n }\n return null;\n },\n fetch(arg, successCallback, errorCallback) {\n const { meta } = arg.eventSource;\n const requestParams = buildRequestParams(meta, arg.range, arg.context);\n requestJson(meta.method, meta.url, requestParams).then(([rawEvents, response]) => {\n successCallback({ rawEvents, response });\n }, errorCallback);\n },\n};\nconst jsonFeedEventSourcePlugin = createPlugin({\n name: 'json-event-source',\n eventSourceRefiners: JSON_FEED_EVENT_SOURCE_REFINERS,\n eventSourceDefs: [eventSourceDef],\n});\nfunction buildRequestParams(meta, range, context) {\n let { dateEnv, options } = context;\n let startParam;\n let endParam;\n let timeZoneParam;\n let customRequestParams;\n let params = {};\n startParam = meta.startParam;\n if (startParam == null) {\n startParam = options.startParam;\n }\n endParam = meta.endParam;\n if (endParam == null) {\n endParam = options.endParam;\n }\n timeZoneParam = meta.timeZoneParam;\n if (timeZoneParam == null) {\n timeZoneParam = options.timeZoneParam;\n }\n // retrieve any outbound GET/POST data from the options\n if (typeof meta.extraParams === 'function') {\n // supplied as a function that returns a key/value object\n customRequestParams = meta.extraParams();\n }\n else {\n // probably supplied as a straight key/value object\n customRequestParams = meta.extraParams || {};\n }\n Object.assign(params, customRequestParams);\n params[startParam] = dateEnv.formatIso(range.start);\n params[endParam] = dateEnv.formatIso(range.end);\n if (dateEnv.timeZone !== 'local') {\n params[timeZoneParam] = dateEnv.timeZone;\n }\n return params;\n}\n\nconst SIMPLE_RECURRING_REFINERS = {\n daysOfWeek: identity,\n startTime: createDuration,\n endTime: createDuration,\n duration: createDuration,\n startRecur: identity,\n endRecur: identity,\n};\n\nlet recurring = {\n parse(refined, dateEnv) {\n if (refined.daysOfWeek || refined.startTime || refined.endTime || refined.startRecur || refined.endRecur) {\n let recurringData = {\n daysOfWeek: refined.daysOfWeek || null,\n startTime: refined.startTime || null,\n endTime: refined.endTime || null,\n startRecur: refined.startRecur ? dateEnv.createMarker(refined.startRecur) : null,\n endRecur: refined.endRecur ? dateEnv.createMarker(refined.endRecur) : null,\n };\n let duration;\n if (refined.duration) {\n duration = refined.duration;\n }\n if (!duration && refined.startTime && refined.endTime) {\n duration = subtractDurations(refined.endTime, refined.startTime);\n }\n return {\n allDayGuess: Boolean(!refined.startTime && !refined.endTime),\n duration,\n typeData: recurringData, // doesn't need endTime anymore but oh well\n };\n }\n return null;\n },\n expand(typeData, framingRange, dateEnv) {\n let clippedFramingRange = intersectRanges(framingRange, { start: typeData.startRecur, end: typeData.endRecur });\n if (clippedFramingRange) {\n return expandRanges(typeData.daysOfWeek, typeData.startTime, clippedFramingRange, dateEnv);\n }\n return [];\n },\n};\nconst simpleRecurringEventsPlugin = createPlugin({\n name: 'simple-recurring-event',\n recurringTypes: [recurring],\n eventRefiners: SIMPLE_RECURRING_REFINERS,\n});\nfunction expandRanges(daysOfWeek, startTime, framingRange, dateEnv) {\n let dowHash = daysOfWeek ? arrayToHash(daysOfWeek) : null;\n let dayMarker = startOfDay(framingRange.start);\n let endMarker = framingRange.end;\n let instanceStarts = [];\n while (dayMarker < endMarker) {\n let instanceStart;\n // if everyday, or this particular day-of-week\n if (!dowHash || dowHash[dayMarker.getUTCDay()]) {\n if (startTime) {\n instanceStart = dateEnv.add(dayMarker, startTime);\n }\n else {\n instanceStart = dayMarker;\n }\n instanceStarts.push(instanceStart);\n }\n dayMarker = addDays(dayMarker, 1);\n }\n return instanceStarts;\n}\n\nconst changeHandlerPlugin = createPlugin({\n name: 'change-handler',\n optionChangeHandlers: {\n events(events, context) {\n handleEventSources([events], context);\n },\n eventSources: handleEventSources,\n },\n});\n/*\nBUG: if `event` was supplied, all previously-given `eventSources` will be wiped out\n*/\nfunction handleEventSources(inputs, context) {\n let unfoundSources = hashValuesToArray(context.getCurrentData().eventSources);\n let newInputs = [];\n for (let input of inputs) {\n let inputFound = false;\n for (let i = 0; i < unfoundSources.length; i += 1) {\n if (unfoundSources[i]._raw === input) {\n unfoundSources.splice(i, 1); // delete\n inputFound = true;\n break;\n }\n }\n if (!inputFound) {\n newInputs.push(input);\n }\n }\n for (let unfoundSource of unfoundSources) {\n context.dispatch({\n type: 'REMOVE_EVENT_SOURCE',\n sourceId: unfoundSource.sourceId,\n });\n }\n for (let newInput of newInputs) {\n context.calendarApi.addEventSource(newInput);\n }\n}\n\nfunction handleDateProfile(dateProfile, context) {\n context.emitter.trigger('datesSet', Object.assign(Object.assign({}, buildRangeApiWithTimeZone(dateProfile.activeRange, context.dateEnv)), { view: context.viewApi }));\n}\n\nfunction handleEventStore(eventStore, context) {\n let { emitter } = context;\n if (emitter.hasHandlers('eventsSet')) {\n emitter.trigger('eventsSet', buildEventApis(eventStore, context));\n }\n}\n\nconst EVENT_SOURCE_REFINERS = {\n id: String,\n defaultAllDay: Boolean,\n url: String,\n format: String,\n events: identity,\n eventDataTransform: identity,\n // for any network-related sources\n success: identity,\n failure: identity,\n};\nfunction parseEventSource(raw, context, refiners = buildEventSourceRefiners(context)) {\n let rawObj;\n if (typeof raw === 'string') {\n rawObj = { url: raw };\n }\n else if (typeof raw === 'function' || Array.isArray(raw)) {\n rawObj = { events: raw };\n }\n else if (typeof raw === 'object' && raw) { // not null\n rawObj = raw;\n }\n if (rawObj) {\n let { refined, extra } = refineProps(rawObj, refiners);\n let metaRes = buildEventSourceMeta(refined, context);\n if (metaRes) {\n return {\n _raw: raw,\n isFetching: false,\n latestFetchId: '',\n fetchRange: null,\n defaultAllDay: refined.defaultAllDay,\n eventDataTransform: refined.eventDataTransform,\n success: refined.success,\n failure: refined.failure,\n publicId: refined.id || '',\n sourceId: guid(),\n sourceDefId: metaRes.sourceDefId,\n meta: metaRes.meta,\n ui: createEventUi(refined, context),\n extendedProps: extra,\n };\n }\n }\n return null;\n}\nfunction buildEventSourceRefiners(context) {\n return Object.assign(Object.assign(Object.assign({}, EVENT_UI_REFINERS), EVENT_SOURCE_REFINERS), context.pluginHooks.eventSourceRefiners);\n}\nfunction buildEventSourceMeta(raw, context) {\n let defs = context.pluginHooks.eventSourceDefs;\n for (let i = defs.length - 1; i >= 0; i -= 1) { // later-added plugins take precedence\n let def = defs[i];\n let meta = def.parseMeta(raw);\n if (meta) {\n return { sourceDefId: i, meta };\n }\n }\n return null;\n}\n\nfunction initEventSources(calendarOptions, dateProfile, context) {\n let activeRange = dateProfile ? dateProfile.activeRange : null;\n return addSources({}, parseInitialSources(calendarOptions, context), activeRange, context);\n}\nfunction reduceEventSources(eventSources, action, dateProfile, context) {\n let activeRange = dateProfile ? dateProfile.activeRange : null; // need this check?\n switch (action.type) {\n case 'ADD_EVENT_SOURCES': // already parsed\n return addSources(eventSources, action.sources, activeRange, context);\n case 'REMOVE_EVENT_SOURCE':\n return removeSource(eventSources, action.sourceId);\n case 'PREV': // TODO: how do we track all actions that affect dateProfile :(\n case 'NEXT':\n case 'CHANGE_DATE':\n case 'CHANGE_VIEW_TYPE':\n if (dateProfile) {\n return fetchDirtySources(eventSources, activeRange, context);\n }\n return eventSources;\n case 'FETCH_EVENT_SOURCES':\n return fetchSourcesByIds(eventSources, action.sourceIds ? // why no type?\n arrayToHash(action.sourceIds) :\n excludeStaticSources(eventSources, context), activeRange, action.isRefetch || false, context);\n case 'RECEIVE_EVENTS':\n case 'RECEIVE_EVENT_ERROR':\n return receiveResponse(eventSources, action.sourceId, action.fetchId, action.fetchRange);\n case 'REMOVE_ALL_EVENT_SOURCES':\n return {};\n default:\n return eventSources;\n }\n}\nfunction reduceEventSourcesNewTimeZone(eventSources, dateProfile, context) {\n let activeRange = dateProfile ? dateProfile.activeRange : null; // need this check?\n return fetchSourcesByIds(eventSources, excludeStaticSources(eventSources, context), activeRange, true, context);\n}\nfunction computeEventSourcesLoading(eventSources) {\n for (let sourceId in eventSources) {\n if (eventSources[sourceId].isFetching) {\n return true;\n }\n }\n return false;\n}\nfunction addSources(eventSourceHash, sources, fetchRange, context) {\n let hash = {};\n for (let source of sources) {\n hash[source.sourceId] = source;\n }\n if (fetchRange) {\n hash = fetchDirtySources(hash, fetchRange, context);\n }\n return Object.assign(Object.assign({}, eventSourceHash), hash);\n}\nfunction removeSource(eventSourceHash, sourceId) {\n return filterHash(eventSourceHash, (eventSource) => eventSource.sourceId !== sourceId);\n}\nfunction fetchDirtySources(sourceHash, fetchRange, context) {\n return fetchSourcesByIds(sourceHash, filterHash(sourceHash, (eventSource) => isSourceDirty(eventSource, fetchRange, context)), fetchRange, false, context);\n}\nfunction isSourceDirty(eventSource, fetchRange, context) {\n if (!doesSourceNeedRange(eventSource, context)) {\n return !eventSource.latestFetchId;\n }\n return !context.options.lazyFetching ||\n !eventSource.fetchRange ||\n eventSource.isFetching || // always cancel outdated in-progress fetches\n fetchRange.start < eventSource.fetchRange.start ||\n fetchRange.end > eventSource.fetchRange.end;\n}\nfunction fetchSourcesByIds(prevSources, sourceIdHash, fetchRange, isRefetch, context) {\n let nextSources = {};\n for (let sourceId in prevSources) {\n let source = prevSources[sourceId];\n if (sourceIdHash[sourceId]) {\n nextSources[sourceId] = fetchSource(source, fetchRange, isRefetch, context);\n }\n else {\n nextSources[sourceId] = source;\n }\n }\n return nextSources;\n}\nfunction fetchSource(eventSource, fetchRange, isRefetch, context) {\n let { options, calendarApi } = context;\n let sourceDef = context.pluginHooks.eventSourceDefs[eventSource.sourceDefId];\n let fetchId = guid();\n sourceDef.fetch({\n eventSource,\n range: fetchRange,\n isRefetch,\n context,\n }, (res) => {\n let { rawEvents } = res;\n if (options.eventSourceSuccess) {\n rawEvents = options.eventSourceSuccess.call(calendarApi, rawEvents, res.response) || rawEvents;\n }\n if (eventSource.success) {\n rawEvents = eventSource.success.call(calendarApi, rawEvents, res.response) || rawEvents;\n }\n context.dispatch({\n type: 'RECEIVE_EVENTS',\n sourceId: eventSource.sourceId,\n fetchId,\n fetchRange,\n rawEvents,\n });\n }, (error) => {\n let errorHandled = false;\n if (options.eventSourceFailure) {\n options.eventSourceFailure.call(calendarApi, error);\n errorHandled = true;\n }\n if (eventSource.failure) {\n eventSource.failure(error);\n errorHandled = true;\n }\n if (!errorHandled) {\n console.warn(error.message, error);\n }\n context.dispatch({\n type: 'RECEIVE_EVENT_ERROR',\n sourceId: eventSource.sourceId,\n fetchId,\n fetchRange,\n error,\n });\n });\n return Object.assign(Object.assign({}, eventSource), { isFetching: true, latestFetchId: fetchId });\n}\nfunction receiveResponse(sourceHash, sourceId, fetchId, fetchRange) {\n let eventSource = sourceHash[sourceId];\n if (eventSource && // not already removed\n fetchId === eventSource.latestFetchId) {\n return Object.assign(Object.assign({}, sourceHash), { [sourceId]: Object.assign(Object.assign({}, eventSource), { isFetching: false, fetchRange }) });\n }\n return sourceHash;\n}\nfunction excludeStaticSources(eventSources, context) {\n return filterHash(eventSources, (eventSource) => doesSourceNeedRange(eventSource, context));\n}\nfunction parseInitialSources(rawOptions, context) {\n let refiners = buildEventSourceRefiners(context);\n let rawSources = [].concat(rawOptions.eventSources || []);\n let sources = []; // parsed\n if (rawOptions.initialEvents) {\n rawSources.unshift(rawOptions.initialEvents);\n }\n if (rawOptions.events) {\n rawSources.unshift(rawOptions.events);\n }\n for (let rawSource of rawSources) {\n let source = parseEventSource(rawSource, context, refiners);\n if (source) {\n sources.push(source);\n }\n }\n return sources;\n}\nfunction doesSourceNeedRange(eventSource, context) {\n let defs = context.pluginHooks.eventSourceDefs;\n return !defs[eventSource.sourceDefId].ignoreRange;\n}\n\n/*\nthis array is exposed on the root namespace so that UMD plugins can add to it.\nsee the rollup-bundles script.\n*/\nconst globalPlugins = [\n arrayEventSourcePlugin,\n funcEventSourcePlugin,\n jsonFeedEventSourcePlugin,\n simpleRecurringEventsPlugin,\n changeHandlerPlugin,\n createPlugin({\n name: 'misc',\n isLoadingFuncs: [\n (state) => computeEventSourcesLoading(state.eventSources),\n ],\n propSetHandlers: {\n dateProfile: handleDateProfile,\n eventStore: handleEventStore,\n },\n }),\n];\n\nclass EventContainer extends BaseComponent {\n constructor() {\n super(...arguments);\n this.elRef = createRef();\n }\n render() {\n const { props, context } = this;\n const { options } = context;\n const { seg } = props;\n const { eventRange } = seg;\n const { ui } = eventRange;\n const renderProps = {\n event: new EventImpl(context, eventRange.def, eventRange.instance),\n view: context.viewApi,\n timeText: props.timeText,\n textColor: ui.textColor,\n backgroundColor: ui.backgroundColor,\n borderColor: ui.borderColor,\n isDraggable: !props.disableDragging && computeSegDraggable(seg, context),\n isStartResizable: !props.disableResizing && computeSegStartResizable(seg, context),\n isEndResizable: !props.disableResizing && computeSegEndResizable(seg),\n isMirror: Boolean(props.isDragging || props.isResizing || props.isDateSelecting),\n isStart: Boolean(seg.isStart),\n isEnd: Boolean(seg.isEnd),\n isPast: Boolean(props.isPast),\n isFuture: Boolean(props.isFuture),\n isToday: Boolean(props.isToday),\n isSelected: Boolean(props.isSelected),\n isDragging: Boolean(props.isDragging),\n isResizing: Boolean(props.isResizing),\n };\n return (createElement(ContentContainer, Object.assign({}, props /* contains children */, { elRef: this.elRef, elClasses: [\n ...getEventClassNames(renderProps),\n ...seg.eventRange.ui.classNames,\n ...(props.elClasses || []),\n ], renderProps: renderProps, generatorName: \"eventContent\", generator: options.eventContent || props.defaultGenerator, classNameGenerator: options.eventClassNames, didMount: options.eventDidMount, willUnmount: options.eventWillUnmount })));\n }\n componentDidMount() {\n setElSeg(this.elRef.current, this.props.seg);\n }\n}\n\n// should not be a purecomponent\nclass StandardEvent extends BaseComponent {\n render() {\n let { props, context } = this;\n let { options } = context;\n let { seg } = props;\n let { ui } = seg.eventRange;\n let timeFormat = options.eventTimeFormat || props.defaultTimeFormat;\n let timeText = buildSegTimeText(seg, timeFormat, context, props.defaultDisplayEventTime, props.defaultDisplayEventEnd);\n return (createElement(EventContainer, Object.assign({}, props /* includes elRef */, { elTag: \"a\", elStyle: {\n borderColor: ui.borderColor,\n backgroundColor: ui.backgroundColor,\n }, elAttrs: getSegAnchorAttrs(seg, context), defaultGenerator: renderInnerContent$1, timeText: timeText }), (InnerContent, eventContentArg) => (createElement(Fragment, null,\n createElement(InnerContent, { elTag: \"div\", elClasses: ['fc-event-main'], elStyle: { color: eventContentArg.textColor } }),\n Boolean(eventContentArg.isStartResizable) && (createElement(\"div\", { className: \"fc-event-resizer fc-event-resizer-start\" })),\n Boolean(eventContentArg.isEndResizable) && (createElement(\"div\", { className: \"fc-event-resizer fc-event-resizer-end\" }))))));\n }\n}\nfunction renderInnerContent$1(innerProps) {\n return (createElement(\"div\", { className: \"fc-event-main-frame\" },\n innerProps.timeText && (createElement(\"div\", { className: \"fc-event-time\" }, innerProps.timeText)),\n createElement(\"div\", { className: \"fc-event-title-container\" },\n createElement(\"div\", { className: \"fc-event-title fc-sticky\" }, innerProps.event.title || createElement(Fragment, null, \"\\u00A0\")))));\n}\n\nconst NowIndicatorContainer = (props) => (createElement(ViewContextType.Consumer, null, (context) => {\n let { options } = context;\n let renderProps = {\n isAxis: props.isAxis,\n date: context.dateEnv.toDate(props.date),\n view: context.viewApi,\n };\n return (createElement(ContentContainer, Object.assign({}, props /* includes children */, { elTag: props.elTag || 'div', renderProps: renderProps, generatorName: \"nowIndicatorContent\", generator: options.nowIndicatorContent, classNameGenerator: options.nowIndicatorClassNames, didMount: options.nowIndicatorDidMount, willUnmount: options.nowIndicatorWillUnmount })));\n}));\n\nconst DAY_NUM_FORMAT = createFormatter({ day: 'numeric' });\nclass DayCellContainer extends BaseComponent {\n constructor() {\n super(...arguments);\n this.refineRenderProps = memoizeObjArg(refineRenderProps);\n }\n render() {\n let { props, context } = this;\n let { options } = context;\n let renderProps = this.refineRenderProps({\n date: props.date,\n dateProfile: props.dateProfile,\n todayRange: props.todayRange,\n showDayNumber: props.showDayNumber,\n extraRenderProps: props.extraRenderProps,\n viewApi: context.viewApi,\n dateEnv: context.dateEnv,\n });\n return (createElement(ContentContainer, Object.assign({}, props /* includes children */, { elClasses: [\n ...getDayClassNames(renderProps, context.theme),\n ...(props.elClasses || []),\n ], elAttrs: Object.assign(Object.assign({}, props.elAttrs), (renderProps.isDisabled ? {} : { 'data-date': formatDayString(props.date) })), renderProps: renderProps, generatorName: \"dayCellContent\", generator: options.dayCellContent || props.defaultGenerator, classNameGenerator: \n // don't use custom classNames if disabled\n renderProps.isDisabled ? undefined : options.dayCellClassNames, didMount: options.dayCellDidMount, willUnmount: options.dayCellWillUnmount })));\n }\n}\nfunction hasCustomDayCellContent(options) {\n return Boolean(options.dayCellContent || hasCustomRenderingHandler('dayCellContent', options));\n}\nfunction refineRenderProps(raw) {\n let { date, dateEnv } = raw;\n let dayMeta = getDateMeta(date, raw.todayRange, null, raw.dateProfile);\n return Object.assign(Object.assign(Object.assign({ date: dateEnv.toDate(date), view: raw.viewApi }, dayMeta), { dayNumberText: raw.showDayNumber ? dateEnv.format(date, DAY_NUM_FORMAT) : '' }), raw.extraRenderProps);\n}\n\nclass BgEvent extends BaseComponent {\n render() {\n let { props } = this;\n let { seg } = props;\n return (createElement(EventContainer, { elTag: \"div\", elClasses: ['fc-bg-event'], elStyle: { backgroundColor: seg.eventRange.ui.backgroundColor }, defaultGenerator: renderInnerContent, seg: seg, timeText: \"\", isDragging: false, isResizing: false, isDateSelecting: false, isSelected: false, isPast: props.isPast, isFuture: props.isFuture, isToday: props.isToday, disableDragging: true, disableResizing: true }));\n }\n}\nfunction renderInnerContent(props) {\n let { title } = props.event;\n return title && (createElement(\"div\", { className: \"fc-event-title\" }, props.event.title));\n}\nfunction renderFill(fillType) {\n return (createElement(\"div\", { className: `fc-${fillType}` }));\n}\n\nconst WeekNumberContainer = (props) => (createElement(ViewContextType.Consumer, null, (context) => {\n let { dateEnv, options } = context;\n let { date } = props;\n let format = options.weekNumberFormat || props.defaultFormat;\n let num = dateEnv.computeWeekNumber(date); // TODO: somehow use for formatting as well?\n let text = dateEnv.format(date, format);\n let renderProps = { num, text, date };\n return (createElement(ContentContainer // why isn't WeekNumberContentArg being auto-detected?\n , Object.assign({}, props /* includes children */, { renderProps: renderProps, generatorName: \"weekNumberContent\", generator: options.weekNumberContent || renderInner, classNameGenerator: options.weekNumberClassNames, didMount: options.weekNumberDidMount, willUnmount: options.weekNumberWillUnmount })));\n}));\nfunction renderInner(innerProps) {\n return innerProps.text;\n}\n\nconst PADDING_FROM_VIEWPORT = 10;\nclass Popover extends BaseComponent {\n constructor() {\n super(...arguments);\n this.state = {\n titleId: getUniqueDomId(),\n };\n this.handleRootEl = (el) => {\n this.rootEl = el;\n if (this.props.elRef) {\n setRef(this.props.elRef, el);\n }\n };\n // Triggered when the user clicks *anywhere* in the document, for the autoHide feature\n this.handleDocumentMouseDown = (ev) => {\n // only hide the popover if the click happened outside the popover\n const target = getEventTargetViaRoot(ev);\n if (!this.rootEl.contains(target)) {\n this.handleCloseClick();\n }\n };\n this.handleDocumentKeyDown = (ev) => {\n if (ev.key === 'Escape') {\n this.handleCloseClick();\n }\n };\n this.handleCloseClick = () => {\n let { onClose } = this.props;\n if (onClose) {\n onClose();\n }\n };\n }\n render() {\n let { theme, options } = this.context;\n let { props, state } = this;\n let classNames = [\n 'fc-popover',\n theme.getClass('popover'),\n ].concat(props.extraClassNames || []);\n return createPortal(createElement(\"div\", Object.assign({}, props.extraAttrs, { id: props.id, className: classNames.join(' '), \"aria-labelledby\": state.titleId, ref: this.handleRootEl }),\n createElement(\"div\", { className: 'fc-popover-header ' + theme.getClass('popoverHeader') },\n createElement(\"span\", { className: \"fc-popover-title\", id: state.titleId }, props.title),\n createElement(\"span\", { className: 'fc-popover-close ' + theme.getIconClass('close'), title: options.closeHint, onClick: this.handleCloseClick })),\n createElement(\"div\", { className: 'fc-popover-body ' + theme.getClass('popoverContent') }, props.children)), props.parentEl);\n }\n componentDidMount() {\n document.addEventListener('mousedown', this.handleDocumentMouseDown);\n document.addEventListener('keydown', this.handleDocumentKeyDown);\n this.updateSize();\n }\n componentWillUnmount() {\n document.removeEventListener('mousedown', this.handleDocumentMouseDown);\n document.removeEventListener('keydown', this.handleDocumentKeyDown);\n }\n updateSize() {\n let { isRtl } = this.context;\n let { alignmentEl, alignGridTop } = this.props;\n let { rootEl } = this;\n let alignmentRect = computeClippedClientRect(alignmentEl);\n if (alignmentRect) {\n let popoverDims = rootEl.getBoundingClientRect();\n // position relative to viewport\n let popoverTop = alignGridTop\n ? elementClosest(alignmentEl, '.fc-scrollgrid').getBoundingClientRect().top\n : alignmentRect.top;\n let popoverLeft = isRtl ? alignmentRect.right - popoverDims.width : alignmentRect.left;\n // constrain\n popoverTop = Math.max(popoverTop, PADDING_FROM_VIEWPORT);\n popoverLeft = Math.min(popoverLeft, document.documentElement.clientWidth - PADDING_FROM_VIEWPORT - popoverDims.width);\n popoverLeft = Math.max(popoverLeft, PADDING_FROM_VIEWPORT);\n let origin = rootEl.offsetParent.getBoundingClientRect();\n applyStyle(rootEl, {\n top: popoverTop - origin.top,\n left: popoverLeft - origin.left,\n });\n }\n }\n}\n\nclass MorePopover extends DateComponent {\n constructor() {\n super(...arguments);\n this.handleRootEl = (rootEl) => {\n this.rootEl = rootEl;\n if (rootEl) {\n this.context.registerInteractiveComponent(this, {\n el: rootEl,\n useEventCenter: false,\n });\n }\n else {\n this.context.unregisterInteractiveComponent(this);\n }\n };\n }\n render() {\n let { options, dateEnv } = this.context;\n let { props } = this;\n let { startDate, todayRange, dateProfile } = props;\n let title = dateEnv.format(startDate, options.dayPopoverFormat);\n return (createElement(DayCellContainer, { elRef: this.handleRootEl, date: startDate, dateProfile: dateProfile, todayRange: todayRange }, (InnerContent, renderProps, elAttrs) => (createElement(Popover, { elRef: elAttrs.ref, id: props.id, title: title, extraClassNames: ['fc-more-popover'].concat(elAttrs.className || []), extraAttrs: elAttrs /* TODO: make these time-based when not whole-day? */, parentEl: props.parentEl, alignmentEl: props.alignmentEl, alignGridTop: props.alignGridTop, onClose: props.onClose },\n hasCustomDayCellContent(options) && (createElement(InnerContent, { elTag: \"div\", elClasses: ['fc-more-popover-misc'] })),\n props.children))));\n }\n queryHit(positionLeft, positionTop, elWidth, elHeight) {\n let { rootEl, props } = this;\n if (positionLeft >= 0 && positionLeft < elWidth &&\n positionTop >= 0 && positionTop < elHeight) {\n return {\n dateProfile: props.dateProfile,\n dateSpan: Object.assign({ allDay: true, range: {\n start: props.startDate,\n end: props.endDate,\n } }, props.extraDateSpan),\n dayEl: rootEl,\n rect: {\n left: 0,\n top: 0,\n right: elWidth,\n bottom: elHeight,\n },\n layer: 1, // important when comparing with hits from other components\n };\n }\n return null;\n }\n}\n\nclass MoreLinkContainer extends BaseComponent {\n constructor() {\n super(...arguments);\n this.linkElRef = createRef();\n this.state = {\n isPopoverOpen: false,\n popoverId: getUniqueDomId(),\n };\n this.handleClick = (ev) => {\n let { props, context } = this;\n let { moreLinkClick } = context.options;\n let date = computeRange(props).start;\n function buildPublicSeg(seg) {\n let { def, instance, range } = seg.eventRange;\n return {\n event: new EventImpl(context, def, instance),\n start: context.dateEnv.toDate(range.start),\n end: context.dateEnv.toDate(range.end),\n isStart: seg.isStart,\n isEnd: seg.isEnd,\n };\n }\n if (typeof moreLinkClick === 'function') {\n moreLinkClick = moreLinkClick({\n date,\n allDay: Boolean(props.allDayDate),\n allSegs: props.allSegs.map(buildPublicSeg),\n hiddenSegs: props.hiddenSegs.map(buildPublicSeg),\n jsEvent: ev,\n view: context.viewApi,\n });\n }\n if (!moreLinkClick || moreLinkClick === 'popover') {\n this.setState({ isPopoverOpen: true });\n }\n else if (typeof moreLinkClick === 'string') { // a view name\n context.calendarApi.zoomTo(date, moreLinkClick);\n }\n };\n this.handlePopoverClose = () => {\n this.setState({ isPopoverOpen: false });\n };\n }\n render() {\n let { props, state } = this;\n return (createElement(ViewContextType.Consumer, null, (context) => {\n let { viewApi, options, calendarApi } = context;\n let { moreLinkText } = options;\n let { moreCnt } = props;\n let range = computeRange(props);\n let text = typeof moreLinkText === 'function' // TODO: eventually use formatWithOrdinals\n ? moreLinkText.call(calendarApi, moreCnt)\n : `+${moreCnt} ${moreLinkText}`;\n let hint = formatWithOrdinals(options.moreLinkHint, [moreCnt], text);\n let renderProps = {\n num: moreCnt,\n shortText: `+${moreCnt}`,\n text,\n view: viewApi,\n };\n return (createElement(Fragment, null,\n Boolean(props.moreCnt) && (createElement(ContentContainer, { elTag: props.elTag || 'a', elRef: this.linkElRef, elClasses: [\n ...(props.elClasses || []),\n 'fc-more-link',\n ], elAttrs: Object.assign(Object.assign(Object.assign({}, props.elAttrs), createAriaClickAttrs(this.handleClick)), { title: hint, 'aria-expanded': state.isPopoverOpen, 'aria-controls': state.isPopoverOpen ? state.popoverId : '' }), renderProps: renderProps, generatorName: \"moreLinkContent\", generator: options.moreLinkContent || props.defaultGenerator || renderMoreLinkInner, classNameGenerator: options.moreLinkClassNames, didMount: options.moreLinkDidMount, willUnmount: options.moreLinkWillUnmount }, props.children)),\n state.isPopoverOpen && (createElement(MorePopover, { id: state.popoverId, startDate: range.start, endDate: range.end, dateProfile: props.dateProfile, todayRange: props.todayRange, extraDateSpan: props.extraDateSpan, parentEl: this.parentEl, alignmentEl: props.alignmentElRef ?\n props.alignmentElRef.current :\n this.linkElRef.current, alignGridTop: props.alignGridTop, onClose: this.handlePopoverClose }, props.popoverContent()))));\n }));\n }\n componentDidMount() {\n this.updateParentEl();\n }\n componentDidUpdate() {\n this.updateParentEl();\n }\n updateParentEl() {\n if (this.linkElRef.current) {\n this.parentEl = elementClosest(this.linkElRef.current, '.fc-view-harness');\n }\n }\n}\nfunction renderMoreLinkInner(props) {\n return props.text;\n}\nfunction computeRange(props) {\n if (props.allDayDate) {\n return {\n start: props.allDayDate,\n end: addDays(props.allDayDate, 1),\n };\n }\n let { hiddenSegs } = props;\n return {\n start: computeEarliestSegStart(hiddenSegs),\n end: computeLatestSegEnd(hiddenSegs),\n };\n}\nfunction computeEarliestSegStart(segs) {\n return segs.reduce(pickEarliestStart).eventRange.range.start;\n}\nfunction pickEarliestStart(seg0, seg1) {\n return seg0.eventRange.range.start < seg1.eventRange.range.start ? seg0 : seg1;\n}\nfunction computeLatestSegEnd(segs) {\n return segs.reduce(pickLatestEnd).eventRange.range.end;\n}\nfunction pickLatestEnd(seg0, seg1) {\n return seg0.eventRange.range.end > seg1.eventRange.range.end ? seg0 : seg1;\n}\n\nclass ViewContainer extends BaseComponent {\n render() {\n let { props, context } = this;\n let { options } = context;\n let renderProps = { view: context.viewApi };\n return (createElement(ContentContainer, Object.assign({}, props, { elTag: props.elTag || 'div', elClasses: [\n ...buildViewClassNames(props.viewSpec),\n ...(props.elClasses || []),\n ], renderProps: renderProps, classNameGenerator: options.viewClassNames, generatorName: undefined, generator: undefined, didMount: options.viewDidMount, willUnmount: options.viewWillUnmount }), () => props.children));\n }\n}\nfunction buildViewClassNames(viewSpec) {\n return [\n `fc-${viewSpec.type}-view`,\n 'fc-view',\n ];\n}\n\nfunction injectStyles(css) {\n if (!css || typeof document === 'undefined') {\n return;\n }\n const head = document.head || document.getElementsByTagName('head')[0];\n const style = document.createElement('style');\n style.type = 'text/css';\n head.appendChild(style);\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n }\n else {\n style.appendChild(document.createTextNode(css));\n }\n}\n\nclass CalendarImpl {\n getCurrentData() {\n return this.currentDataManager.getCurrentData();\n }\n dispatch(action) {\n this.currentDataManager.dispatch(action);\n }\n get view() { return this.getCurrentData().viewApi; }\n batchRendering(callback) {\n callback();\n }\n updateSize() {\n this.trigger('_resize', true);\n }\n // Options\n // -----------------------------------------------------------------------------------------------------------------\n setOption(name, val) {\n this.dispatch({\n type: 'SET_OPTION',\n optionName: name,\n rawOptionValue: val,\n });\n }\n getOption(name) {\n return this.currentDataManager.currentCalendarOptionsInput[name];\n }\n getAvailableLocaleCodes() {\n return Object.keys(this.getCurrentData().availableRawLocales);\n }\n // Trigger\n // -----------------------------------------------------------------------------------------------------------------\n on(handlerName, handler) {\n let { currentDataManager } = this;\n if (currentDataManager.currentCalendarOptionsRefiners[handlerName]) {\n currentDataManager.emitter.on(handlerName, handler);\n }\n else {\n console.warn(`Unknown listener name '${handlerName}'`);\n }\n }\n off(handlerName, handler) {\n this.currentDataManager.emitter.off(handlerName, handler);\n }\n // not meant for public use\n trigger(handlerName, ...args) {\n this.currentDataManager.emitter.trigger(handlerName, ...args);\n }\n // View\n // -----------------------------------------------------------------------------------------------------------------\n changeView(viewType, dateOrRange) {\n this.batchRendering(() => {\n this.unselect();\n if (dateOrRange) {\n if (dateOrRange.start && dateOrRange.end) { // a range\n this.dispatch({\n type: 'CHANGE_VIEW_TYPE',\n viewType,\n });\n this.dispatch({\n type: 'SET_OPTION',\n optionName: 'visibleRange',\n rawOptionValue: dateOrRange,\n });\n }\n else {\n let { dateEnv } = this.getCurrentData();\n this.dispatch({\n type: 'CHANGE_VIEW_TYPE',\n viewType,\n dateMarker: dateEnv.createMarker(dateOrRange),\n });\n }\n }\n else {\n this.dispatch({\n type: 'CHANGE_VIEW_TYPE',\n viewType,\n });\n }\n });\n }\n // Forces navigation to a view for the given date.\n // `viewType` can be a specific view name or a generic one like \"week\" or \"day\".\n // needs to change\n zoomTo(dateMarker, viewType) {\n let state = this.getCurrentData();\n let spec;\n viewType = viewType || 'day'; // day is default zoom\n spec = state.viewSpecs[viewType] || this.getUnitViewSpec(viewType);\n this.unselect();\n if (spec) {\n this.dispatch({\n type: 'CHANGE_VIEW_TYPE',\n viewType: spec.type,\n dateMarker,\n });\n }\n else {\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker,\n });\n }\n }\n // Given a duration singular unit, like \"week\" or \"day\", finds a matching view spec.\n // Preference is given to views that have corresponding buttons.\n getUnitViewSpec(unit) {\n let { viewSpecs, toolbarConfig } = this.getCurrentData();\n let viewTypes = [].concat(toolbarConfig.header ? toolbarConfig.header.viewsWithButtons : [], toolbarConfig.footer ? toolbarConfig.footer.viewsWithButtons : []);\n let i;\n let spec;\n for (let viewType in viewSpecs) {\n viewTypes.push(viewType);\n }\n for (i = 0; i < viewTypes.length; i += 1) {\n spec = viewSpecs[viewTypes[i]];\n if (spec) {\n if (spec.singleUnit === unit) {\n return spec;\n }\n }\n }\n return null;\n }\n // Current Date\n // -----------------------------------------------------------------------------------------------------------------\n prev() {\n this.unselect();\n this.dispatch({ type: 'PREV' });\n }\n next() {\n this.unselect();\n this.dispatch({ type: 'NEXT' });\n }\n prevYear() {\n let state = this.getCurrentData();\n this.unselect();\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker: state.dateEnv.addYears(state.currentDate, -1),\n });\n }\n nextYear() {\n let state = this.getCurrentData();\n this.unselect();\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker: state.dateEnv.addYears(state.currentDate, 1),\n });\n }\n today() {\n let state = this.getCurrentData();\n this.unselect();\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker: getNow(state.calendarOptions.now, state.dateEnv),\n });\n }\n gotoDate(zonedDateInput) {\n let state = this.getCurrentData();\n this.unselect();\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker: state.dateEnv.createMarker(zonedDateInput),\n });\n }\n incrementDate(deltaInput) {\n let state = this.getCurrentData();\n let delta = createDuration(deltaInput);\n if (delta) { // else, warn about invalid input?\n this.unselect();\n this.dispatch({\n type: 'CHANGE_DATE',\n dateMarker: state.dateEnv.add(state.currentDate, delta),\n });\n }\n }\n getDate() {\n let state = this.getCurrentData();\n return state.dateEnv.toDate(state.currentDate);\n }\n // Date Formatting Utils\n // -----------------------------------------------------------------------------------------------------------------\n formatDate(d, formatter) {\n let { dateEnv } = this.getCurrentData();\n return dateEnv.format(dateEnv.createMarker(d), createFormatter(formatter));\n }\n // `settings` is for formatter AND isEndExclusive\n formatRange(d0, d1, settings) {\n let { dateEnv } = this.getCurrentData();\n return dateEnv.formatRange(dateEnv.createMarker(d0), dateEnv.createMarker(d1), createFormatter(settings), settings);\n }\n formatIso(d, omitTime) {\n let { dateEnv } = this.getCurrentData();\n return dateEnv.formatIso(dateEnv.createMarker(d), { omitTime });\n }\n // Date Selection / Event Selection / DayClick\n // -----------------------------------------------------------------------------------------------------------------\n select(dateOrObj, endDate) {\n let selectionInput;\n if (endDate == null) {\n if (dateOrObj.start != null) {\n selectionInput = dateOrObj;\n }\n else {\n selectionInput = {\n start: dateOrObj,\n end: null,\n };\n }\n }\n else {\n selectionInput = {\n start: dateOrObj,\n end: endDate,\n };\n }\n let state = this.getCurrentData();\n let selection = parseDateSpan(selectionInput, state.dateEnv, createDuration({ days: 1 }));\n if (selection) { // throw parse error otherwise?\n this.dispatch({ type: 'SELECT_DATES', selection });\n triggerDateSelect(selection, null, state);\n }\n }\n unselect(pev) {\n let state = this.getCurrentData();\n if (state.dateSelection) {\n this.dispatch({ type: 'UNSELECT_DATES' });\n triggerDateUnselect(pev, state);\n }\n }\n // Public Events API\n // -----------------------------------------------------------------------------------------------------------------\n addEvent(eventInput, sourceInput) {\n if (eventInput instanceof EventImpl) {\n let def = eventInput._def;\n let instance = eventInput._instance;\n let currentData = this.getCurrentData();\n // not already present? don't want to add an old snapshot\n if (!currentData.eventStore.defs[def.defId]) {\n this.dispatch({\n type: 'ADD_EVENTS',\n eventStore: eventTupleToStore({ def, instance }), // TODO: better util for two args?\n });\n this.triggerEventAdd(eventInput);\n }\n return eventInput;\n }\n let state = this.getCurrentData();\n let eventSource;\n if (sourceInput instanceof EventSourceImpl) {\n eventSource = sourceInput.internalEventSource;\n }\n else if (typeof sourceInput === 'boolean') {\n if (sourceInput) { // true. part of the first event source\n [eventSource] = hashValuesToArray(state.eventSources);\n }\n }\n else if (sourceInput != null) { // an ID. accepts a number too\n let sourceApi = this.getEventSourceById(sourceInput); // TODO: use an internal function\n if (!sourceApi) {\n console.warn(`Could not find an event source with ID \"${sourceInput}\"`); // TODO: test\n return null;\n }\n eventSource = sourceApi.internalEventSource;\n }\n let tuple = parseEvent(eventInput, eventSource, state, false);\n if (tuple) {\n let newEventApi = new EventImpl(state, tuple.def, tuple.def.recurringDef ? null : tuple.instance);\n this.dispatch({\n type: 'ADD_EVENTS',\n eventStore: eventTupleToStore(tuple),\n });\n this.triggerEventAdd(newEventApi);\n return newEventApi;\n }\n return null;\n }\n triggerEventAdd(eventApi) {\n let { emitter } = this.getCurrentData();\n emitter.trigger('eventAdd', {\n event: eventApi,\n relatedEvents: [],\n revert: () => {\n this.dispatch({\n type: 'REMOVE_EVENTS',\n eventStore: eventApiToStore(eventApi),\n });\n },\n });\n }\n // TODO: optimize\n getEventById(id) {\n let state = this.getCurrentData();\n let { defs, instances } = state.eventStore;\n id = String(id);\n for (let defId in defs) {\n let def = defs[defId];\n if (def.publicId === id) {\n if (def.recurringDef) {\n return new EventImpl(state, def, null);\n }\n for (let instanceId in instances) {\n let instance = instances[instanceId];\n if (instance.defId === def.defId) {\n return new EventImpl(state, def, instance);\n }\n }\n }\n }\n return null;\n }\n getEvents() {\n let currentData = this.getCurrentData();\n return buildEventApis(currentData.eventStore, currentData);\n }\n removeAllEvents() {\n this.dispatch({ type: 'REMOVE_ALL_EVENTS' });\n }\n // Public Event Sources API\n // -----------------------------------------------------------------------------------------------------------------\n getEventSources() {\n let state = this.getCurrentData();\n let sourceHash = state.eventSources;\n let sourceApis = [];\n for (let internalId in sourceHash) {\n sourceApis.push(new EventSourceImpl(state, sourceHash[internalId]));\n }\n return sourceApis;\n }\n getEventSourceById(id) {\n let state = this.getCurrentData();\n let sourceHash = state.eventSources;\n id = String(id);\n for (let sourceId in sourceHash) {\n if (sourceHash[sourceId].publicId === id) {\n return new EventSourceImpl(state, sourceHash[sourceId]);\n }\n }\n return null;\n }\n addEventSource(sourceInput) {\n let state = this.getCurrentData();\n if (sourceInput instanceof EventSourceImpl) {\n // not already present? don't want to add an old snapshot\n if (!state.eventSources[sourceInput.internalEventSource.sourceId]) {\n this.dispatch({\n type: 'ADD_EVENT_SOURCES',\n sources: [sourceInput.internalEventSource],\n });\n }\n return sourceInput;\n }\n let eventSource = parseEventSource(sourceInput, state);\n if (eventSource) { // TODO: error otherwise?\n this.dispatch({ type: 'ADD_EVENT_SOURCES', sources: [eventSource] });\n return new EventSourceImpl(state, eventSource);\n }\n return null;\n }\n removeAllEventSources() {\n this.dispatch({ type: 'REMOVE_ALL_EVENT_SOURCES' });\n }\n refetchEvents() {\n this.dispatch({ type: 'FETCH_EVENT_SOURCES', isRefetch: true });\n }\n // Scroll\n // -----------------------------------------------------------------------------------------------------------------\n scrollToTime(timeInput) {\n let time = createDuration(timeInput);\n if (time) {\n this.trigger('_scrollRequest', { time });\n }\n }\n}\n\nclass Store {\n constructor() {\n this.handlers = [];\n }\n set(value) {\n this.currentValue = value;\n for (let handler of this.handlers) {\n handler(value);\n }\n }\n subscribe(handler) {\n this.handlers.push(handler);\n if (this.currentValue !== undefined) {\n handler(this.currentValue);\n }\n }\n}\n\n/*\nSubscribers will get a LIST of CustomRenderings\n*/\nclass CustomRenderingStore extends Store {\n constructor() {\n super(...arguments);\n this.map = new Map();\n }\n // for consistent order\n handle(customRendering) {\n const { map } = this;\n let updated = false;\n if (customRendering.isActive) {\n map.set(customRendering.id, customRendering);\n updated = true;\n }\n else if (map.has(customRendering.id)) {\n map.delete(customRendering.id);\n updated = true;\n }\n if (updated) {\n this.set(map);\n }\n }\n}\n\nexport { interactionSettingsStore as $, BASE_OPTION_REFINERS as A, BASE_OPTION_DEFAULTS as B, ContentContainer as C, DelayedRunner as D, Emitter as E, CALENDAR_LISTENER_REFINERS as F, CALENDAR_OPTION_REFINERS as G, COMPLEX_OPTION_COMPARATORS as H, VIEW_OPTION_REFINERS as I, DateEnv as J, DateProfileGenerator as K, createEventUi as L, parseBusinessHours as M, BaseComponent as N, setRef as O, Interaction as P, getElSeg as Q, elementClosest as R, EventImpl as S, Theme as T, listenBySelector as U, ViewContextType as V, listenToHoverBySelector as W, PureComponent as X, buildViewContext as Y, getUniqueDomId as Z, parseInteractionSettings as _, mapHash as a, whenTransitionDone as a$, getNow as a0, CalendarImpl as a1, flushSync as a2, CalendarRoot as a3, RenderId as a4, isArraysEqual as a5, applyStyleProp as a6, sliceEventStore as a7, createPlugin as a8, JsonRequestError as a9, pointInsideRect as aA, constrainPoint as aB, getRectCenter as aC, diffPoints as aD, translateRect as aE, filterHash as aF, compareObjs as aG, collectFromHash as aH, findElements as aI, findDirectChildren as aJ, removeElement as aK, applyStyle as aL, elementMatches as aM, getElRoot as aN, getEventTargetViaRoot as aO, parseClassNames as aP, getCanVGrowWithinCell as aQ, mergeEventStores as aR, getRelevantEvents as aS, eventTupleToStore as aT, combineEventUis as aU, Splitter as aV, getDayClassNames as aW, getDateMeta as aX, getSlotClassNames as aY, buildNavLinkAttrs as aZ, preventDefault as a_, createContext as aa, identity as ab, refineProps as ac, createEventInstance as ad, parseEventDef as ae, refineEventDef as af, padStart as ag, isInt as ah, parseFieldSpecs as ai, compareByFieldSpecs as aj, flexibleCompare as ak, preventSelection as al, allowSelection as am, preventContextMenu as an, allowContextMenu as ao, compareNumbers as ap, enableCursor as aq, disableCursor as ar, guid as as, computeVisibleDayRange as at, isMultiDayRange as au, diffDates as av, removeExact as aw, memoizeArraylike as ax, memoizeHashlike as ay, intersectRects as az, buildViewClassNames as b, requestJson as b$, computeInnerRect as b0, computeEdges as b1, getClippingParents as b2, computeRect as b3, unpromisify as b4, intersectRanges as b5, rangesEqual as b6, rangesIntersect as b7, rangeContainsRange as b8, PositionCache as b9, SegHierarchy as bA, buildEntryKey as bB, getEntrySpanEnd as bC, binarySearch as bD, groupIntersectingEntries as bE, intersectSpans as bF, interactionSettingsToStore as bG, ElementDragging as bH, config as bI, parseDragMeta as bJ, DayHeader as bK, computeFallbackHeaderFormat as bL, TableDateCell as bM, TableDowCell as bN, DaySeriesModel as bO, hasBgRendering as bP, buildSegTimeText as bQ, sortEventSegs as bR, getSegMeta as bS, buildEventRangeKey as bT, getSegAnchorAttrs as bU, DayTableModel as bV, Slicer as bW, applyMutationToEventStore as bX, isPropsValid as bY, isInteractionValid as bZ, isDateSelectionValid as b_, ScrollController as ba, ElementScrollController as bb, WindowScrollController as bc, DateComponent as bd, isDateSpansEqual as be, addDays as bf, startOfDay as bg, addMs as bh, addWeeks as bi, diffWeeks as bj, diffWholeWeeks as bk, diffDayAndTime as bl, diffDays as bm, isValidDate as bn, asCleanDays as bo, multiplyDuration as bp, addDurations as bq, asRoughMinutes as br, asRoughSeconds as bs, asRoughMs as bt, wholeDivideDurations as bu, formatIsoTimeString as bv, formatDayString as bw, buildIsoString as bx, NamedTimeZoneImpl as by, parse as bz, greatestDurationDenominator as c, SimpleScrollGrid as c0, hasShrinkWidth as c1, renderMicroColGroup as c2, getScrollGridClassNames as c3, getSectionClassNames as c4, getSectionHasLiquidHeight as c5, getAllowYScrolling as c6, renderChunkContent as c7, computeShrinkWidth as c8, sanitizeShrinkWidth as c9, isColPropsEqual as ca, renderScrollShim as cb, getStickyFooterScrollbar as cc, getStickyHeaderDates as cd, Scroller as ce, getScrollbarWidths as cf, RefMap as cg, getIsRtlScrollbarOnLeft as ch, NowTimer as ci, ScrollResponder as cj, StandardEvent as ck, NowIndicatorContainer as cl, DayCellContainer as cm, hasCustomDayCellContent as cn, EventContainer as co, renderFill as cp, BgEvent as cq, WeekNumberContainer as cr, MoreLinkContainer as cs, computeEarliestSegStart as ct, ViewContainer as cu, triggerDateSelect as cv, getDefaultEventEnd as cw, buildEventApis as cx, buildElAttrs as cy, CustomRenderingStore as cz, createDuration as d, createFormatter as e, formatWithOrdinals as f, globalLocales as g, diffWholeDays as h, injectStyles as i, memoize as j, buildBuildPluginHooks as k, memoizeObjArg as l, mergeProps as m, isPropsEqual as n, getInitialDate as o, initEventSources as p, createEmptyEventStore as q, rangeContainsMarker as r, reduceCurrentDate as s, reduceEventSources as t, reduceEventStore as u, computeEventSourcesLoading as v, reduceEventSourcesNewTimeZone as w, rezoneEventStoreDates as x, mergeRawOptions as y, globalPlugins as z };\n","import { i as injectStyles, g as globalLocales, m as mergeProps, T as Theme, a as mapHash, V as ViewContextType, C as ContentContainer, b as buildViewClassNames, c as greatestDurationDenominator, d as createDuration, B as BASE_OPTION_DEFAULTS, f as formatWithOrdinals, D as DelayedRunner, e as createFormatter, h as diffWholeDays, j as memoize, k as buildBuildPluginHooks, l as memoizeObjArg, n as isPropsEqual, E as Emitter, o as getInitialDate, r as rangeContainsMarker, p as initEventSources, q as createEmptyEventStore, s as reduceCurrentDate, t as reduceEventSources, u as reduceEventStore, v as computeEventSourcesLoading, w as reduceEventSourcesNewTimeZone, x as rezoneEventStoreDates, y as mergeRawOptions, z as globalPlugins, A as BASE_OPTION_REFINERS, F as CALENDAR_LISTENER_REFINERS, G as CALENDAR_OPTION_REFINERS, H as COMPLEX_OPTION_COMPARATORS, I as VIEW_OPTION_REFINERS, J as DateEnv, K as DateProfileGenerator, L as createEventUi, M as parseBusinessHours, N as BaseComponent, O as setRef, P as Interaction, Q as getElSeg, R as elementClosest, S as EventImpl, U as listenBySelector, W as listenToHoverBySelector, X as PureComponent, Y as buildViewContext, Z as getUniqueDomId, _ as parseInteractionSettings, $ as interactionSettingsStore, a0 as getNow, a1 as CalendarImpl, a2 as flushSync, a3 as CalendarRoot, a4 as RenderId, a5 as isArraysEqual, a6 as applyStyleProp, a7 as sliceEventStore } from './internal-common.js';\nexport { a9 as JsonRequestError, a8 as createPlugin } from './internal-common.js';\nimport { createElement, createRef, Fragment, render } from 'preact';\nimport 'preact/compat';\n\nvar css_248z = \"\\n/*\\nfor css vars only.\\nthese values are automatically known in all stylesheets.\\nthe :root statement itself is only included in the common stylesheet.\\nthis file is not processed by postcss when imported into the postcss-custom-properties plugin,\\nso only write standard css!\\n\\nNOTE: for old browsers, will need to restart watcher after changing a variable\\n*/\\n\\n:root {\\n --fc-small-font-size: .85em;\\n --fc-page-bg-color: #fff;\\n --fc-neutral-bg-color: rgba(208, 208, 208, 0.3);\\n --fc-neutral-text-color: #808080;\\n --fc-border-color: #ddd;\\n\\n --fc-button-text-color: #fff;\\n --fc-button-bg-color: #2C3E50;\\n --fc-button-border-color: #2C3E50;\\n --fc-button-hover-bg-color: #1e2b37;\\n --fc-button-hover-border-color: #1a252f;\\n --fc-button-active-bg-color: #1a252f;\\n --fc-button-active-border-color: #151e27;\\n\\n --fc-event-bg-color: #3788d8;\\n --fc-event-border-color: #3788d8;\\n --fc-event-text-color: #fff;\\n --fc-event-selected-overlay-color: rgba(0, 0, 0, 0.25);\\n\\n --fc-more-link-bg-color: #d0d0d0;\\n --fc-more-link-text-color: inherit;\\n\\n --fc-event-resizer-thickness: 8px;\\n --fc-event-resizer-dot-total-width: 8px;\\n --fc-event-resizer-dot-border-width: 1px;\\n\\n --fc-non-business-color: rgba(215, 215, 215, 0.3);\\n --fc-bg-event-color: rgb(143, 223, 130);\\n --fc-bg-event-opacity: 0.3;\\n --fc-highlight-color: rgba(188, 232, 241, 0.3);\\n --fc-today-bg-color: rgba(255, 220, 40, 0.15);\\n --fc-now-indicator-color: red;\\n}\\n\\n/* classes attached to <body> */\\n\\n/* TODO: make fc-event selector work when calender in shadow DOM */\\n\\n.fc-not-allowed,\\n.fc-not-allowed .fc-event { /* override events' custom cursors */\\n cursor: not-allowed;\\n}\\n\\n/* TODO: not attached to body. attached to specific els. move */\\n\\n.fc-unselectable {\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n -webkit-touch-callout: none;\\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\\n}\\n.fc {\\n /* layout of immediate children */\\n display: flex;\\n flex-direction: column;\\n\\n font-size: 1em\\n}\\n.fc,\\n .fc *,\\n .fc *:before,\\n .fc *:after {\\n box-sizing: border-box;\\n }\\n.fc table {\\n border-collapse: collapse;\\n border-spacing: 0;\\n font-size: 1em; /* normalize cross-browser */\\n }\\n.fc th {\\n text-align: center;\\n }\\n.fc th,\\n .fc td {\\n vertical-align: top;\\n padding: 0;\\n }\\n.fc a[data-navlink] {\\n cursor: pointer;\\n }\\n.fc a[data-navlink]:hover {\\n text-decoration: underline;\\n }\\n.fc-direction-ltr {\\n direction: ltr;\\n text-align: left;\\n}\\n.fc-direction-rtl {\\n direction: rtl;\\n text-align: right;\\n}\\n.fc-theme-standard td,\\n .fc-theme-standard th {\\n border: 1px solid var(--fc-border-color);\\n }\\n/* for FF, which doesn't expand a 100% div within a table cell. use absolute positioning */\\n/* inner-wrappers are responsible for being absolute */\\n/* TODO: best place for this? */\\n.fc-liquid-hack td,\\n .fc-liquid-hack th {\\n position: relative;\\n }\\n\\n@font-face {\\n font-family: 'fcicons';\\n src: url(\\\"data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\\\") format('truetype');\\n font-weight: normal;\\n font-style: normal;\\n}\\n\\n.fc-icon {\\n /* added for fc */\\n display: inline-block;\\n width: 1em;\\n height: 1em;\\n text-align: center;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n\\n /* use !important to prevent issues with browser extensions that change fonts */\\n font-family: 'fcicons' !important;\\n speak: none;\\n font-style: normal;\\n font-weight: normal;\\n font-variant: normal;\\n text-transform: none;\\n line-height: 1;\\n\\n /* Better Font Rendering =========== */\\n -webkit-font-smoothing: antialiased;\\n -moz-osx-font-smoothing: grayscale;\\n}\\n\\n.fc-icon-chevron-left:before {\\n content: \\\"\\\\e900\\\";\\n}\\n\\n.fc-icon-chevron-right:before {\\n content: \\\"\\\\e901\\\";\\n}\\n\\n.fc-icon-chevrons-left:before {\\n content: \\\"\\\\e902\\\";\\n}\\n\\n.fc-icon-chevrons-right:before {\\n content: \\\"\\\\e903\\\";\\n}\\n\\n.fc-icon-minus-square:before {\\n content: \\\"\\\\e904\\\";\\n}\\n\\n.fc-icon-plus-square:before {\\n content: \\\"\\\\e905\\\";\\n}\\n\\n.fc-icon-x:before {\\n content: \\\"\\\\e906\\\";\\n}\\n/*\\nLots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css\\n\\nThese styles only apply when the standard-theme is activated.\\nWhen it's NOT activated, the fc-button classes won't even be in the DOM.\\n*/\\n.fc {\\n\\n /* reset */\\n\\n}\\n.fc .fc-button {\\n border-radius: 0;\\n overflow: visible;\\n text-transform: none;\\n margin: 0;\\n font-family: inherit;\\n font-size: inherit;\\n line-height: inherit;\\n }\\n.fc .fc-button:focus {\\n outline: 1px dotted;\\n outline: 5px auto -webkit-focus-ring-color;\\n }\\n.fc .fc-button {\\n -webkit-appearance: button;\\n }\\n.fc .fc-button:not(:disabled) {\\n cursor: pointer;\\n }\\n.fc .fc-button::-moz-focus-inner {\\n padding: 0;\\n border-style: none;\\n }\\n.fc {\\n\\n /* theme */\\n\\n}\\n.fc .fc-button {\\n display: inline-block;\\n font-weight: 400;\\n text-align: center;\\n vertical-align: middle;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n background-color: transparent;\\n border: 1px solid transparent;\\n padding: 0.4em 0.65em;\\n font-size: 1em;\\n line-height: 1.5;\\n border-radius: 0.25em;\\n }\\n.fc .fc-button:hover {\\n text-decoration: none;\\n }\\n.fc .fc-button:focus {\\n outline: 0;\\n box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);\\n }\\n.fc .fc-button:disabled {\\n opacity: 0.65;\\n }\\n.fc {\\n\\n /* \\\"primary\\\" coloring */\\n\\n}\\n.fc .fc-button-primary {\\n color: var(--fc-button-text-color);\\n background-color: var(--fc-button-bg-color);\\n border-color: var(--fc-button-border-color);\\n }\\n.fc .fc-button-primary:hover {\\n color: var(--fc-button-text-color);\\n background-color: var(--fc-button-hover-bg-color);\\n border-color: var(--fc-button-hover-border-color);\\n }\\n.fc .fc-button-primary:disabled { /* not DRY */\\n color: var(--fc-button-text-color);\\n background-color: var(--fc-button-bg-color);\\n border-color: var(--fc-button-border-color); /* overrides :hover */\\n }\\n.fc .fc-button-primary:focus {\\n box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);\\n }\\n.fc .fc-button-primary:not(:disabled):active,\\n .fc .fc-button-primary:not(:disabled).fc-button-active {\\n color: var(--fc-button-text-color);\\n background-color: var(--fc-button-active-bg-color);\\n border-color: var(--fc-button-active-border-color);\\n }\\n.fc .fc-button-primary:not(:disabled):active:focus,\\n .fc .fc-button-primary:not(:disabled).fc-button-active:focus {\\n box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);\\n }\\n.fc {\\n\\n /* icons within buttons */\\n\\n}\\n.fc .fc-button .fc-icon {\\n vertical-align: middle;\\n font-size: 1.5em; /* bump up the size (but don't make it bigger than line-height of button, which is 1.5em also) */\\n }\\n.fc .fc-button-group {\\n position: relative;\\n display: inline-flex;\\n vertical-align: middle;\\n }\\n.fc .fc-button-group > .fc-button {\\n position: relative;\\n flex: 1 1 auto;\\n }\\n.fc .fc-button-group > .fc-button:hover {\\n z-index: 1;\\n }\\n.fc .fc-button-group > .fc-button:focus,\\n .fc .fc-button-group > .fc-button:active,\\n .fc .fc-button-group > .fc-button.fc-button-active {\\n z-index: 1;\\n }\\n.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {\\n margin-left: -1px;\\n border-top-left-radius: 0;\\n border-bottom-left-radius: 0;\\n }\\n.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {\\n border-top-right-radius: 0;\\n border-bottom-right-radius: 0;\\n }\\n.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {\\n margin-right: -1px;\\n border-top-right-radius: 0;\\n border-bottom-right-radius: 0;\\n }\\n.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {\\n border-top-left-radius: 0;\\n border-bottom-left-radius: 0;\\n }\\n.fc .fc-toolbar {\\n display: flex;\\n justify-content: space-between;\\n align-items: center;\\n }\\n.fc .fc-toolbar.fc-header-toolbar {\\n margin-bottom: 1.5em;\\n }\\n.fc .fc-toolbar.fc-footer-toolbar {\\n margin-top: 1.5em;\\n }\\n.fc .fc-toolbar-title {\\n font-size: 1.75em;\\n margin: 0;\\n }\\n.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {\\n margin-left: .75em; /* space between */\\n }\\n.fc-direction-rtl .fc-toolbar > * > :not(:first-child) {\\n margin-right: .75em; /* space between */\\n }\\n.fc-direction-rtl .fc-toolbar-ltr { /* when the toolbar-chunk positioning system is explicitly left-to-right */\\n flex-direction: row-reverse;\\n }\\n.fc .fc-scroller {\\n -webkit-overflow-scrolling: touch;\\n position: relative; /* for abs-positioned elements within */\\n }\\n.fc .fc-scroller-liquid {\\n height: 100%;\\n }\\n.fc .fc-scroller-liquid-absolute {\\n position: absolute;\\n top: 0;\\n right: 0;\\n left: 0;\\n bottom: 0;\\n }\\n.fc .fc-scroller-harness {\\n position: relative;\\n overflow: hidden;\\n direction: ltr;\\n /* hack for chrome computing the scroller's right/left wrong for rtl. undone below... */\\n /* TODO: demonstrate in codepen */\\n }\\n.fc .fc-scroller-harness-liquid {\\n height: 100%;\\n }\\n.fc-direction-rtl .fc-scroller-harness > .fc-scroller { /* undo above hack */\\n direction: rtl;\\n }\\n.fc-theme-standard .fc-scrollgrid {\\n border: 1px solid var(--fc-border-color); /* bootstrap does this. match */\\n }\\n.fc .fc-scrollgrid,\\n .fc .fc-scrollgrid table { /* all tables (self included) */\\n width: 100%; /* because tables don't normally do this */\\n table-layout: fixed;\\n }\\n.fc .fc-scrollgrid table { /* inner tables */\\n border-top-style: hidden;\\n border-left-style: hidden;\\n border-right-style: hidden;\\n }\\n.fc .fc-scrollgrid {\\n\\n border-collapse: separate;\\n border-right-width: 0;\\n border-bottom-width: 0;\\n\\n }\\n.fc .fc-scrollgrid-liquid {\\n height: 100%;\\n }\\n.fc .fc-scrollgrid-section { /* a <tr> */\\n height: 1px /* better than 0, for firefox */\\n\\n }\\n.fc .fc-scrollgrid-section > td {\\n height: 1px; /* needs a height so inner div within grow. better than 0, for firefox */\\n }\\n.fc .fc-scrollgrid-section table {\\n height: 1px;\\n /* for most browsers, if a height isn't set on the table, can't do liquid-height within cells */\\n /* serves as a min-height. harmless */\\n }\\n.fc .fc-scrollgrid-section-liquid > td {\\n height: 100%; /* better than `auto`, for firefox */\\n }\\n.fc .fc-scrollgrid-section > * {\\n border-top-width: 0;\\n border-left-width: 0;\\n }\\n.fc .fc-scrollgrid-section-header > *,\\n .fc .fc-scrollgrid-section-footer > * {\\n border-bottom-width: 0;\\n }\\n.fc .fc-scrollgrid-section-body table,\\n .fc .fc-scrollgrid-section-footer table {\\n border-bottom-style: hidden; /* head keeps its bottom border tho */\\n }\\n.fc {\\n\\n /* stickiness */\\n\\n}\\n.fc .fc-scrollgrid-section-sticky > * {\\n background: var(--fc-page-bg-color);\\n position: sticky;\\n z-index: 3; /* TODO: var */\\n /* TODO: box-shadow when sticking */\\n }\\n.fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky > * {\\n top: 0; /* because border-sharing causes a gap at the top */\\n /* TODO: give safari -1. has bug */\\n }\\n.fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky > * {\\n bottom: 0; /* known bug: bottom-stickiness doesn't work in safari */\\n }\\n.fc .fc-scrollgrid-sticky-shim { /* for horizontal scrollbar */\\n height: 1px; /* needs height to create scrollbars */\\n margin-bottom: -1px;\\n }\\n.fc-sticky { /* no .fc wrap because used as child of body */\\n position: sticky;\\n}\\n.fc .fc-view-harness {\\n flex-grow: 1; /* because this harness is WITHIN the .fc's flexbox */\\n position: relative;\\n }\\n.fc {\\n\\n /* when the harness controls the height, make the view liquid */\\n\\n}\\n.fc .fc-view-harness-active > .fc-view {\\n position: absolute;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n }\\n.fc .fc-col-header-cell-cushion {\\n display: inline-block; /* x-browser for when sticky (when multi-tier header) */\\n padding: 2px 4px;\\n }\\n.fc .fc-bg-event,\\n .fc .fc-non-business,\\n .fc .fc-highlight {\\n /* will always have a harness with position:relative/absolute, so absolutely expand */\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n }\\n.fc .fc-non-business {\\n background: var(--fc-non-business-color);\\n }\\n.fc .fc-bg-event {\\n background: var(--fc-bg-event-color);\\n opacity: var(--fc-bg-event-opacity)\\n }\\n.fc .fc-bg-event .fc-event-title {\\n margin: .5em;\\n font-size: var(--fc-small-font-size);\\n font-style: italic;\\n }\\n.fc .fc-highlight {\\n background: var(--fc-highlight-color);\\n }\\n.fc .fc-cell-shaded,\\n .fc .fc-day-disabled {\\n background: var(--fc-neutral-bg-color);\\n }\\n/* link resets */\\n/* ---------------------------------------------------------------------------------------------------- */\\na.fc-event,\\na.fc-event:hover {\\n text-decoration: none;\\n}\\n/* cursor */\\n.fc-event[href],\\n.fc-event.fc-event-draggable {\\n cursor: pointer;\\n}\\n/* event text content */\\n/* ---------------------------------------------------------------------------------------------------- */\\n.fc-event .fc-event-main {\\n position: relative;\\n z-index: 2;\\n }\\n/* dragging */\\n/* ---------------------------------------------------------------------------------------------------- */\\n.fc-event-dragging:not(.fc-event-selected) { /* MOUSE */\\n opacity: 0.75;\\n }\\n.fc-event-dragging.fc-event-selected { /* TOUCH */\\n box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);\\n }\\n/* resizing */\\n/* ---------------------------------------------------------------------------------------------------- */\\n/* (subclasses should hone positioning for touch and non-touch) */\\n.fc-event .fc-event-resizer {\\n display: none;\\n position: absolute;\\n z-index: 4;\\n }\\n.fc-event:hover, /* MOUSE */\\n.fc-event-selected { /* TOUCH */\\n\\n}\\n.fc-event:hover .fc-event-resizer, .fc-event-selected .fc-event-resizer {\\n display: block;\\n }\\n.fc-event-selected .fc-event-resizer {\\n border-radius: calc(var(--fc-event-resizer-dot-total-width) / 2);\\n border-width: var(--fc-event-resizer-dot-border-width);\\n width: var(--fc-event-resizer-dot-total-width);\\n height: var(--fc-event-resizer-dot-total-width);\\n border-style: solid;\\n border-color: inherit;\\n background: var(--fc-page-bg-color)\\n\\n /* expand hit area */\\n\\n }\\n.fc-event-selected .fc-event-resizer:before {\\n content: '';\\n position: absolute;\\n top: -20px;\\n left: -20px;\\n right: -20px;\\n bottom: -20px;\\n }\\n/* selecting (always TOUCH) */\\n/* OR, focused by tab-index */\\n/* (TODO: maybe not the best focus-styling for .fc-daygrid-dot-event) */\\n/* ---------------------------------------------------------------------------------------------------- */\\n.fc-event-selected,\\n.fc-event:focus {\\n box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)\\n\\n /* expand hit area (subclasses should expand) */\\n\\n}\\n.fc-event-selected:before, .fc-event:focus:before {\\n content: \\\"\\\";\\n position: absolute;\\n z-index: 3;\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n }\\n.fc-event-selected,\\n.fc-event:focus {\\n\\n /* dimmer effect */\\n\\n}\\n.fc-event-selected:after, .fc-event:focus:after {\\n content: \\\"\\\";\\n background: var(--fc-event-selected-overlay-color);\\n position: absolute;\\n z-index: 1;\\n\\n /* assume there's a border on all sides. overcome it. */\\n /* sometimes there's NOT a border, in which case the dimmer will go over */\\n /* an adjacent border, which looks fine. */\\n top: -1px;\\n left: -1px;\\n right: -1px;\\n bottom: -1px;\\n }\\n/*\\nA HORIZONTAL event\\n*/\\n.fc-h-event { /* allowed to be top-level */\\n display: block;\\n border: 1px solid var(--fc-event-border-color);\\n background-color: var(--fc-event-bg-color)\\n\\n}\\n.fc-h-event .fc-event-main {\\n color: var(--fc-event-text-color);\\n }\\n.fc-h-event .fc-event-main-frame {\\n display: flex; /* for make fc-event-title-container expand */\\n }\\n.fc-h-event .fc-event-time {\\n max-width: 100%; /* clip overflow on this element */\\n overflow: hidden;\\n }\\n.fc-h-event .fc-event-title-container { /* serves as a container for the sticky cushion */\\n flex-grow: 1;\\n flex-shrink: 1;\\n min-width: 0; /* important for allowing to shrink all the way */\\n }\\n.fc-h-event .fc-event-title {\\n display: inline-block; /* need this to be sticky cross-browser */\\n vertical-align: top; /* for not messing up line-height */\\n left: 0; /* for sticky */\\n right: 0; /* for sticky */\\n max-width: 100%; /* clip overflow on this element */\\n overflow: hidden;\\n }\\n.fc-h-event.fc-event-selected:before {\\n /* expand hit area */\\n top: -10px;\\n bottom: -10px;\\n }\\n/* adjust border and border-radius (if there is any) for non-start/end */\\n.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start),\\n.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {\\n border-top-left-radius: 0;\\n border-bottom-left-radius: 0;\\n border-left-width: 0;\\n}\\n.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end),\\n.fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {\\n border-top-right-radius: 0;\\n border-bottom-right-radius: 0;\\n border-right-width: 0;\\n}\\n/* resizers */\\n.fc-h-event:not(.fc-event-selected) .fc-event-resizer {\\n top: 0;\\n bottom: 0;\\n width: var(--fc-event-resizer-thickness);\\n}\\n.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start,\\n.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {\\n cursor: w-resize;\\n left: calc(-0.5 * var(--fc-event-resizer-thickness));\\n}\\n.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,\\n.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {\\n cursor: e-resize;\\n right: calc(-0.5 * var(--fc-event-resizer-thickness));\\n}\\n/* resizers for TOUCH */\\n.fc-h-event.fc-event-selected .fc-event-resizer {\\n top: 50%;\\n margin-top: calc(-0.5 * var(--fc-event-resizer-dot-total-width));\\n}\\n.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,\\n.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {\\n left: calc(-0.5 * var(--fc-event-resizer-dot-total-width));\\n}\\n.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,\\n.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {\\n right: calc(-0.5 * var(--fc-event-resizer-dot-total-width));\\n}\\n.fc .fc-popover {\\n position: absolute;\\n z-index: 9999;\\n box-shadow: 0 2px 6px rgba(0,0,0,.15);\\n }\\n.fc .fc-popover-header {\\n display: flex;\\n flex-direction: row;\\n justify-content: space-between;\\n align-items: center;\\n padding: 3px 4px;\\n }\\n.fc .fc-popover-title {\\n margin: 0 2px;\\n }\\n.fc .fc-popover-close {\\n cursor: pointer;\\n opacity: 0.65;\\n font-size: 1.1em;\\n }\\n.fc-theme-standard .fc-popover {\\n border: 1px solid var(--fc-border-color);\\n background: var(--fc-page-bg-color);\\n }\\n.fc-theme-standard .fc-popover-header {\\n background: var(--fc-neutral-bg-color);\\n }\\n\";\ninjectStyles(css_248z);\n\nconst MINIMAL_RAW_EN_LOCALE = {\n code: 'en',\n week: {\n dow: 0,\n doy: 4, // 4 days need to be within the year to be considered the first week\n },\n direction: 'ltr',\n buttonText: {\n prev: 'prev',\n next: 'next',\n prevYear: 'prev year',\n nextYear: 'next year',\n year: 'year',\n today: 'today',\n month: 'month',\n week: 'week',\n day: 'day',\n list: 'list',\n },\n weekText: 'W',\n weekTextLong: 'Week',\n closeHint: 'Close',\n timeHint: 'Time',\n eventHint: 'Event',\n allDayText: 'all-day',\n moreLinkText: 'more',\n noEventsText: 'No events to display',\n};\nconst RAW_EN_LOCALE = Object.assign(Object.assign({}, MINIMAL_RAW_EN_LOCALE), { \n // Includes things we don't want other locales to inherit,\n // things that derive from other translatable strings.\n buttonHints: {\n prev: 'Previous $0',\n next: 'Next $0',\n today(buttonText, unit) {\n return (unit === 'day')\n ? 'Today'\n : `This ${buttonText}`;\n },\n }, viewHint: '$0 view', navLinkHint: 'Go to $0', moreLinkHint(eventCnt) {\n return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;\n } });\nfunction organizeRawLocales(explicitRawLocales) {\n let defaultCode = explicitRawLocales.length > 0 ? explicitRawLocales[0].code : 'en';\n let allRawLocales = globalLocales.concat(explicitRawLocales);\n let rawLocaleMap = {\n en: RAW_EN_LOCALE,\n };\n for (let rawLocale of allRawLocales) {\n rawLocaleMap[rawLocale.code] = rawLocale;\n }\n return {\n map: rawLocaleMap,\n defaultCode,\n };\n}\nfunction buildLocale(inputSingular, available) {\n if (typeof inputSingular === 'object' && !Array.isArray(inputSingular)) {\n return parseLocale(inputSingular.code, [inputSingular.code], inputSingular);\n }\n return queryLocale(inputSingular, available);\n}\nfunction queryLocale(codeArg, available) {\n let codes = [].concat(codeArg || []); // will convert to array\n let raw = queryRawLocale(codes, available) || RAW_EN_LOCALE;\n return parseLocale(codeArg, codes, raw);\n}\nfunction queryRawLocale(codes, available) {\n for (let i = 0; i < codes.length; i += 1) {\n let parts = codes[i].toLocaleLowerCase().split('-');\n for (let j = parts.length; j > 0; j -= 1) {\n let simpleId = parts.slice(0, j).join('-');\n if (available[simpleId]) {\n return available[simpleId];\n }\n }\n }\n return null;\n}\nfunction parseLocale(codeArg, codes, raw) {\n let merged = mergeProps([MINIMAL_RAW_EN_LOCALE, raw], ['buttonText']);\n delete merged.code; // don't want this part of the options\n let { week } = merged;\n delete merged.week;\n return {\n codeArg,\n codes,\n week,\n simpleNumberFormat: new Intl.NumberFormat(codeArg),\n options: merged,\n };\n}\n\nclass StandardTheme extends Theme {\n}\nStandardTheme.prototype.classes = {\n root: 'fc-theme-standard',\n tableCellShaded: 'fc-cell-shaded',\n buttonGroup: 'fc-button-group',\n button: 'fc-button fc-button-primary',\n buttonActive: 'fc-button-active',\n};\nStandardTheme.prototype.baseIconClass = 'fc-icon';\nStandardTheme.prototype.iconClasses = {\n close: 'fc-icon-x',\n prev: 'fc-icon-chevron-left',\n next: 'fc-icon-chevron-right',\n prevYear: 'fc-icon-chevrons-left',\n nextYear: 'fc-icon-chevrons-right',\n};\nStandardTheme.prototype.rtlIconClasses = {\n prev: 'fc-icon-chevron-right',\n next: 'fc-icon-chevron-left',\n prevYear: 'fc-icon-chevrons-right',\n nextYear: 'fc-icon-chevrons-left',\n};\nStandardTheme.prototype.iconOverrideOption = 'buttonIcons'; // TODO: make TS-friendly\nStandardTheme.prototype.iconOverrideCustomButtonOption = 'icon';\nStandardTheme.prototype.iconOverridePrefix = 'fc-icon-';\n\nfunction compileViewDefs(defaultConfigs, overrideConfigs) {\n let hash = {};\n let viewType;\n for (viewType in defaultConfigs) {\n ensureViewDef(viewType, hash, defaultConfigs, overrideConfigs);\n }\n for (viewType in overrideConfigs) {\n ensureViewDef(viewType, hash, defaultConfigs, overrideConfigs);\n }\n return hash;\n}\nfunction ensureViewDef(viewType, hash, defaultConfigs, overrideConfigs) {\n if (hash[viewType]) {\n return hash[viewType];\n }\n let viewDef = buildViewDef(viewType, hash, defaultConfigs, overrideConfigs);\n if (viewDef) {\n hash[viewType] = viewDef;\n }\n return viewDef;\n}\nfunction buildViewDef(viewType, hash, defaultConfigs, overrideConfigs) {\n let defaultConfig = defaultConfigs[viewType];\n let overrideConfig = overrideConfigs[viewType];\n let queryProp = (name) => ((defaultConfig && defaultConfig[name] !== null) ? defaultConfig[name] :\n ((overrideConfig && overrideConfig[name] !== null) ? overrideConfig[name] : null));\n let theComponent = queryProp('component');\n let superType = queryProp('superType');\n let superDef = null;\n if (superType) {\n if (superType === viewType) {\n throw new Error('Can\\'t have a custom view type that references itself');\n }\n superDef = ensureViewDef(superType, hash, defaultConfigs, overrideConfigs);\n }\n if (!theComponent && superDef) {\n theComponent = superDef.component;\n }\n if (!theComponent) {\n return null; // don't throw a warning, might be settings for a single-unit view\n }\n return {\n type: viewType,\n component: theComponent,\n defaults: Object.assign(Object.assign({}, (superDef ? superDef.defaults : {})), (defaultConfig ? defaultConfig.rawOptions : {})),\n overrides: Object.assign(Object.assign({}, (superDef ? superDef.overrides : {})), (overrideConfig ? overrideConfig.rawOptions : {})),\n };\n}\n\nfunction parseViewConfigs(inputs) {\n return mapHash(inputs, parseViewConfig);\n}\nfunction parseViewConfig(input) {\n let rawOptions = typeof input === 'function' ?\n { component: input } :\n input;\n let { component } = rawOptions;\n if (rawOptions.content) {\n component = createViewHookComponent(rawOptions);\n // TODO: remove content/classNames/didMount/etc from options?\n }\n return {\n superType: rawOptions.type,\n component: component,\n rawOptions, // includes type and component too :(\n };\n}\nfunction createViewHookComponent(options) {\n return (viewProps) => (createElement(ViewContextType.Consumer, null, (context) => (createElement(ContentContainer, { elTag: \"div\", elClasses: buildViewClassNames(context.viewSpec), renderProps: Object.assign(Object.assign({}, viewProps), { nextDayThreshold: context.options.nextDayThreshold }), generatorName: undefined, generator: options.content, classNameGenerator: options.classNames, didMount: options.didMount, willUnmount: options.willUnmount }))));\n}\n\nfunction buildViewSpecs(defaultInputs, optionOverrides, dynamicOptionOverrides, localeDefaults) {\n let defaultConfigs = parseViewConfigs(defaultInputs);\n let overrideConfigs = parseViewConfigs(optionOverrides.views);\n let viewDefs = compileViewDefs(defaultConfigs, overrideConfigs);\n return mapHash(viewDefs, (viewDef) => buildViewSpec(viewDef, overrideConfigs, optionOverrides, dynamicOptionOverrides, localeDefaults));\n}\nfunction buildViewSpec(viewDef, overrideConfigs, optionOverrides, dynamicOptionOverrides, localeDefaults) {\n let durationInput = viewDef.overrides.duration ||\n viewDef.defaults.duration ||\n dynamicOptionOverrides.duration ||\n optionOverrides.duration;\n let duration = null;\n let durationUnit = '';\n let singleUnit = '';\n let singleUnitOverrides = {};\n if (durationInput) {\n duration = createDurationCached(durationInput);\n if (duration) { // valid?\n let denom = greatestDurationDenominator(duration);\n durationUnit = denom.unit;\n if (denom.value === 1) {\n singleUnit = durationUnit;\n singleUnitOverrides = overrideConfigs[durationUnit] ? overrideConfigs[durationUnit].rawOptions : {};\n }\n }\n }\n let queryButtonText = (optionsSubset) => {\n let buttonTextMap = optionsSubset.buttonText || {};\n let buttonTextKey = viewDef.defaults.buttonTextKey;\n if (buttonTextKey != null && buttonTextMap[buttonTextKey] != null) {\n return buttonTextMap[buttonTextKey];\n }\n if (buttonTextMap[viewDef.type] != null) {\n return buttonTextMap[viewDef.type];\n }\n if (buttonTextMap[singleUnit] != null) {\n return buttonTextMap[singleUnit];\n }\n return null;\n };\n let queryButtonTitle = (optionsSubset) => {\n let buttonHints = optionsSubset.buttonHints || {};\n let buttonKey = viewDef.defaults.buttonTextKey; // use same key as text\n if (buttonKey != null && buttonHints[buttonKey] != null) {\n return buttonHints[buttonKey];\n }\n if (buttonHints[viewDef.type] != null) {\n return buttonHints[viewDef.type];\n }\n if (buttonHints[singleUnit] != null) {\n return buttonHints[singleUnit];\n }\n return null;\n };\n return {\n type: viewDef.type,\n component: viewDef.component,\n duration,\n durationUnit,\n singleUnit,\n optionDefaults: viewDef.defaults,\n optionOverrides: Object.assign(Object.assign({}, singleUnitOverrides), viewDef.overrides),\n buttonTextOverride: queryButtonText(dynamicOptionOverrides) ||\n queryButtonText(optionOverrides) || // constructor-specified buttonText lookup hash takes precedence\n viewDef.overrides.buttonText,\n buttonTextDefault: queryButtonText(localeDefaults) ||\n viewDef.defaults.buttonText ||\n queryButtonText(BASE_OPTION_DEFAULTS) ||\n viewDef.type,\n // not DRY\n buttonTitleOverride: queryButtonTitle(dynamicOptionOverrides) ||\n queryButtonTitle(optionOverrides) ||\n viewDef.overrides.buttonHint,\n buttonTitleDefault: queryButtonTitle(localeDefaults) ||\n viewDef.defaults.buttonHint ||\n queryButtonTitle(BASE_OPTION_DEFAULTS),\n // will eventually fall back to buttonText\n };\n}\n// hack to get memoization working\nlet durationInputMap = {};\nfunction createDurationCached(durationInput) {\n let json = JSON.stringify(durationInput);\n let res = durationInputMap[json];\n if (res === undefined) {\n res = createDuration(durationInput);\n durationInputMap[json] = res;\n }\n return res;\n}\n\nfunction reduceViewType(viewType, action) {\n switch (action.type) {\n case 'CHANGE_VIEW_TYPE':\n viewType = action.viewType;\n }\n return viewType;\n}\n\nfunction reduceDynamicOptionOverrides(dynamicOptionOverrides, action) {\n switch (action.type) {\n case 'SET_OPTION':\n return Object.assign(Object.assign({}, dynamicOptionOverrides), { [action.optionName]: action.rawOptionValue });\n default:\n return dynamicOptionOverrides;\n }\n}\n\nfunction reduceDateProfile(currentDateProfile, action, currentDate, dateProfileGenerator) {\n let dp;\n switch (action.type) {\n case 'CHANGE_VIEW_TYPE':\n return dateProfileGenerator.build(action.dateMarker || currentDate);\n case 'CHANGE_DATE':\n return dateProfileGenerator.build(action.dateMarker);\n case 'PREV':\n dp = dateProfileGenerator.buildPrev(currentDateProfile, currentDate);\n if (dp.isValid) {\n return dp;\n }\n break;\n case 'NEXT':\n dp = dateProfileGenerator.buildNext(currentDateProfile, currentDate);\n if (dp.isValid) {\n return dp;\n }\n break;\n }\n return currentDateProfile;\n}\n\nfunction reduceDateSelection(currentSelection, action) {\n switch (action.type) {\n case 'UNSELECT_DATES':\n return null;\n case 'SELECT_DATES':\n return action.selection;\n default:\n return currentSelection;\n }\n}\n\nfunction reduceSelectedEvent(currentInstanceId, action) {\n switch (action.type) {\n case 'UNSELECT_EVENT':\n return '';\n case 'SELECT_EVENT':\n return action.eventInstanceId;\n default:\n return currentInstanceId;\n }\n}\n\nfunction reduceEventDrag(currentDrag, action) {\n let newDrag;\n switch (action.type) {\n case 'UNSET_EVENT_DRAG':\n return null;\n case 'SET_EVENT_DRAG':\n newDrag = action.state;\n return {\n affectedEvents: newDrag.affectedEvents,\n mutatedEvents: newDrag.mutatedEvents,\n isEvent: newDrag.isEvent,\n };\n default:\n return currentDrag;\n }\n}\n\nfunction reduceEventResize(currentResize, action) {\n let newResize;\n switch (action.type) {\n case 'UNSET_EVENT_RESIZE':\n return null;\n case 'SET_EVENT_RESIZE':\n newResize = action.state;\n return {\n affectedEvents: newResize.affectedEvents,\n mutatedEvents: newResize.mutatedEvents,\n isEvent: newResize.isEvent,\n };\n default:\n return currentResize;\n }\n}\n\nfunction parseToolbars(calendarOptions, calendarOptionOverrides, theme, viewSpecs, calendarApi) {\n let header = calendarOptions.headerToolbar ? parseToolbar(calendarOptions.headerToolbar, calendarOptions, calendarOptionOverrides, theme, viewSpecs, calendarApi) : null;\n let footer = calendarOptions.footerToolbar ? parseToolbar(calendarOptions.footerToolbar, calendarOptions, calendarOptionOverrides, theme, viewSpecs, calendarApi) : null;\n return { header, footer };\n}\nfunction parseToolbar(sectionStrHash, calendarOptions, calendarOptionOverrides, theme, viewSpecs, calendarApi) {\n let sectionWidgets = {};\n let viewsWithButtons = [];\n let hasTitle = false;\n for (let sectionName in sectionStrHash) {\n let sectionStr = sectionStrHash[sectionName];\n let sectionRes = parseSection(sectionStr, calendarOptions, calendarOptionOverrides, theme, viewSpecs, calendarApi);\n sectionWidgets[sectionName] = sectionRes.widgets;\n viewsWithButtons.push(...sectionRes.viewsWithButtons);\n hasTitle = hasTitle || sectionRes.hasTitle;\n }\n return { sectionWidgets, viewsWithButtons, hasTitle };\n}\n/*\nBAD: querying icons and text here. should be done at render time\n*/\nfunction parseSection(sectionStr, calendarOptions, // defaults+overrides, then refined\ncalendarOptionOverrides, // overrides only!, unrefined :(\ntheme, viewSpecs, calendarApi) {\n let isRtl = calendarOptions.direction === 'rtl';\n let calendarCustomButtons = calendarOptions.customButtons || {};\n let calendarButtonTextOverrides = calendarOptionOverrides.buttonText || {};\n let calendarButtonText = calendarOptions.buttonText || {};\n let calendarButtonHintOverrides = calendarOptionOverrides.buttonHints || {};\n let calendarButtonHints = calendarOptions.buttonHints || {};\n let sectionSubstrs = sectionStr ? sectionStr.split(' ') : [];\n let viewsWithButtons = [];\n let hasTitle = false;\n let widgets = sectionSubstrs.map((buttonGroupStr) => (buttonGroupStr.split(',').map((buttonName) => {\n if (buttonName === 'title') {\n hasTitle = true;\n return { buttonName };\n }\n let customButtonProps;\n let viewSpec;\n let buttonClick;\n let buttonIcon; // only one of these will be set\n let buttonText; // \"\n let buttonHint;\n // ^ for the title=\"\" attribute, for accessibility\n if ((customButtonProps = calendarCustomButtons[buttonName])) {\n buttonClick = (ev) => {\n if (customButtonProps.click) {\n customButtonProps.click.call(ev.target, ev, ev.target); // TODO: use Calendar this context?\n }\n };\n (buttonIcon = theme.getCustomButtonIconClass(customButtonProps)) ||\n (buttonIcon = theme.getIconClass(buttonName, isRtl)) ||\n (buttonText = customButtonProps.text);\n buttonHint = customButtonProps.hint || customButtonProps.text;\n }\n else if ((viewSpec = viewSpecs[buttonName])) {\n viewsWithButtons.push(buttonName);\n buttonClick = () => {\n calendarApi.changeView(buttonName);\n };\n (buttonText = viewSpec.buttonTextOverride) ||\n (buttonIcon = theme.getIconClass(buttonName, isRtl)) ||\n (buttonText = viewSpec.buttonTextDefault);\n let textFallback = viewSpec.buttonTextOverride ||\n viewSpec.buttonTextDefault;\n buttonHint = formatWithOrdinals(viewSpec.buttonTitleOverride ||\n viewSpec.buttonTitleDefault ||\n calendarOptions.viewHint, [textFallback, buttonName], // view-name = buttonName\n textFallback);\n }\n else if (calendarApi[buttonName]) { // a calendarApi method\n buttonClick = () => {\n calendarApi[buttonName]();\n };\n (buttonText = calendarButtonTextOverrides[buttonName]) ||\n (buttonIcon = theme.getIconClass(buttonName, isRtl)) ||\n (buttonText = calendarButtonText[buttonName]); // everything else is considered default\n if (buttonName === 'prevYear' || buttonName === 'nextYear') {\n let prevOrNext = buttonName === 'prevYear' ? 'prev' : 'next';\n buttonHint = formatWithOrdinals(calendarButtonHintOverrides[prevOrNext] ||\n calendarButtonHints[prevOrNext], [\n calendarButtonText.year || 'year',\n 'year',\n ], calendarButtonText[buttonName]);\n }\n else {\n buttonHint = (navUnit) => formatWithOrdinals(calendarButtonHintOverrides[buttonName] ||\n calendarButtonHints[buttonName], [\n calendarButtonText[navUnit] || navUnit,\n navUnit,\n ], calendarButtonText[buttonName]);\n }\n }\n return { buttonName, buttonClick, buttonIcon, buttonText, buttonHint };\n })));\n return { widgets, viewsWithButtons, hasTitle };\n}\n\n// always represents the current view. otherwise, it'd need to change value every time date changes\nclass ViewImpl {\n constructor(type, getCurrentData, dateEnv) {\n this.type = type;\n this.getCurrentData = getCurrentData;\n this.dateEnv = dateEnv;\n }\n get calendar() {\n return this.getCurrentData().calendarApi;\n }\n get title() {\n return this.getCurrentData().viewTitle;\n }\n get activeStart() {\n return this.dateEnv.toDate(this.getCurrentData().dateProfile.activeRange.start);\n }\n get activeEnd() {\n return this.dateEnv.toDate(this.getCurrentData().dateProfile.activeRange.end);\n }\n get currentStart() {\n return this.dateEnv.toDate(this.getCurrentData().dateProfile.currentRange.start);\n }\n get currentEnd() {\n return this.dateEnv.toDate(this.getCurrentData().dateProfile.currentRange.end);\n }\n getOption(name) {\n return this.getCurrentData().options[name]; // are the view-specific options\n }\n}\n\nclass TaskRunner {\n constructor(runTaskOption, drainedOption) {\n this.runTaskOption = runTaskOption;\n this.drainedOption = drainedOption;\n this.queue = [];\n this.delayedRunner = new DelayedRunner(this.drain.bind(this));\n }\n request(task, delay) {\n this.queue.push(task);\n this.delayedRunner.request(delay);\n }\n pause(scope) {\n this.delayedRunner.pause(scope);\n }\n resume(scope, force) {\n this.delayedRunner.resume(scope, force);\n }\n drain() {\n let { queue } = this;\n while (queue.length) {\n let completedTasks = [];\n let task;\n while ((task = queue.shift())) {\n this.runTask(task);\n completedTasks.push(task);\n }\n this.drained(completedTasks);\n } // keep going, in case new tasks were added in the drained handler\n }\n runTask(task) {\n if (this.runTaskOption) {\n this.runTaskOption(task);\n }\n }\n drained(completedTasks) {\n if (this.drainedOption) {\n this.drainedOption(completedTasks);\n }\n }\n}\n\n// Computes what the title at the top of the calendarApi should be for this view\nfunction buildTitle(dateProfile, viewOptions, dateEnv) {\n let range;\n // for views that span a large unit of time, show the proper interval, ignoring stray days before and after\n if (/^(year|month)$/.test(dateProfile.currentRangeUnit)) {\n range = dateProfile.currentRange;\n }\n else { // for day units or smaller, use the actual day range\n range = dateProfile.activeRange;\n }\n return dateEnv.formatRange(range.start, range.end, createFormatter(viewOptions.titleFormat || buildTitleFormat(dateProfile)), {\n isEndExclusive: dateProfile.isRangeAllDay,\n defaultSeparator: viewOptions.titleRangeSeparator,\n });\n}\n// Generates the format string that should be used to generate the title for the current date range.\n// Attempts to compute the most appropriate format if not explicitly specified with `titleFormat`.\nfunction buildTitleFormat(dateProfile) {\n let { currentRangeUnit } = dateProfile;\n if (currentRangeUnit === 'year') {\n return { year: 'numeric' };\n }\n if (currentRangeUnit === 'month') {\n return { year: 'numeric', month: 'long' }; // like \"September 2014\"\n }\n let days = diffWholeDays(dateProfile.currentRange.start, dateProfile.currentRange.end);\n if (days !== null && days > 1) {\n // multi-day range. shorter, like \"Sep 9 - 10 2014\"\n return { year: 'numeric', month: 'short', day: 'numeric' };\n }\n // one day. longer, like \"September 9 2014\"\n return { year: 'numeric', month: 'long', day: 'numeric' };\n}\n\n// in future refactor, do the redux-style function(state=initial) for initial-state\n// also, whatever is happening in constructor, have it happen in action queue too\nclass CalendarDataManager {\n constructor(props) {\n this.computeOptionsData = memoize(this._computeOptionsData);\n this.computeCurrentViewData = memoize(this._computeCurrentViewData);\n this.organizeRawLocales = memoize(organizeRawLocales);\n this.buildLocale = memoize(buildLocale);\n this.buildPluginHooks = buildBuildPluginHooks();\n this.buildDateEnv = memoize(buildDateEnv$1);\n this.buildTheme = memoize(buildTheme);\n this.parseToolbars = memoize(parseToolbars);\n this.buildViewSpecs = memoize(buildViewSpecs);\n this.buildDateProfileGenerator = memoizeObjArg(buildDateProfileGenerator);\n this.buildViewApi = memoize(buildViewApi);\n this.buildViewUiProps = memoizeObjArg(buildViewUiProps);\n this.buildEventUiBySource = memoize(buildEventUiBySource, isPropsEqual);\n this.buildEventUiBases = memoize(buildEventUiBases);\n this.parseContextBusinessHours = memoizeObjArg(parseContextBusinessHours);\n this.buildTitle = memoize(buildTitle);\n this.emitter = new Emitter();\n this.actionRunner = new TaskRunner(this._handleAction.bind(this), this.updateData.bind(this));\n this.currentCalendarOptionsInput = {};\n this.currentCalendarOptionsRefined = {};\n this.currentViewOptionsInput = {};\n this.currentViewOptionsRefined = {};\n this.currentCalendarOptionsRefiners = {};\n this.getCurrentData = () => this.data;\n this.dispatch = (action) => {\n this.actionRunner.request(action); // protects against recursive calls to _handleAction\n };\n this.props = props;\n this.actionRunner.pause();\n let dynamicOptionOverrides = {};\n let optionsData = this.computeOptionsData(props.optionOverrides, dynamicOptionOverrides, props.calendarApi);\n let currentViewType = optionsData.calendarOptions.initialView || optionsData.pluginHooks.initialView;\n let currentViewData = this.computeCurrentViewData(currentViewType, optionsData, props.optionOverrides, dynamicOptionOverrides);\n // wire things up\n // TODO: not DRY\n props.calendarApi.currentDataManager = this;\n this.emitter.setThisContext(props.calendarApi);\n this.emitter.setOptions(currentViewData.options);\n let currentDate = getInitialDate(optionsData.calendarOptions, optionsData.dateEnv);\n let dateProfile = currentViewData.dateProfileGenerator.build(currentDate);\n if (!rangeContainsMarker(dateProfile.activeRange, currentDate)) {\n currentDate = dateProfile.currentRange.start;\n }\n let calendarContext = {\n dateEnv: optionsData.dateEnv,\n options: optionsData.calendarOptions,\n pluginHooks: optionsData.pluginHooks,\n calendarApi: props.calendarApi,\n dispatch: this.dispatch,\n emitter: this.emitter,\n getCurrentData: this.getCurrentData,\n };\n // needs to be after setThisContext\n for (let callback of optionsData.pluginHooks.contextInit) {\n callback(calendarContext);\n }\n // NOT DRY\n let eventSources = initEventSources(optionsData.calendarOptions, dateProfile, calendarContext);\n let initialState = {\n dynamicOptionOverrides,\n currentViewType,\n currentDate,\n dateProfile,\n businessHours: this.parseContextBusinessHours(calendarContext),\n eventSources,\n eventUiBases: {},\n eventStore: createEmptyEventStore(),\n renderableEventStore: createEmptyEventStore(),\n dateSelection: null,\n eventSelection: '',\n eventDrag: null,\n eventResize: null,\n selectionConfig: this.buildViewUiProps(calendarContext).selectionConfig,\n };\n let contextAndState = Object.assign(Object.assign({}, calendarContext), initialState);\n for (let reducer of optionsData.pluginHooks.reducers) {\n Object.assign(initialState, reducer(null, null, contextAndState));\n }\n if (computeIsLoading(initialState, calendarContext)) {\n this.emitter.trigger('loading', true); // NOT DRY\n }\n this.state = initialState;\n this.updateData();\n this.actionRunner.resume();\n }\n resetOptions(optionOverrides, append) {\n let { props } = this;\n props.optionOverrides = append\n ? Object.assign(Object.assign({}, props.optionOverrides), optionOverrides) : optionOverrides;\n this.actionRunner.request({\n type: 'NOTHING',\n });\n }\n _handleAction(action) {\n let { props, state, emitter } = this;\n let dynamicOptionOverrides = reduceDynamicOptionOverrides(state.dynamicOptionOverrides, action);\n let optionsData = this.computeOptionsData(props.optionOverrides, dynamicOptionOverrides, props.calendarApi);\n let currentViewType = reduceViewType(state.currentViewType, action);\n let currentViewData = this.computeCurrentViewData(currentViewType, optionsData, props.optionOverrides, dynamicOptionOverrides);\n // wire things up\n // TODO: not DRY\n props.calendarApi.currentDataManager = this;\n emitter.setThisContext(props.calendarApi);\n emitter.setOptions(currentViewData.options);\n let calendarContext = {\n dateEnv: optionsData.dateEnv,\n options: optionsData.calendarOptions,\n pluginHooks: optionsData.pluginHooks,\n calendarApi: props.calendarApi,\n dispatch: this.dispatch,\n emitter,\n getCurrentData: this.getCurrentData,\n };\n let { currentDate, dateProfile } = state;\n if (this.data && this.data.dateProfileGenerator !== currentViewData.dateProfileGenerator) { // hack\n dateProfile = currentViewData.dateProfileGenerator.build(currentDate);\n }\n currentDate = reduceCurrentDate(currentDate, action);\n dateProfile = reduceDateProfile(dateProfile, action, currentDate, currentViewData.dateProfileGenerator);\n if (action.type === 'PREV' || // TODO: move this logic into DateProfileGenerator\n action.type === 'NEXT' || // \"\n !rangeContainsMarker(dateProfile.currentRange, currentDate)) {\n currentDate = dateProfile.currentRange.start;\n }\n let eventSources = reduceEventSources(state.eventSources, action, dateProfile, calendarContext);\n let eventStore = reduceEventStore(state.eventStore, action, eventSources, dateProfile, calendarContext);\n let isEventsLoading = computeEventSourcesLoading(eventSources); // BAD. also called in this func in computeIsLoading\n let renderableEventStore = (isEventsLoading && !currentViewData.options.progressiveEventRendering) ?\n (state.renderableEventStore || eventStore) : // try from previous state\n eventStore;\n let { eventUiSingleBase, selectionConfig } = this.buildViewUiProps(calendarContext); // will memoize obj\n let eventUiBySource = this.buildEventUiBySource(eventSources);\n let eventUiBases = this.buildEventUiBases(renderableEventStore.defs, eventUiSingleBase, eventUiBySource);\n let newState = {\n dynamicOptionOverrides,\n currentViewType,\n currentDate,\n dateProfile,\n eventSources,\n eventStore,\n renderableEventStore,\n selectionConfig,\n eventUiBases,\n businessHours: this.parseContextBusinessHours(calendarContext),\n dateSelection: reduceDateSelection(state.dateSelection, action),\n eventSelection: reduceSelectedEvent(state.eventSelection, action),\n eventDrag: reduceEventDrag(state.eventDrag, action),\n eventResize: reduceEventResize(state.eventResize, action),\n };\n let contextAndState = Object.assign(Object.assign({}, calendarContext), newState);\n for (let reducer of optionsData.pluginHooks.reducers) {\n Object.assign(newState, reducer(state, action, contextAndState)); // give the OLD state, for old value\n }\n let wasLoading = computeIsLoading(state, calendarContext);\n let isLoading = computeIsLoading(newState, calendarContext);\n // TODO: use propSetHandlers in plugin system\n if (!wasLoading && isLoading) {\n emitter.trigger('loading', true);\n }\n else if (wasLoading && !isLoading) {\n emitter.trigger('loading', false);\n }\n this.state = newState;\n if (props.onAction) {\n props.onAction(action);\n }\n }\n updateData() {\n let { props, state } = this;\n let oldData = this.data;\n let optionsData = this.computeOptionsData(props.optionOverrides, state.dynamicOptionOverrides, props.calendarApi);\n let currentViewData = this.computeCurrentViewData(state.currentViewType, optionsData, props.optionOverrides, state.dynamicOptionOverrides);\n let data = this.data = Object.assign(Object.assign(Object.assign({ viewTitle: this.buildTitle(state.dateProfile, currentViewData.options, optionsData.dateEnv), calendarApi: props.calendarApi, dispatch: this.dispatch, emitter: this.emitter, getCurrentData: this.getCurrentData }, optionsData), currentViewData), state);\n let changeHandlers = optionsData.pluginHooks.optionChangeHandlers;\n let oldCalendarOptions = oldData && oldData.calendarOptions;\n let newCalendarOptions = optionsData.calendarOptions;\n if (oldCalendarOptions && oldCalendarOptions !== newCalendarOptions) {\n if (oldCalendarOptions.timeZone !== newCalendarOptions.timeZone) {\n // hack\n state.eventSources = data.eventSources = reduceEventSourcesNewTimeZone(data.eventSources, state.dateProfile, data);\n state.eventStore = data.eventStore = rezoneEventStoreDates(data.eventStore, oldData.dateEnv, data.dateEnv);\n }\n for (let optionName in changeHandlers) {\n if (oldCalendarOptions[optionName] !== newCalendarOptions[optionName]) {\n changeHandlers[optionName](newCalendarOptions[optionName], data);\n }\n }\n }\n if (props.onData) {\n props.onData(data);\n }\n }\n _computeOptionsData(optionOverrides, dynamicOptionOverrides, calendarApi) {\n // TODO: blacklist options that are handled by optionChangeHandlers\n let { refinedOptions, pluginHooks, localeDefaults, availableLocaleData, extra, } = this.processRawCalendarOptions(optionOverrides, dynamicOptionOverrides);\n warnUnknownOptions(extra);\n let dateEnv = this.buildDateEnv(refinedOptions.timeZone, refinedOptions.locale, refinedOptions.weekNumberCalculation, refinedOptions.firstDay, refinedOptions.weekText, pluginHooks, availableLocaleData, refinedOptions.defaultRangeSeparator);\n let viewSpecs = this.buildViewSpecs(pluginHooks.views, optionOverrides, dynamicOptionOverrides, localeDefaults);\n let theme = this.buildTheme(refinedOptions, pluginHooks);\n let toolbarConfig = this.parseToolbars(refinedOptions, optionOverrides, theme, viewSpecs, calendarApi);\n return {\n calendarOptions: refinedOptions,\n pluginHooks,\n dateEnv,\n viewSpecs,\n theme,\n toolbarConfig,\n localeDefaults,\n availableRawLocales: availableLocaleData.map,\n };\n }\n // always called from behind a memoizer\n processRawCalendarOptions(optionOverrides, dynamicOptionOverrides) {\n let { locales, locale } = mergeRawOptions([\n BASE_OPTION_DEFAULTS,\n optionOverrides,\n dynamicOptionOverrides,\n ]);\n let availableLocaleData = this.organizeRawLocales(locales);\n let availableRawLocales = availableLocaleData.map;\n let localeDefaults = this.buildLocale(locale || availableLocaleData.defaultCode, availableRawLocales).options;\n let pluginHooks = this.buildPluginHooks(optionOverrides.plugins || [], globalPlugins);\n let refiners = this.currentCalendarOptionsRefiners = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, BASE_OPTION_REFINERS), CALENDAR_LISTENER_REFINERS), CALENDAR_OPTION_REFINERS), pluginHooks.listenerRefiners), pluginHooks.optionRefiners);\n let extra = {};\n let raw = mergeRawOptions([\n BASE_OPTION_DEFAULTS,\n localeDefaults,\n optionOverrides,\n dynamicOptionOverrides,\n ]);\n let refined = {};\n let currentRaw = this.currentCalendarOptionsInput;\n let currentRefined = this.currentCalendarOptionsRefined;\n let anyChanges = false;\n for (let optionName in raw) {\n if (optionName !== 'plugins') { // because plugins is special-cased\n if (raw[optionName] === currentRaw[optionName] ||\n (COMPLEX_OPTION_COMPARATORS[optionName] &&\n (optionName in currentRaw) &&\n COMPLEX_OPTION_COMPARATORS[optionName](currentRaw[optionName], raw[optionName]))) {\n refined[optionName] = currentRefined[optionName];\n }\n else if (refiners[optionName]) {\n refined[optionName] = refiners[optionName](raw[optionName]);\n anyChanges = true;\n }\n else {\n extra[optionName] = currentRaw[optionName];\n }\n }\n }\n if (anyChanges) {\n this.currentCalendarOptionsInput = raw;\n this.currentCalendarOptionsRefined = refined;\n }\n return {\n rawOptions: this.currentCalendarOptionsInput,\n refinedOptions: this.currentCalendarOptionsRefined,\n pluginHooks,\n availableLocaleData,\n localeDefaults,\n extra,\n };\n }\n _computeCurrentViewData(viewType, optionsData, optionOverrides, dynamicOptionOverrides) {\n let viewSpec = optionsData.viewSpecs[viewType];\n if (!viewSpec) {\n throw new Error(`viewType \"${viewType}\" is not available. Please make sure you've loaded all neccessary plugins`);\n }\n let { refinedOptions, extra } = this.processRawViewOptions(viewSpec, optionsData.pluginHooks, optionsData.localeDefaults, optionOverrides, dynamicOptionOverrides);\n warnUnknownOptions(extra);\n let dateProfileGenerator = this.buildDateProfileGenerator({\n dateProfileGeneratorClass: viewSpec.optionDefaults.dateProfileGeneratorClass,\n duration: viewSpec.duration,\n durationUnit: viewSpec.durationUnit,\n usesMinMaxTime: viewSpec.optionDefaults.usesMinMaxTime,\n dateEnv: optionsData.dateEnv,\n calendarApi: this.props.calendarApi,\n slotMinTime: refinedOptions.slotMinTime,\n slotMaxTime: refinedOptions.slotMaxTime,\n showNonCurrentDates: refinedOptions.showNonCurrentDates,\n dayCount: refinedOptions.dayCount,\n dateAlignment: refinedOptions.dateAlignment,\n dateIncrement: refinedOptions.dateIncrement,\n hiddenDays: refinedOptions.hiddenDays,\n weekends: refinedOptions.weekends,\n nowInput: refinedOptions.now,\n validRangeInput: refinedOptions.validRange,\n visibleRangeInput: refinedOptions.visibleRange,\n monthMode: refinedOptions.monthMode,\n fixedWeekCount: refinedOptions.fixedWeekCount,\n });\n let viewApi = this.buildViewApi(viewType, this.getCurrentData, optionsData.dateEnv);\n return { viewSpec, options: refinedOptions, dateProfileGenerator, viewApi };\n }\n processRawViewOptions(viewSpec, pluginHooks, localeDefaults, optionOverrides, dynamicOptionOverrides) {\n let raw = mergeRawOptions([\n BASE_OPTION_DEFAULTS,\n viewSpec.optionDefaults,\n localeDefaults,\n optionOverrides,\n viewSpec.optionOverrides,\n dynamicOptionOverrides,\n ]);\n let refiners = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, BASE_OPTION_REFINERS), CALENDAR_LISTENER_REFINERS), CALENDAR_OPTION_REFINERS), VIEW_OPTION_REFINERS), pluginHooks.listenerRefiners), pluginHooks.optionRefiners);\n let refined = {};\n let currentRaw = this.currentViewOptionsInput;\n let currentRefined = this.currentViewOptionsRefined;\n let anyChanges = false;\n let extra = {};\n for (let optionName in raw) {\n if (raw[optionName] === currentRaw[optionName] ||\n (COMPLEX_OPTION_COMPARATORS[optionName] &&\n COMPLEX_OPTION_COMPARATORS[optionName](raw[optionName], currentRaw[optionName]))) {\n refined[optionName] = currentRefined[optionName];\n }\n else {\n if (raw[optionName] === this.currentCalendarOptionsInput[optionName] ||\n (COMPLEX_OPTION_COMPARATORS[optionName] &&\n COMPLEX_OPTION_COMPARATORS[optionName](raw[optionName], this.currentCalendarOptionsInput[optionName]))) {\n if (optionName in this.currentCalendarOptionsRefined) { // might be an \"extra\" prop\n refined[optionName] = this.currentCalendarOptionsRefined[optionName];\n }\n }\n else if (refiners[optionName]) {\n refined[optionName] = refiners[optionName](raw[optionName]);\n }\n else {\n extra[optionName] = raw[optionName];\n }\n anyChanges = true;\n }\n }\n if (anyChanges) {\n this.currentViewOptionsInput = raw;\n this.currentViewOptionsRefined = refined;\n }\n return {\n rawOptions: this.currentViewOptionsInput,\n refinedOptions: this.currentViewOptionsRefined,\n extra,\n };\n }\n}\nfunction buildDateEnv$1(timeZone, explicitLocale, weekNumberCalculation, firstDay, weekText, pluginHooks, availableLocaleData, defaultSeparator) {\n let locale = buildLocale(explicitLocale || availableLocaleData.defaultCode, availableLocaleData.map);\n return new DateEnv({\n calendarSystem: 'gregory',\n timeZone,\n namedTimeZoneImpl: pluginHooks.namedTimeZonedImpl,\n locale,\n weekNumberCalculation,\n firstDay,\n weekText,\n cmdFormatter: pluginHooks.cmdFormatter,\n defaultSeparator,\n });\n}\nfunction buildTheme(options, pluginHooks) {\n let ThemeClass = pluginHooks.themeClasses[options.themeSystem] || StandardTheme;\n return new ThemeClass(options);\n}\nfunction buildDateProfileGenerator(props) {\n let DateProfileGeneratorClass = props.dateProfileGeneratorClass || DateProfileGenerator;\n return new DateProfileGeneratorClass(props);\n}\nfunction buildViewApi(type, getCurrentData, dateEnv) {\n return new ViewImpl(type, getCurrentData, dateEnv);\n}\nfunction buildEventUiBySource(eventSources) {\n return mapHash(eventSources, (eventSource) => eventSource.ui);\n}\nfunction buildEventUiBases(eventDefs, eventUiSingleBase, eventUiBySource) {\n let eventUiBases = { '': eventUiSingleBase };\n for (let defId in eventDefs) {\n let def = eventDefs[defId];\n if (def.sourceId && eventUiBySource[def.sourceId]) {\n eventUiBases[defId] = eventUiBySource[def.sourceId];\n }\n }\n return eventUiBases;\n}\nfunction buildViewUiProps(calendarContext) {\n let { options } = calendarContext;\n return {\n eventUiSingleBase: createEventUi({\n display: options.eventDisplay,\n editable: options.editable,\n startEditable: options.eventStartEditable,\n durationEditable: options.eventDurationEditable,\n constraint: options.eventConstraint,\n overlap: typeof options.eventOverlap === 'boolean' ? options.eventOverlap : undefined,\n allow: options.eventAllow,\n backgroundColor: options.eventBackgroundColor,\n borderColor: options.eventBorderColor,\n textColor: options.eventTextColor,\n color: options.eventColor,\n // classNames: options.eventClassNames // render hook will handle this\n }, calendarContext),\n selectionConfig: createEventUi({\n constraint: options.selectConstraint,\n overlap: typeof options.selectOverlap === 'boolean' ? options.selectOverlap : undefined,\n allow: options.selectAllow,\n }, calendarContext),\n };\n}\nfunction computeIsLoading(state, context) {\n for (let isLoadingFunc of context.pluginHooks.isLoadingFuncs) {\n if (isLoadingFunc(state)) {\n return true;\n }\n }\n return false;\n}\nfunction parseContextBusinessHours(calendarContext) {\n return parseBusinessHours(calendarContext.options.businessHours, calendarContext);\n}\nfunction warnUnknownOptions(options, viewName) {\n for (let optionName in options) {\n console.warn(`Unknown option '${optionName}'` +\n (viewName ? ` for view '${viewName}'` : ''));\n }\n}\n\nclass ToolbarSection extends BaseComponent {\n render() {\n let children = this.props.widgetGroups.map((widgetGroup) => this.renderWidgetGroup(widgetGroup));\n return createElement('div', { className: 'fc-toolbar-chunk' }, ...children);\n }\n renderWidgetGroup(widgetGroup) {\n let { props } = this;\n let { theme } = this.context;\n let children = [];\n let isOnlyButtons = true;\n for (let widget of widgetGroup) {\n let { buttonName, buttonClick, buttonText, buttonIcon, buttonHint } = widget;\n if (buttonName === 'title') {\n isOnlyButtons = false;\n children.push(createElement(\"h2\", { className: \"fc-toolbar-title\", id: props.titleId }, props.title));\n }\n else {\n let isPressed = buttonName === props.activeButton;\n let isDisabled = (!props.isTodayEnabled && buttonName === 'today') ||\n (!props.isPrevEnabled && buttonName === 'prev') ||\n (!props.isNextEnabled && buttonName === 'next');\n let buttonClasses = [`fc-${buttonName}-button`, theme.getClass('button')];\n if (isPressed) {\n buttonClasses.push(theme.getClass('buttonActive'));\n }\n children.push(createElement(\"button\", { type: \"button\", title: typeof buttonHint === 'function' ? buttonHint(props.navUnit) : buttonHint, disabled: isDisabled, \"aria-pressed\": isPressed, className: buttonClasses.join(' '), onClick: buttonClick }, buttonText || (buttonIcon ? createElement(\"span\", { className: buttonIcon }) : '')));\n }\n }\n if (children.length > 1) {\n let groupClassName = (isOnlyButtons && theme.getClass('buttonGroup')) || '';\n return createElement('div', { className: groupClassName }, ...children);\n }\n return children[0];\n }\n}\n\nclass Toolbar extends BaseComponent {\n render() {\n let { model, extraClassName } = this.props;\n let forceLtr = false;\n let startContent;\n let endContent;\n let sectionWidgets = model.sectionWidgets;\n let centerContent = sectionWidgets.center;\n if (sectionWidgets.left) {\n forceLtr = true;\n startContent = sectionWidgets.left;\n }\n else {\n startContent = sectionWidgets.start;\n }\n if (sectionWidgets.right) {\n forceLtr = true;\n endContent = sectionWidgets.right;\n }\n else {\n endContent = sectionWidgets.end;\n }\n let classNames = [\n extraClassName || '',\n 'fc-toolbar',\n forceLtr ? 'fc-toolbar-ltr' : '',\n ];\n return (createElement(\"div\", { className: classNames.join(' ') },\n this.renderSection('start', startContent || []),\n this.renderSection('center', centerContent || []),\n this.renderSection('end', endContent || [])));\n }\n renderSection(key, widgetGroups) {\n let { props } = this;\n return (createElement(ToolbarSection, { key: key, widgetGroups: widgetGroups, title: props.title, navUnit: props.navUnit, activeButton: props.activeButton, isTodayEnabled: props.isTodayEnabled, isPrevEnabled: props.isPrevEnabled, isNextEnabled: props.isNextEnabled, titleId: props.titleId }));\n }\n}\n\n// TODO: do function component?\nclass ViewContainer extends BaseComponent {\n constructor() {\n super(...arguments);\n this.state = {\n availableWidth: null,\n };\n this.handleEl = (el) => {\n this.el = el;\n setRef(this.props.elRef, el);\n this.updateAvailableWidth();\n };\n this.handleResize = () => {\n this.updateAvailableWidth();\n };\n }\n render() {\n let { props, state } = this;\n let { aspectRatio } = props;\n let classNames = [\n 'fc-view-harness',\n (aspectRatio || props.liquid || props.height)\n ? 'fc-view-harness-active' // harness controls the height\n : 'fc-view-harness-passive', // let the view do the height\n ];\n let height = '';\n let paddingBottom = '';\n if (aspectRatio) {\n if (state.availableWidth !== null) {\n height = state.availableWidth / aspectRatio;\n }\n else {\n // while waiting to know availableWidth, we can't set height to *zero*\n // because will cause lots of unnecessary scrollbars within scrollgrid.\n // BETTER: don't start rendering ANYTHING yet until we know container width\n // NOTE: why not always use paddingBottom? Causes height oscillation (issue 5606)\n paddingBottom = `${(1 / aspectRatio) * 100}%`;\n }\n }\n else {\n height = props.height || '';\n }\n return (createElement(\"div\", { \"aria-labelledby\": props.labeledById, ref: this.handleEl, className: classNames.join(' '), style: { height, paddingBottom } }, props.children));\n }\n componentDidMount() {\n this.context.addResizeHandler(this.handleResize);\n }\n componentWillUnmount() {\n this.context.removeResizeHandler(this.handleResize);\n }\n updateAvailableWidth() {\n if (this.el && // needed. but why?\n this.props.aspectRatio // aspectRatio is the only height setting that needs availableWidth\n ) {\n this.setState({ availableWidth: this.el.offsetWidth });\n }\n }\n}\n\n/*\nDetects when the user clicks on an event within a DateComponent\n*/\nclass EventClicking extends Interaction {\n constructor(settings) {\n super(settings);\n this.handleSegClick = (ev, segEl) => {\n let { component } = this;\n let { context } = component;\n let seg = getElSeg(segEl);\n if (seg && // might be the <div> surrounding the more link\n component.isValidSegDownEl(ev.target)) {\n // our way to simulate a link click for elements that can't be <a> tags\n // grab before trigger fired in case trigger trashes DOM thru rerendering\n let hasUrlContainer = elementClosest(ev.target, '.fc-event-forced-url');\n let url = hasUrlContainer ? hasUrlContainer.querySelector('a[href]').href : '';\n context.emitter.trigger('eventClick', {\n el: segEl,\n event: new EventImpl(component.context, seg.eventRange.def, seg.eventRange.instance),\n jsEvent: ev,\n view: context.viewApi,\n });\n if (url && !ev.defaultPrevented) {\n window.location.href = url;\n }\n }\n };\n this.destroy = listenBySelector(settings.el, 'click', '.fc-event', // on both fg and bg events\n this.handleSegClick);\n }\n}\n\n/*\nTriggers events and adds/removes core classNames when the user's pointer\nenters/leaves event-elements of a component.\n*/\nclass EventHovering extends Interaction {\n constructor(settings) {\n super(settings);\n // for simulating an eventMouseLeave when the event el is destroyed while mouse is over it\n this.handleEventElRemove = (el) => {\n if (el === this.currentSegEl) {\n this.handleSegLeave(null, this.currentSegEl);\n }\n };\n this.handleSegEnter = (ev, segEl) => {\n if (getElSeg(segEl)) { // TODO: better way to make sure not hovering over more+ link or its wrapper\n this.currentSegEl = segEl;\n this.triggerEvent('eventMouseEnter', ev, segEl);\n }\n };\n this.handleSegLeave = (ev, segEl) => {\n if (this.currentSegEl) {\n this.currentSegEl = null;\n this.triggerEvent('eventMouseLeave', ev, segEl);\n }\n };\n this.removeHoverListeners = listenToHoverBySelector(settings.el, '.fc-event', // on both fg and bg events\n this.handleSegEnter, this.handleSegLeave);\n }\n destroy() {\n this.removeHoverListeners();\n }\n triggerEvent(publicEvName, ev, segEl) {\n let { component } = this;\n let { context } = component;\n let seg = getElSeg(segEl);\n if (!ev || component.isValidSegDownEl(ev.target)) {\n context.emitter.trigger(publicEvName, {\n el: segEl,\n event: new EventImpl(context, seg.eventRange.def, seg.eventRange.instance),\n jsEvent: ev,\n view: context.viewApi,\n });\n }\n }\n}\n\nclass CalendarContent extends PureComponent {\n constructor() {\n super(...arguments);\n this.buildViewContext = memoize(buildViewContext);\n this.buildViewPropTransformers = memoize(buildViewPropTransformers);\n this.buildToolbarProps = memoize(buildToolbarProps);\n this.headerRef = createRef();\n this.footerRef = createRef();\n this.interactionsStore = {};\n // eslint-disable-next-line\n this.state = {\n viewLabelId: getUniqueDomId(),\n };\n // Component Registration\n // -----------------------------------------------------------------------------------------------------------------\n this.registerInteractiveComponent = (component, settingsInput) => {\n let settings = parseInteractionSettings(component, settingsInput);\n let DEFAULT_INTERACTIONS = [\n EventClicking,\n EventHovering,\n ];\n let interactionClasses = DEFAULT_INTERACTIONS.concat(this.props.pluginHooks.componentInteractions);\n let interactions = interactionClasses.map((TheInteractionClass) => new TheInteractionClass(settings));\n this.interactionsStore[component.uid] = interactions;\n interactionSettingsStore[component.uid] = settings;\n };\n this.unregisterInteractiveComponent = (component) => {\n let listeners = this.interactionsStore[component.uid];\n if (listeners) {\n for (let listener of listeners) {\n listener.destroy();\n }\n delete this.interactionsStore[component.uid];\n }\n delete interactionSettingsStore[component.uid];\n };\n // Resizing\n // -----------------------------------------------------------------------------------------------------------------\n this.resizeRunner = new DelayedRunner(() => {\n this.props.emitter.trigger('_resize', true); // should window resizes be considered \"forced\" ?\n this.props.emitter.trigger('windowResize', { view: this.props.viewApi });\n });\n this.handleWindowResize = (ev) => {\n let { options } = this.props;\n if (options.handleWindowResize &&\n ev.target === window // avoid jqui events\n ) {\n this.resizeRunner.request(options.windowResizeDelay);\n }\n };\n }\n /*\n renders INSIDE of an outer div\n */\n render() {\n let { props } = this;\n let { toolbarConfig, options } = props;\n let toolbarProps = this.buildToolbarProps(props.viewSpec, props.dateProfile, props.dateProfileGenerator, props.currentDate, getNow(props.options.now, props.dateEnv), // TODO: use NowTimer????\n props.viewTitle);\n let viewVGrow = false;\n let viewHeight = '';\n let viewAspectRatio;\n if (props.isHeightAuto || props.forPrint) {\n viewHeight = '';\n }\n else if (options.height != null) {\n viewVGrow = true;\n }\n else if (options.contentHeight != null) {\n viewHeight = options.contentHeight;\n }\n else {\n viewAspectRatio = Math.max(options.aspectRatio, 0.5); // prevent from getting too tall\n }\n let viewContext = this.buildViewContext(props.viewSpec, props.viewApi, props.options, props.dateProfileGenerator, props.dateEnv, props.theme, props.pluginHooks, props.dispatch, props.getCurrentData, props.emitter, props.calendarApi, this.registerInteractiveComponent, this.unregisterInteractiveComponent);\n let viewLabelId = (toolbarConfig.header && toolbarConfig.header.hasTitle)\n ? this.state.viewLabelId\n : '';\n return (createElement(ViewContextType.Provider, { value: viewContext },\n toolbarConfig.header && (createElement(Toolbar, Object.assign({ ref: this.headerRef, extraClassName: \"fc-header-toolbar\", model: toolbarConfig.header, titleId: viewLabelId }, toolbarProps))),\n createElement(ViewContainer, { liquid: viewVGrow, height: viewHeight, aspectRatio: viewAspectRatio, labeledById: viewLabelId },\n this.renderView(props),\n this.buildAppendContent()),\n toolbarConfig.footer && (createElement(Toolbar, Object.assign({ ref: this.footerRef, extraClassName: \"fc-footer-toolbar\", model: toolbarConfig.footer, titleId: \"\" }, toolbarProps)))));\n }\n componentDidMount() {\n let { props } = this;\n this.calendarInteractions = props.pluginHooks.calendarInteractions\n .map((CalendarInteractionClass) => new CalendarInteractionClass(props));\n window.addEventListener('resize', this.handleWindowResize);\n let { propSetHandlers } = props.pluginHooks;\n for (let propName in propSetHandlers) {\n propSetHandlers[propName](props[propName], props);\n }\n }\n componentDidUpdate(prevProps) {\n let { props } = this;\n let { propSetHandlers } = props.pluginHooks;\n for (let propName in propSetHandlers) {\n if (props[propName] !== prevProps[propName]) {\n propSetHandlers[propName](props[propName], props);\n }\n }\n }\n componentWillUnmount() {\n window.removeEventListener('resize', this.handleWindowResize);\n this.resizeRunner.clear();\n for (let interaction of this.calendarInteractions) {\n interaction.destroy();\n }\n this.props.emitter.trigger('_unmount');\n }\n buildAppendContent() {\n let { props } = this;\n let children = props.pluginHooks.viewContainerAppends.map((buildAppendContent) => buildAppendContent(props));\n return createElement(Fragment, {}, ...children);\n }\n renderView(props) {\n let { pluginHooks } = props;\n let { viewSpec } = props;\n let viewProps = {\n dateProfile: props.dateProfile,\n businessHours: props.businessHours,\n eventStore: props.renderableEventStore,\n eventUiBases: props.eventUiBases,\n dateSelection: props.dateSelection,\n eventSelection: props.eventSelection,\n eventDrag: props.eventDrag,\n eventResize: props.eventResize,\n isHeightAuto: props.isHeightAuto,\n forPrint: props.forPrint,\n };\n let transformers = this.buildViewPropTransformers(pluginHooks.viewPropsTransformers);\n for (let transformer of transformers) {\n Object.assign(viewProps, transformer.transform(viewProps, props));\n }\n let ViewComponent = viewSpec.component;\n return (createElement(ViewComponent, Object.assign({}, viewProps)));\n }\n}\nfunction buildToolbarProps(viewSpec, dateProfile, dateProfileGenerator, currentDate, now, title) {\n // don't force any date-profiles to valid date profiles (the `false`) so that we can tell if it's invalid\n let todayInfo = dateProfileGenerator.build(now, undefined, false); // TODO: need `undefined` or else INFINITE LOOP for some reason\n let prevInfo = dateProfileGenerator.buildPrev(dateProfile, currentDate, false);\n let nextInfo = dateProfileGenerator.buildNext(dateProfile, currentDate, false);\n return {\n title,\n activeButton: viewSpec.type,\n navUnit: viewSpec.singleUnit,\n isTodayEnabled: todayInfo.isValid && !rangeContainsMarker(dateProfile.currentRange, now),\n isPrevEnabled: prevInfo.isValid,\n isNextEnabled: nextInfo.isValid,\n };\n}\n// Plugin\n// -----------------------------------------------------------------------------------------------------------------\nfunction buildViewPropTransformers(theClasses) {\n return theClasses.map((TheClass) => new TheClass());\n}\n\nclass Calendar extends CalendarImpl {\n constructor(el, optionOverrides = {}) {\n super();\n this.isRendering = false;\n this.isRendered = false;\n this.currentClassNames = [];\n this.customContentRenderId = 0;\n this.handleAction = (action) => {\n // actions we know we want to render immediately\n switch (action.type) {\n case 'SET_EVENT_DRAG':\n case 'SET_EVENT_RESIZE':\n this.renderRunner.tryDrain();\n }\n };\n this.handleData = (data) => {\n this.currentData = data;\n this.renderRunner.request(data.calendarOptions.rerenderDelay);\n };\n this.handleRenderRequest = () => {\n if (this.isRendering) {\n this.isRendered = true;\n let { currentData } = this;\n flushSync(() => {\n render(createElement(CalendarRoot, { options: currentData.calendarOptions, theme: currentData.theme, emitter: currentData.emitter }, (classNames, height, isHeightAuto, forPrint) => {\n this.setClassNames(classNames);\n this.setHeight(height);\n return (createElement(RenderId.Provider, { value: this.customContentRenderId },\n createElement(CalendarContent, Object.assign({ isHeightAuto: isHeightAuto, forPrint: forPrint }, currentData))));\n }), this.el);\n });\n }\n else if (this.isRendered) {\n this.isRendered = false;\n render(null, this.el);\n this.setClassNames([]);\n this.setHeight('');\n }\n };\n this.el = el;\n this.renderRunner = new DelayedRunner(this.handleRenderRequest);\n new CalendarDataManager({\n optionOverrides,\n calendarApi: this,\n onAction: this.handleAction,\n onData: this.handleData,\n });\n }\n render() {\n let wasRendering = this.isRendering;\n if (!wasRendering) {\n this.isRendering = true;\n }\n else {\n this.customContentRenderId += 1;\n }\n this.renderRunner.request();\n if (wasRendering) {\n this.updateSize();\n }\n }\n destroy() {\n if (this.isRendering) {\n this.isRendering = false;\n this.renderRunner.request();\n }\n }\n updateSize() {\n flushSync(() => {\n super.updateSize();\n });\n }\n batchRendering(func) {\n this.renderRunner.pause('batchRendering');\n func();\n this.renderRunner.resume('batchRendering');\n }\n pauseRendering() {\n this.renderRunner.pause('pauseRendering');\n }\n resumeRendering() {\n this.renderRunner.resume('pauseRendering', true);\n }\n resetOptions(optionOverrides, append) {\n this.currentDataManager.resetOptions(optionOverrides, append);\n }\n setClassNames(classNames) {\n if (!isArraysEqual(classNames, this.currentClassNames)) {\n let { classList } = this.el;\n for (let className of this.currentClassNames) {\n classList.remove(className);\n }\n for (let className of classNames) {\n classList.add(className);\n }\n this.currentClassNames = classNames;\n }\n }\n setHeight(height) {\n applyStyleProp(this.el, 'height', height);\n }\n}\n\nfunction formatDate(dateInput, options = {}) {\n let dateEnv = buildDateEnv(options);\n let formatter = createFormatter(options);\n let dateMeta = dateEnv.createMarkerMeta(dateInput);\n if (!dateMeta) { // TODO: warning?\n return '';\n }\n return dateEnv.format(dateMeta.marker, formatter, {\n forcedTzo: dateMeta.forcedTzo,\n });\n}\nfunction formatRange(startInput, endInput, options) {\n let dateEnv = buildDateEnv(typeof options === 'object' && options ? options : {}); // pass in if non-null object\n let formatter = createFormatter(options);\n let startMeta = dateEnv.createMarkerMeta(startInput);\n let endMeta = dateEnv.createMarkerMeta(endInput);\n if (!startMeta || !endMeta) { // TODO: warning?\n return '';\n }\n return dateEnv.formatRange(startMeta.marker, endMeta.marker, formatter, {\n forcedStartTzo: startMeta.forcedTzo,\n forcedEndTzo: endMeta.forcedTzo,\n isEndExclusive: options.isEndExclusive,\n defaultSeparator: BASE_OPTION_DEFAULTS.defaultRangeSeparator,\n });\n}\n// TODO: more DRY and optimized\nfunction buildDateEnv(settings) {\n let locale = buildLocale(settings.locale || 'en', organizeRawLocales([]).map); // TODO: don't hardcode 'en' everywhere\n return new DateEnv(Object.assign(Object.assign({ timeZone: BASE_OPTION_DEFAULTS.timeZone, calendarSystem: 'gregory' }, settings), { locale }));\n}\n\n// HELPERS\n/*\nif nextDayThreshold is specified, slicing is done in an all-day fashion.\nyou can get nextDayThreshold from context.nextDayThreshold\n*/\nfunction sliceEvents(props, allDay) {\n return sliceEventStore(props.eventStore, props.eventUiBases, props.dateProfile.activeRange, allDay ? props.nextDayThreshold : null).fg;\n}\n\nconst version = '6.0.0-beta.3';\n\nexport { Calendar, formatDate, formatRange, sliceEvents, version };\n","import { createPlugin } from '@fullcalendar/core/index.js';\nimport { config, Emitter, elementClosest, applyStyle, whenTransitionDone, removeElement, ScrollController, ElementScrollController, computeInnerRect, WindowScrollController, getElRoot, ElementDragging, preventSelection, preventContextMenu, allowSelection, allowContextMenu, computeRect, getClippingParents, pointInsideRect, constrainPoint, intersectRects, getRectCenter, diffPoints, mapHash, rangeContainsRange, isDateSpansEqual, Interaction, interactionSettingsToStore, isDateSelectionValid, enableCursor, disableCursor, triggerDateSelect, compareNumbers, getElSeg, getRelevantEvents, EventImpl, createEmptyEventStore, applyMutationToEventStore, isInteractionValid, buildEventApis, interactionSettingsStore, startOfDay, diffDates, createDuration, getEventTargetViaRoot, identity, eventTupleToStore, parseDragMeta, elementMatches, refineEventDef, parseEventDef, getDefaultEventEnd, createEventInstance, BASE_OPTION_DEFAULTS } from '@fullcalendar/core/internal.js';\n\nconfig.touchMouseIgnoreWait = 500;\nlet ignoreMouseDepth = 0;\nlet listenerCnt = 0;\nlet isWindowTouchMoveCancelled = false;\n/*\nUses a \"pointer\" abstraction, which monitors UI events for both mouse and touch.\nTracks when the pointer \"drags\" on a certain element, meaning down+move+up.\n\nAlso, tracks if there was touch-scrolling.\nAlso, can prevent touch-scrolling from happening.\nAlso, can fire pointermove events when scrolling happens underneath, even when no real pointer movement.\n\nemits:\n- pointerdown\n- pointermove\n- pointerup\n*/\nclass PointerDragging {\n constructor(containerEl) {\n this.subjectEl = null;\n // options that can be directly assigned by caller\n this.selector = ''; // will cause subjectEl in all emitted events to be this element\n this.handleSelector = '';\n this.shouldIgnoreMove = false;\n this.shouldWatchScroll = true; // for simulating pointermove on scroll\n // internal states\n this.isDragging = false;\n this.isTouchDragging = false;\n this.wasTouchScroll = false;\n // Mouse\n // ----------------------------------------------------------------------------------------------------\n this.handleMouseDown = (ev) => {\n if (!this.shouldIgnoreMouse() &&\n isPrimaryMouseButton(ev) &&\n this.tryStart(ev)) {\n let pev = this.createEventFromMouse(ev, true);\n this.emitter.trigger('pointerdown', pev);\n this.initScrollWatch(pev);\n if (!this.shouldIgnoreMove) {\n document.addEventListener('mousemove', this.handleMouseMove);\n }\n document.addEventListener('mouseup', this.handleMouseUp);\n }\n };\n this.handleMouseMove = (ev) => {\n let pev = this.createEventFromMouse(ev);\n this.recordCoords(pev);\n this.emitter.trigger('pointermove', pev);\n };\n this.handleMouseUp = (ev) => {\n document.removeEventListener('mousemove', this.handleMouseMove);\n document.removeEventListener('mouseup', this.handleMouseUp);\n this.emitter.trigger('pointerup', this.createEventFromMouse(ev));\n this.cleanup(); // call last so that pointerup has access to props\n };\n // Touch\n // ----------------------------------------------------------------------------------------------------\n this.handleTouchStart = (ev) => {\n if (this.tryStart(ev)) {\n this.isTouchDragging = true;\n let pev = this.createEventFromTouch(ev, true);\n this.emitter.trigger('pointerdown', pev);\n this.initScrollWatch(pev);\n // unlike mouse, need to attach to target, not document\n // https://stackoverflow.com/a/45760014\n let targetEl = ev.target;\n if (!this.shouldIgnoreMove) {\n targetEl.addEventListener('touchmove', this.handleTouchMove);\n }\n targetEl.addEventListener('touchend', this.handleTouchEnd);\n targetEl.addEventListener('touchcancel', this.handleTouchEnd); // treat it as a touch end\n // attach a handler to get called when ANY scroll action happens on the page.\n // this was impossible to do with normal on/off because 'scroll' doesn't bubble.\n // http://stackoverflow.com/a/32954565/96342\n window.addEventListener('scroll', this.handleTouchScroll, true);\n }\n };\n this.handleTouchMove = (ev) => {\n let pev = this.createEventFromTouch(ev);\n this.recordCoords(pev);\n this.emitter.trigger('pointermove', pev);\n };\n this.handleTouchEnd = (ev) => {\n if (this.isDragging) { // done to guard against touchend followed by touchcancel\n let targetEl = ev.target;\n targetEl.removeEventListener('touchmove', this.handleTouchMove);\n targetEl.removeEventListener('touchend', this.handleTouchEnd);\n targetEl.removeEventListener('touchcancel', this.handleTouchEnd);\n window.removeEventListener('scroll', this.handleTouchScroll, true); // useCaptured=true\n this.emitter.trigger('pointerup', this.createEventFromTouch(ev));\n this.cleanup(); // call last so that pointerup has access to props\n this.isTouchDragging = false;\n startIgnoringMouse();\n }\n };\n this.handleTouchScroll = () => {\n this.wasTouchScroll = true;\n };\n this.handleScroll = (ev) => {\n if (!this.shouldIgnoreMove) {\n let pageX = (window.pageXOffset - this.prevScrollX) + this.prevPageX;\n let pageY = (window.pageYOffset - this.prevScrollY) + this.prevPageY;\n this.emitter.trigger('pointermove', {\n origEvent: ev,\n isTouch: this.isTouchDragging,\n subjectEl: this.subjectEl,\n pageX,\n pageY,\n deltaX: pageX - this.origPageX,\n deltaY: pageY - this.origPageY,\n });\n }\n };\n this.containerEl = containerEl;\n this.emitter = new Emitter();\n containerEl.addEventListener('mousedown', this.handleMouseDown);\n containerEl.addEventListener('touchstart', this.handleTouchStart, { passive: true });\n listenerCreated();\n }\n destroy() {\n this.containerEl.removeEventListener('mousedown', this.handleMouseDown);\n this.containerEl.removeEventListener('touchstart', this.handleTouchStart, { passive: true });\n listenerDestroyed();\n }\n tryStart(ev) {\n let subjectEl = this.querySubjectEl(ev);\n let downEl = ev.target;\n if (subjectEl &&\n (!this.handleSelector || elementClosest(downEl, this.handleSelector))) {\n this.subjectEl = subjectEl;\n this.isDragging = true; // do this first so cancelTouchScroll will work\n this.wasTouchScroll = false;\n return true;\n }\n return false;\n }\n cleanup() {\n isWindowTouchMoveCancelled = false;\n this.isDragging = false;\n this.subjectEl = null;\n // keep wasTouchScroll around for later access\n this.destroyScrollWatch();\n }\n querySubjectEl(ev) {\n if (this.selector) {\n return elementClosest(ev.target, this.selector);\n }\n return this.containerEl;\n }\n shouldIgnoreMouse() {\n return ignoreMouseDepth || this.isTouchDragging;\n }\n // can be called by user of this class, to cancel touch-based scrolling for the current drag\n cancelTouchScroll() {\n if (this.isDragging) {\n isWindowTouchMoveCancelled = true;\n }\n }\n // Scrolling that simulates pointermoves\n // ----------------------------------------------------------------------------------------------------\n initScrollWatch(ev) {\n if (this.shouldWatchScroll) {\n this.recordCoords(ev);\n window.addEventListener('scroll', this.handleScroll, true); // useCapture=true\n }\n }\n recordCoords(ev) {\n if (this.shouldWatchScroll) {\n this.prevPageX = ev.pageX;\n this.prevPageY = ev.pageY;\n this.prevScrollX = window.pageXOffset;\n this.prevScrollY = window.pageYOffset;\n }\n }\n destroyScrollWatch() {\n if (this.shouldWatchScroll) {\n window.removeEventListener('scroll', this.handleScroll, true); // useCaptured=true\n }\n }\n // Event Normalization\n // ----------------------------------------------------------------------------------------------------\n createEventFromMouse(ev, isFirst) {\n let deltaX = 0;\n let deltaY = 0;\n // TODO: repeat code\n if (isFirst) {\n this.origPageX = ev.pageX;\n this.origPageY = ev.pageY;\n }\n else {\n deltaX = ev.pageX - this.origPageX;\n deltaY = ev.pageY - this.origPageY;\n }\n return {\n origEvent: ev,\n isTouch: false,\n subjectEl: this.subjectEl,\n pageX: ev.pageX,\n pageY: ev.pageY,\n deltaX,\n deltaY,\n };\n }\n createEventFromTouch(ev, isFirst) {\n let touches = ev.touches;\n let pageX;\n let pageY;\n let deltaX = 0;\n let deltaY = 0;\n // if touch coords available, prefer,\n // because FF would give bad ev.pageX ev.pageY\n if (touches && touches.length) {\n pageX = touches[0].pageX;\n pageY = touches[0].pageY;\n }\n else {\n pageX = ev.pageX;\n pageY = ev.pageY;\n }\n // TODO: repeat code\n if (isFirst) {\n this.origPageX = pageX;\n this.origPageY = pageY;\n }\n else {\n deltaX = pageX - this.origPageX;\n deltaY = pageY - this.origPageY;\n }\n return {\n origEvent: ev,\n isTouch: true,\n subjectEl: this.subjectEl,\n pageX,\n pageY,\n deltaX,\n deltaY,\n };\n }\n}\n// Returns a boolean whether this was a left mouse click and no ctrl key (which means right click on Mac)\nfunction isPrimaryMouseButton(ev) {\n return ev.button === 0 && !ev.ctrlKey;\n}\n// Ignoring fake mouse events generated by touch\n// ----------------------------------------------------------------------------------------------------\nfunction startIgnoringMouse() {\n ignoreMouseDepth += 1;\n setTimeout(() => {\n ignoreMouseDepth -= 1;\n }, config.touchMouseIgnoreWait);\n}\n// We want to attach touchmove as early as possible for Safari\n// ----------------------------------------------------------------------------------------------------\nfunction listenerCreated() {\n listenerCnt += 1;\n if (listenerCnt === 1) {\n window.addEventListener('touchmove', onWindowTouchMove, { passive: false });\n }\n}\nfunction listenerDestroyed() {\n listenerCnt -= 1;\n if (!listenerCnt) {\n window.removeEventListener('touchmove', onWindowTouchMove, { passive: false });\n }\n}\nfunction onWindowTouchMove(ev) {\n if (isWindowTouchMoveCancelled) {\n ev.preventDefault();\n }\n}\n\n/*\nAn effect in which an element follows the movement of a pointer across the screen.\nThe moving element is a clone of some other element.\nMust call start + handleMove + stop.\n*/\nclass ElementMirror {\n constructor() {\n this.isVisible = false; // must be explicitly enabled\n this.sourceEl = null;\n this.mirrorEl = null;\n this.sourceElRect = null; // screen coords relative to viewport\n // options that can be set directly by caller\n this.parentNode = document.body; // HIGHLY SUGGESTED to set this to sidestep ShadowDOM issues\n this.zIndex = 9999;\n this.revertDuration = 0;\n }\n start(sourceEl, pageX, pageY) {\n this.sourceEl = sourceEl;\n this.sourceElRect = this.sourceEl.getBoundingClientRect();\n this.origScreenX = pageX - window.pageXOffset;\n this.origScreenY = pageY - window.pageYOffset;\n this.deltaX = 0;\n this.deltaY = 0;\n this.updateElPosition();\n }\n handleMove(pageX, pageY) {\n this.deltaX = (pageX - window.pageXOffset) - this.origScreenX;\n this.deltaY = (pageY - window.pageYOffset) - this.origScreenY;\n this.updateElPosition();\n }\n // can be called before start\n setIsVisible(bool) {\n if (bool) {\n if (!this.isVisible) {\n if (this.mirrorEl) {\n this.mirrorEl.style.display = '';\n }\n this.isVisible = bool; // needs to happen before updateElPosition\n this.updateElPosition(); // because was not updating the position while invisible\n }\n }\n else if (this.isVisible) {\n if (this.mirrorEl) {\n this.mirrorEl.style.display = 'none';\n }\n this.isVisible = bool;\n }\n }\n // always async\n stop(needsRevertAnimation, callback) {\n let done = () => {\n this.cleanup();\n callback();\n };\n if (needsRevertAnimation &&\n this.mirrorEl &&\n this.isVisible &&\n this.revertDuration && // if 0, transition won't work\n (this.deltaX || this.deltaY) // if same coords, transition won't work\n ) {\n this.doRevertAnimation(done, this.revertDuration);\n }\n else {\n setTimeout(done, 0);\n }\n }\n doRevertAnimation(callback, revertDuration) {\n let mirrorEl = this.mirrorEl;\n let finalSourceElRect = this.sourceEl.getBoundingClientRect(); // because autoscrolling might have happened\n mirrorEl.style.transition =\n 'top ' + revertDuration + 'ms,' +\n 'left ' + revertDuration + 'ms';\n applyStyle(mirrorEl, {\n left: finalSourceElRect.left,\n top: finalSourceElRect.top,\n });\n whenTransitionDone(mirrorEl, () => {\n mirrorEl.style.transition = '';\n callback();\n });\n }\n cleanup() {\n if (this.mirrorEl) {\n removeElement(this.mirrorEl);\n this.mirrorEl = null;\n }\n this.sourceEl = null;\n }\n updateElPosition() {\n if (this.sourceEl && this.isVisible) {\n applyStyle(this.getMirrorEl(), {\n left: this.sourceElRect.left + this.deltaX,\n top: this.sourceElRect.top + this.deltaY,\n });\n }\n }\n getMirrorEl() {\n let sourceElRect = this.sourceElRect;\n let mirrorEl = this.mirrorEl;\n if (!mirrorEl) {\n mirrorEl = this.mirrorEl = this.sourceEl.cloneNode(true); // cloneChildren=true\n // we don't want long taps or any mouse interaction causing selection/menus.\n // would use preventSelection(), but that prevents selectstart, causing problems.\n mirrorEl.classList.add('fc-unselectable');\n mirrorEl.classList.add('fc-event-dragging');\n applyStyle(mirrorEl, {\n position: 'fixed',\n zIndex: this.zIndex,\n visibility: '',\n boxSizing: 'border-box',\n width: sourceElRect.right - sourceElRect.left,\n height: sourceElRect.bottom - sourceElRect.top,\n right: 'auto',\n bottom: 'auto',\n margin: 0,\n });\n this.parentNode.appendChild(mirrorEl);\n }\n return mirrorEl;\n }\n}\n\n/*\nIs a cache for a given element's scroll information (all the info that ScrollController stores)\nin addition the \"client rectangle\" of the element.. the area within the scrollbars.\n\nThe cache can be in one of two modes:\n- doesListening:false - ignores when the container is scrolled by someone else\n- doesListening:true - watch for scrolling and update the cache\n*/\nclass ScrollGeomCache extends ScrollController {\n constructor(scrollController, doesListening) {\n super();\n this.handleScroll = () => {\n this.scrollTop = this.scrollController.getScrollTop();\n this.scrollLeft = this.scrollController.getScrollLeft();\n this.handleScrollChange();\n };\n this.scrollController = scrollController;\n this.doesListening = doesListening;\n this.scrollTop = this.origScrollTop = scrollController.getScrollTop();\n this.scrollLeft = this.origScrollLeft = scrollController.getScrollLeft();\n this.scrollWidth = scrollController.getScrollWidth();\n this.scrollHeight = scrollController.getScrollHeight();\n this.clientWidth = scrollController.getClientWidth();\n this.clientHeight = scrollController.getClientHeight();\n this.clientRect = this.computeClientRect(); // do last in case it needs cached values\n if (this.doesListening) {\n this.getEventTarget().addEventListener('scroll', this.handleScroll);\n }\n }\n destroy() {\n if (this.doesListening) {\n this.getEventTarget().removeEventListener('scroll', this.handleScroll);\n }\n }\n getScrollTop() {\n return this.scrollTop;\n }\n getScrollLeft() {\n return this.scrollLeft;\n }\n setScrollTop(top) {\n this.scrollController.setScrollTop(top);\n if (!this.doesListening) {\n // we are not relying on the element to normalize out-of-bounds scroll values\n // so we need to sanitize ourselves\n this.scrollTop = Math.max(Math.min(top, this.getMaxScrollTop()), 0);\n this.handleScrollChange();\n }\n }\n setScrollLeft(top) {\n this.scrollController.setScrollLeft(top);\n if (!this.doesListening) {\n // we are not relying on the element to normalize out-of-bounds scroll values\n // so we need to sanitize ourselves\n this.scrollLeft = Math.max(Math.min(top, this.getMaxScrollLeft()), 0);\n this.handleScrollChange();\n }\n }\n getClientWidth() {\n return this.clientWidth;\n }\n getClientHeight() {\n return this.clientHeight;\n }\n getScrollWidth() {\n return this.scrollWidth;\n }\n getScrollHeight() {\n return this.scrollHeight;\n }\n handleScrollChange() {\n }\n}\n\nclass ElementScrollGeomCache extends ScrollGeomCache {\n constructor(el, doesListening) {\n super(new ElementScrollController(el), doesListening);\n }\n getEventTarget() {\n return this.scrollController.el;\n }\n computeClientRect() {\n return computeInnerRect(this.scrollController.el);\n }\n}\n\nclass WindowScrollGeomCache extends ScrollGeomCache {\n constructor(doesListening) {\n super(new WindowScrollController(), doesListening);\n }\n getEventTarget() {\n return window;\n }\n computeClientRect() {\n return {\n left: this.scrollLeft,\n right: this.scrollLeft + this.clientWidth,\n top: this.scrollTop,\n bottom: this.scrollTop + this.clientHeight,\n };\n }\n // the window is the only scroll object that changes it's rectangle relative\n // to the document's topleft as it scrolls\n handleScrollChange() {\n this.clientRect = this.computeClientRect();\n }\n}\n\n// If available we are using native \"performance\" API instead of \"Date\"\n// Read more about it on MDN:\n// https://developer.mozilla.org/en-US/docs/Web/API/Performance\nconst getTime = typeof performance === 'function' ? performance.now : Date.now;\n/*\nFor a pointer interaction, automatically scrolls certain scroll containers when the pointer\napproaches the edge.\n\nThe caller must call start + handleMove + stop.\n*/\nclass AutoScroller {\n constructor() {\n // options that can be set by caller\n this.isEnabled = true;\n this.scrollQuery = [window, '.fc-scroller'];\n this.edgeThreshold = 50; // pixels\n this.maxVelocity = 300; // pixels per second\n // internal state\n this.pointerScreenX = null;\n this.pointerScreenY = null;\n this.isAnimating = false;\n this.scrollCaches = null;\n // protect against the initial pointerdown being too close to an edge and starting the scroll\n this.everMovedUp = false;\n this.everMovedDown = false;\n this.everMovedLeft = false;\n this.everMovedRight = false;\n this.animate = () => {\n if (this.isAnimating) { // wasn't cancelled between animation calls\n let edge = this.computeBestEdge(this.pointerScreenX + window.pageXOffset, this.pointerScreenY + window.pageYOffset);\n if (edge) {\n let now = getTime();\n this.handleSide(edge, (now - this.msSinceRequest) / 1000);\n this.requestAnimation(now);\n }\n else {\n this.isAnimating = false; // will stop animation\n }\n }\n };\n }\n start(pageX, pageY, scrollStartEl) {\n if (this.isEnabled) {\n this.scrollCaches = this.buildCaches(scrollStartEl);\n this.pointerScreenX = null;\n this.pointerScreenY = null;\n this.everMovedUp = false;\n this.everMovedDown = false;\n this.everMovedLeft = false;\n this.everMovedRight = false;\n this.handleMove(pageX, pageY);\n }\n }\n handleMove(pageX, pageY) {\n if (this.isEnabled) {\n let pointerScreenX = pageX - window.pageXOffset;\n let pointerScreenY = pageY - window.pageYOffset;\n let yDelta = this.pointerScreenY === null ? 0 : pointerScreenY - this.pointerScreenY;\n let xDelta = this.pointerScreenX === null ? 0 : pointerScreenX - this.pointerScreenX;\n if (yDelta < 0) {\n this.everMovedUp = true;\n }\n else if (yDelta > 0) {\n this.everMovedDown = true;\n }\n if (xDelta < 0) {\n this.everMovedLeft = true;\n }\n else if (xDelta > 0) {\n this.everMovedRight = true;\n }\n this.pointerScreenX = pointerScreenX;\n this.pointerScreenY = pointerScreenY;\n if (!this.isAnimating) {\n this.isAnimating = true;\n this.requestAnimation(getTime());\n }\n }\n }\n stop() {\n if (this.isEnabled) {\n this.isAnimating = false; // will stop animation\n for (let scrollCache of this.scrollCaches) {\n scrollCache.destroy();\n }\n this.scrollCaches = null;\n }\n }\n requestAnimation(now) {\n this.msSinceRequest = now;\n requestAnimationFrame(this.animate);\n }\n handleSide(edge, seconds) {\n let { scrollCache } = edge;\n let { edgeThreshold } = this;\n let invDistance = edgeThreshold - edge.distance;\n let velocity = // the closer to the edge, the faster we scroll\n ((invDistance * invDistance) / (edgeThreshold * edgeThreshold)) * // quadratic\n this.maxVelocity * seconds;\n let sign = 1;\n switch (edge.name) {\n case 'left':\n sign = -1;\n // falls through\n case 'right':\n scrollCache.setScrollLeft(scrollCache.getScrollLeft() + velocity * sign);\n break;\n case 'top':\n sign = -1;\n // falls through\n case 'bottom':\n scrollCache.setScrollTop(scrollCache.getScrollTop() + velocity * sign);\n break;\n }\n }\n // left/top are relative to document topleft\n computeBestEdge(left, top) {\n let { edgeThreshold } = this;\n let bestSide = null;\n let scrollCaches = this.scrollCaches || [];\n for (let scrollCache of scrollCaches) {\n let rect = scrollCache.clientRect;\n let leftDist = left - rect.left;\n let rightDist = rect.right - left;\n let topDist = top - rect.top;\n let bottomDist = rect.bottom - top;\n // completely within the rect?\n if (leftDist >= 0 && rightDist >= 0 && topDist >= 0 && bottomDist >= 0) {\n if (topDist <= edgeThreshold && this.everMovedUp && scrollCache.canScrollUp() &&\n (!bestSide || bestSide.distance > topDist)) {\n bestSide = { scrollCache, name: 'top', distance: topDist };\n }\n if (bottomDist <= edgeThreshold && this.everMovedDown && scrollCache.canScrollDown() &&\n (!bestSide || bestSide.distance > bottomDist)) {\n bestSide = { scrollCache, name: 'bottom', distance: bottomDist };\n }\n if (leftDist <= edgeThreshold && this.everMovedLeft && scrollCache.canScrollLeft() &&\n (!bestSide || bestSide.distance > leftDist)) {\n bestSide = { scrollCache, name: 'left', distance: leftDist };\n }\n if (rightDist <= edgeThreshold && this.everMovedRight && scrollCache.canScrollRight() &&\n (!bestSide || bestSide.distance > rightDist)) {\n bestSide = { scrollCache, name: 'right', distance: rightDist };\n }\n }\n }\n return bestSide;\n }\n buildCaches(scrollStartEl) {\n return this.queryScrollEls(scrollStartEl).map((el) => {\n if (el === window) {\n return new WindowScrollGeomCache(false); // false = don't listen to user-generated scrolls\n }\n return new ElementScrollGeomCache(el, false); // false = don't listen to user-generated scrolls\n });\n }\n queryScrollEls(scrollStartEl) {\n let els = [];\n for (let query of this.scrollQuery) {\n if (typeof query === 'object') {\n els.push(query);\n }\n else {\n els.push(...Array.prototype.slice.call(getElRoot(scrollStartEl).querySelectorAll(query)));\n }\n }\n return els;\n }\n}\n\n/*\nMonitors dragging on an element. Has a number of high-level features:\n- minimum distance required before dragging\n- minimum wait time (\"delay\") before dragging\n- a mirror element that follows the pointer\n*/\nclass FeaturefulElementDragging extends ElementDragging {\n constructor(containerEl, selector) {\n super(containerEl);\n this.containerEl = containerEl;\n // options that can be directly set by caller\n // the caller can also set the PointerDragging's options as well\n this.delay = null;\n this.minDistance = 0;\n this.touchScrollAllowed = true; // prevents drag from starting and blocks scrolling during drag\n this.mirrorNeedsRevert = false;\n this.isInteracting = false; // is the user validly moving the pointer? lasts until pointerup\n this.isDragging = false; // is it INTENTFULLY dragging? lasts until after revert animation\n this.isDelayEnded = false;\n this.isDistanceSurpassed = false;\n this.delayTimeoutId = null;\n this.onPointerDown = (ev) => {\n if (!this.isDragging) { // so new drag doesn't happen while revert animation is going\n this.isInteracting = true;\n this.isDelayEnded = false;\n this.isDistanceSurpassed = false;\n preventSelection(document.body);\n preventContextMenu(document.body);\n // prevent links from being visited if there's an eventual drag.\n // also prevents selection in older browsers (maybe?).\n // not necessary for touch, besides, browser would complain about passiveness.\n if (!ev.isTouch) {\n ev.origEvent.preventDefault();\n }\n this.emitter.trigger('pointerdown', ev);\n if (this.isInteracting && // not destroyed via pointerdown handler\n !this.pointer.shouldIgnoreMove) {\n // actions related to initiating dragstart+dragmove+dragend...\n this.mirror.setIsVisible(false); // reset. caller must set-visible\n this.mirror.start(ev.subjectEl, ev.pageX, ev.pageY); // must happen on first pointer down\n this.startDelay(ev);\n if (!this.minDistance) {\n this.handleDistanceSurpassed(ev);\n }\n }\n }\n };\n this.onPointerMove = (ev) => {\n if (this.isInteracting) {\n this.emitter.trigger('pointermove', ev);\n if (!this.isDistanceSurpassed) {\n let minDistance = this.minDistance;\n let distanceSq; // current distance from the origin, squared\n let { deltaX, deltaY } = ev;\n distanceSq = deltaX * deltaX + deltaY * deltaY;\n if (distanceSq >= minDistance * minDistance) { // use pythagorean theorem\n this.handleDistanceSurpassed(ev);\n }\n }\n if (this.isDragging) {\n // a real pointer move? (not one simulated by scrolling)\n if (ev.origEvent.type !== 'scroll') {\n this.mirror.handleMove(ev.pageX, ev.pageY);\n this.autoScroller.handleMove(ev.pageX, ev.pageY);\n }\n this.emitter.trigger('dragmove', ev);\n }\n }\n };\n this.onPointerUp = (ev) => {\n if (this.isInteracting) {\n this.isInteracting = false;\n allowSelection(document.body);\n allowContextMenu(document.body);\n this.emitter.trigger('pointerup', ev); // can potentially set mirrorNeedsRevert\n if (this.isDragging) {\n this.autoScroller.stop();\n this.tryStopDrag(ev); // which will stop the mirror\n }\n if (this.delayTimeoutId) {\n clearTimeout(this.delayTimeoutId);\n this.delayTimeoutId = null;\n }\n }\n };\n let pointer = this.pointer = new PointerDragging(containerEl);\n pointer.emitter.on('pointerdown', this.onPointerDown);\n pointer.emitter.on('pointermove', this.onPointerMove);\n pointer.emitter.on('pointerup', this.onPointerUp);\n if (selector) {\n pointer.selector = selector;\n }\n this.mirror = new ElementMirror();\n this.autoScroller = new AutoScroller();\n }\n destroy() {\n this.pointer.destroy();\n // HACK: simulate a pointer-up to end the current drag\n // TODO: fire 'dragend' directly and stop interaction. discourage use of pointerup event (b/c might not fire)\n this.onPointerUp({});\n }\n startDelay(ev) {\n if (typeof this.delay === 'number') {\n this.delayTimeoutId = setTimeout(() => {\n this.delayTimeoutId = null;\n this.handleDelayEnd(ev);\n }, this.delay); // not assignable to number!\n }\n else {\n this.handleDelayEnd(ev);\n }\n }\n handleDelayEnd(ev) {\n this.isDelayEnded = true;\n this.tryStartDrag(ev);\n }\n handleDistanceSurpassed(ev) {\n this.isDistanceSurpassed = true;\n this.tryStartDrag(ev);\n }\n tryStartDrag(ev) {\n if (this.isDelayEnded && this.isDistanceSurpassed) {\n if (!this.pointer.wasTouchScroll || this.touchScrollAllowed) {\n this.isDragging = true;\n this.mirrorNeedsRevert = false;\n this.autoScroller.start(ev.pageX, ev.pageY, this.containerEl);\n this.emitter.trigger('dragstart', ev);\n if (this.touchScrollAllowed === false) {\n this.pointer.cancelTouchScroll();\n }\n }\n }\n }\n tryStopDrag(ev) {\n // .stop() is ALWAYS asynchronous, which we NEED because we want all pointerup events\n // that come from the document to fire beforehand. much more convenient this way.\n this.mirror.stop(this.mirrorNeedsRevert, this.stopDrag.bind(this, ev));\n }\n stopDrag(ev) {\n this.isDragging = false;\n this.emitter.trigger('dragend', ev);\n }\n // fill in the implementations...\n setIgnoreMove(bool) {\n this.pointer.shouldIgnoreMove = bool;\n }\n setMirrorIsVisible(bool) {\n this.mirror.setIsVisible(bool);\n }\n setMirrorNeedsRevert(bool) {\n this.mirrorNeedsRevert = bool;\n }\n setAutoScrollEnabled(bool) {\n this.autoScroller.isEnabled = bool;\n }\n}\n\n/*\nWhen this class is instantiated, it records the offset of an element (relative to the document topleft),\nand continues to monitor scrolling, updating the cached coordinates if it needs to.\nDoes not access the DOM after instantiation, so highly performant.\n\nAlso keeps track of all scrolling/overflow:hidden containers that are parents of the given element\nand an determine if a given point is inside the combined clipping rectangle.\n*/\nclass OffsetTracker {\n constructor(el) {\n this.origRect = computeRect(el);\n // will work fine for divs that have overflow:hidden\n this.scrollCaches = getClippingParents(el).map((scrollEl) => new ElementScrollGeomCache(scrollEl, true));\n }\n destroy() {\n for (let scrollCache of this.scrollCaches) {\n scrollCache.destroy();\n }\n }\n computeLeft() {\n let left = this.origRect.left;\n for (let scrollCache of this.scrollCaches) {\n left += scrollCache.origScrollLeft - scrollCache.getScrollLeft();\n }\n return left;\n }\n computeTop() {\n let top = this.origRect.top;\n for (let scrollCache of this.scrollCaches) {\n top += scrollCache.origScrollTop - scrollCache.getScrollTop();\n }\n return top;\n }\n isWithinClipping(pageX, pageY) {\n let point = { left: pageX, top: pageY };\n for (let scrollCache of this.scrollCaches) {\n if (!isIgnoredClipping(scrollCache.getEventTarget()) &&\n !pointInsideRect(point, scrollCache.clientRect)) {\n return false;\n }\n }\n return true;\n }\n}\n// certain clipping containers should never constrain interactions, like <html> and <body>\n// https://github.com/fullcalendar/fullcalendar/issues/3615\nfunction isIgnoredClipping(node) {\n let tagName = node.tagName;\n return tagName === 'HTML' || tagName === 'BODY';\n}\n\n/*\nTracks movement over multiple droppable areas (aka \"hits\")\nthat exist in one or more DateComponents.\nRelies on an existing draggable.\n\nemits:\n- pointerdown\n- dragstart\n- hitchange - fires initially, even if not over a hit\n- pointerup\n- (hitchange - again, to null, if ended over a hit)\n- dragend\n*/\nclass HitDragging {\n constructor(dragging, droppableStore) {\n // options that can be set by caller\n this.useSubjectCenter = false;\n this.requireInitial = true; // if doesn't start out on a hit, won't emit any events\n this.initialHit = null;\n this.movingHit = null;\n this.finalHit = null; // won't ever be populated if shouldIgnoreMove\n this.handlePointerDown = (ev) => {\n let { dragging } = this;\n this.initialHit = null;\n this.movingHit = null;\n this.finalHit = null;\n this.prepareHits();\n this.processFirstCoord(ev);\n if (this.initialHit || !this.requireInitial) {\n dragging.setIgnoreMove(false);\n // TODO: fire this before computing processFirstCoord, so listeners can cancel. this gets fired by almost every handler :(\n this.emitter.trigger('pointerdown', ev);\n }\n else {\n dragging.setIgnoreMove(true);\n }\n };\n this.handleDragStart = (ev) => {\n this.emitter.trigger('dragstart', ev);\n this.handleMove(ev, true); // force = fire even if initially null\n };\n this.handleDragMove = (ev) => {\n this.emitter.trigger('dragmove', ev);\n this.handleMove(ev);\n };\n this.handlePointerUp = (ev) => {\n this.releaseHits();\n this.emitter.trigger('pointerup', ev);\n };\n this.handleDragEnd = (ev) => {\n if (this.movingHit) {\n this.emitter.trigger('hitupdate', null, true, ev);\n }\n this.finalHit = this.movingHit;\n this.movingHit = null;\n this.emitter.trigger('dragend', ev);\n };\n this.droppableStore = droppableStore;\n dragging.emitter.on('pointerdown', this.handlePointerDown);\n dragging.emitter.on('dragstart', this.handleDragStart);\n dragging.emitter.on('dragmove', this.handleDragMove);\n dragging.emitter.on('pointerup', this.handlePointerUp);\n dragging.emitter.on('dragend', this.handleDragEnd);\n this.dragging = dragging;\n this.emitter = new Emitter();\n }\n // sets initialHit\n // sets coordAdjust\n processFirstCoord(ev) {\n let origPoint = { left: ev.pageX, top: ev.pageY };\n let adjustedPoint = origPoint;\n let subjectEl = ev.subjectEl;\n let subjectRect;\n if (subjectEl instanceof HTMLElement) { // i.e. not a Document/ShadowRoot\n subjectRect = computeRect(subjectEl);\n adjustedPoint = constrainPoint(adjustedPoint, subjectRect);\n }\n let initialHit = this.initialHit = this.queryHitForOffset(adjustedPoint.left, adjustedPoint.top);\n if (initialHit) {\n if (this.useSubjectCenter && subjectRect) {\n let slicedSubjectRect = intersectRects(subjectRect, initialHit.rect);\n if (slicedSubjectRect) {\n adjustedPoint = getRectCenter(slicedSubjectRect);\n }\n }\n this.coordAdjust = diffPoints(adjustedPoint, origPoint);\n }\n else {\n this.coordAdjust = { left: 0, top: 0 };\n }\n }\n handleMove(ev, forceHandle) {\n let hit = this.queryHitForOffset(ev.pageX + this.coordAdjust.left, ev.pageY + this.coordAdjust.top);\n if (forceHandle || !isHitsEqual(this.movingHit, hit)) {\n this.movingHit = hit;\n this.emitter.trigger('hitupdate', hit, false, ev);\n }\n }\n prepareHits() {\n this.offsetTrackers = mapHash(this.droppableStore, (interactionSettings) => {\n interactionSettings.component.prepareHits();\n return new OffsetTracker(interactionSettings.el);\n });\n }\n releaseHits() {\n let { offsetTrackers } = this;\n for (let id in offsetTrackers) {\n offsetTrackers[id].destroy();\n }\n this.offsetTrackers = {};\n }\n queryHitForOffset(offsetLeft, offsetTop) {\n let { droppableStore, offsetTrackers } = this;\n let bestHit = null;\n for (let id in droppableStore) {\n let component = droppableStore[id].component;\n let offsetTracker = offsetTrackers[id];\n if (offsetTracker && // wasn't destroyed mid-drag\n offsetTracker.isWithinClipping(offsetLeft, offsetTop)) {\n let originLeft = offsetTracker.computeLeft();\n let originTop = offsetTracker.computeTop();\n let positionLeft = offsetLeft - originLeft;\n let positionTop = offsetTop - originTop;\n let { origRect } = offsetTracker;\n let width = origRect.right - origRect.left;\n let height = origRect.bottom - origRect.top;\n if (\n // must be within the element's bounds\n positionLeft >= 0 && positionLeft < width &&\n positionTop >= 0 && positionTop < height) {\n let hit = component.queryHit(positionLeft, positionTop, width, height);\n if (hit && (\n // make sure the hit is within activeRange, meaning it's not a dead cell\n rangeContainsRange(hit.dateProfile.activeRange, hit.dateSpan.range)) &&\n (!bestHit || hit.layer > bestHit.layer)) {\n hit.componentId = id;\n hit.context = component.context;\n // TODO: better way to re-orient rectangle\n hit.rect.left += originLeft;\n hit.rect.right += originLeft;\n hit.rect.top += originTop;\n hit.rect.bottom += originTop;\n bestHit = hit;\n }\n }\n }\n }\n return bestHit;\n }\n}\nfunction isHitsEqual(hit0, hit1) {\n if (!hit0 && !hit1) {\n return true;\n }\n if (Boolean(hit0) !== Boolean(hit1)) {\n return false;\n }\n return isDateSpansEqual(hit0.dateSpan, hit1.dateSpan);\n}\n\nfunction buildDatePointApiWithContext(dateSpan, context) {\n let props = {};\n for (let transform of context.pluginHooks.datePointTransforms) {\n Object.assign(props, transform(dateSpan, context));\n }\n Object.assign(props, buildDatePointApi(dateSpan, context.dateEnv));\n return props;\n}\nfunction buildDatePointApi(span, dateEnv) {\n return {\n date: dateEnv.toDate(span.range.start),\n dateStr: dateEnv.formatIso(span.range.start, { omitTime: span.allDay }),\n allDay: span.allDay,\n };\n}\n\n/*\nMonitors when the user clicks on a specific date/time of a component.\nA pointerdown+pointerup on the same \"hit\" constitutes a click.\n*/\nclass DateClicking extends Interaction {\n constructor(settings) {\n super(settings);\n this.handlePointerDown = (pev) => {\n let { dragging } = this;\n let downEl = pev.origEvent.target;\n // do this in pointerdown (not dragend) because DOM might be mutated by the time dragend is fired\n dragging.setIgnoreMove(!this.component.isValidDateDownEl(downEl));\n };\n // won't even fire if moving was ignored\n this.handleDragEnd = (ev) => {\n let { component } = this;\n let { pointer } = this.dragging;\n if (!pointer.wasTouchScroll) {\n let { initialHit, finalHit } = this.hitDragging;\n if (initialHit && finalHit && isHitsEqual(initialHit, finalHit)) {\n let { context } = component;\n let arg = Object.assign(Object.assign({}, buildDatePointApiWithContext(initialHit.dateSpan, context)), { dayEl: initialHit.dayEl, jsEvent: ev.origEvent, view: context.viewApi || context.calendarApi.view });\n context.emitter.trigger('dateClick', arg);\n }\n }\n };\n // we DO want to watch pointer moves because otherwise finalHit won't get populated\n this.dragging = new FeaturefulElementDragging(settings.el);\n this.dragging.autoScroller.isEnabled = false;\n let hitDragging = this.hitDragging = new HitDragging(this.dragging, interactionSettingsToStore(settings));\n hitDragging.emitter.on('pointerdown', this.handlePointerDown);\n hitDragging.emitter.on('dragend', this.handleDragEnd);\n }\n destroy() {\n this.dragging.destroy();\n }\n}\n\n/*\nTracks when the user selects a portion of time of a component,\nconstituted by a drag over date cells, with a possible delay at the beginning of the drag.\n*/\nclass DateSelecting extends Interaction {\n constructor(settings) {\n super(settings);\n this.dragSelection = null;\n this.handlePointerDown = (ev) => {\n let { component, dragging } = this;\n let { options } = component.context;\n let canSelect = options.selectable &&\n component.isValidDateDownEl(ev.origEvent.target);\n // don't bother to watch expensive moves if component won't do selection\n dragging.setIgnoreMove(!canSelect);\n // if touch, require user to hold down\n dragging.delay = ev.isTouch ? getComponentTouchDelay$1(component) : null;\n };\n this.handleDragStart = (ev) => {\n this.component.context.calendarApi.unselect(ev); // unselect previous selections\n };\n this.handleHitUpdate = (hit, isFinal) => {\n let { context } = this.component;\n let dragSelection = null;\n let isInvalid = false;\n if (hit) {\n let initialHit = this.hitDragging.initialHit;\n let disallowed = hit.componentId === initialHit.componentId\n && this.isHitComboAllowed\n && !this.isHitComboAllowed(initialHit, hit);\n if (!disallowed) {\n dragSelection = joinHitsIntoSelection(initialHit, hit, context.pluginHooks.dateSelectionTransformers);\n }\n if (!dragSelection || !isDateSelectionValid(dragSelection, hit.dateProfile, context)) {\n isInvalid = true;\n dragSelection = null;\n }\n }\n if (dragSelection) {\n context.dispatch({ type: 'SELECT_DATES', selection: dragSelection });\n }\n else if (!isFinal) { // only unselect if moved away while dragging\n context.dispatch({ type: 'UNSELECT_DATES' });\n }\n if (!isInvalid) {\n enableCursor();\n }\n else {\n disableCursor();\n }\n if (!isFinal) {\n this.dragSelection = dragSelection; // only clear if moved away from all hits while dragging\n }\n };\n this.handlePointerUp = (pev) => {\n if (this.dragSelection) {\n // selection is already rendered, so just need to report selection\n triggerDateSelect(this.dragSelection, pev, this.component.context);\n this.dragSelection = null;\n }\n };\n let { component } = settings;\n let { options } = component.context;\n let dragging = this.dragging = new FeaturefulElementDragging(settings.el);\n dragging.touchScrollAllowed = false;\n dragging.minDistance = options.selectMinDistance || 0;\n dragging.autoScroller.isEnabled = options.dragScroll;\n let hitDragging = this.hitDragging = new HitDragging(this.dragging, interactionSettingsToStore(settings));\n hitDragging.emitter.on('pointerdown', this.handlePointerDown);\n hitDragging.emitter.on('dragstart', this.handleDragStart);\n hitDragging.emitter.on('hitupdate', this.handleHitUpdate);\n hitDragging.emitter.on('pointerup', this.handlePointerUp);\n }\n destroy() {\n this.dragging.destroy();\n }\n}\nfunction getComponentTouchDelay$1(component) {\n let { options } = component.context;\n let delay = options.selectLongPressDelay;\n if (delay == null) {\n delay = options.longPressDelay;\n }\n return delay;\n}\nfunction joinHitsIntoSelection(hit0, hit1, dateSelectionTransformers) {\n let dateSpan0 = hit0.dateSpan;\n let dateSpan1 = hit1.dateSpan;\n let ms = [\n dateSpan0.range.start,\n dateSpan0.range.end,\n dateSpan1.range.start,\n dateSpan1.range.end,\n ];\n ms.sort(compareNumbers);\n let props = {};\n for (let transformer of dateSelectionTransformers) {\n let res = transformer(hit0, hit1);\n if (res === false) {\n return null;\n }\n if (res) {\n Object.assign(props, res);\n }\n }\n props.range = { start: ms[0], end: ms[3] };\n props.allDay = dateSpan0.allDay;\n return props;\n}\n\nclass EventDragging extends Interaction {\n constructor(settings) {\n super(settings);\n // internal state\n this.subjectEl = null;\n this.subjectSeg = null; // the seg being selected/dragged\n this.isDragging = false;\n this.eventRange = null;\n this.relevantEvents = null; // the events being dragged\n this.receivingContext = null;\n this.validMutation = null;\n this.mutatedRelevantEvents = null;\n this.handlePointerDown = (ev) => {\n let origTarget = ev.origEvent.target;\n let { component, dragging } = this;\n let { mirror } = dragging;\n let { options } = component.context;\n let initialContext = component.context;\n this.subjectEl = ev.subjectEl;\n let subjectSeg = this.subjectSeg = getElSeg(ev.subjectEl);\n let eventRange = this.eventRange = subjectSeg.eventRange;\n let eventInstanceId = eventRange.instance.instanceId;\n this.relevantEvents = getRelevantEvents(initialContext.getCurrentData().eventStore, eventInstanceId);\n dragging.minDistance = ev.isTouch ? 0 : options.eventDragMinDistance;\n dragging.delay =\n // only do a touch delay if touch and this event hasn't been selected yet\n (ev.isTouch && eventInstanceId !== component.props.eventSelection) ?\n getComponentTouchDelay(component) :\n null;\n if (options.fixedMirrorParent) {\n mirror.parentNode = options.fixedMirrorParent;\n }\n else {\n mirror.parentNode = elementClosest(origTarget, '.fc');\n }\n mirror.revertDuration = options.dragRevertDuration;\n let isValid = component.isValidSegDownEl(origTarget) &&\n !elementClosest(origTarget, '.fc-event-resizer'); // NOT on a resizer\n dragging.setIgnoreMove(!isValid);\n // disable dragging for elements that are resizable (ie, selectable)\n // but are not draggable\n this.isDragging = isValid &&\n ev.subjectEl.classList.contains('fc-event-draggable');\n };\n this.handleDragStart = (ev) => {\n let initialContext = this.component.context;\n let eventRange = this.eventRange;\n let eventInstanceId = eventRange.instance.instanceId;\n if (ev.isTouch) {\n // need to select a different event?\n if (eventInstanceId !== this.component.props.eventSelection) {\n initialContext.dispatch({ type: 'SELECT_EVENT', eventInstanceId });\n }\n }\n else {\n // if now using mouse, but was previous touch interaction, clear selected event\n initialContext.dispatch({ type: 'UNSELECT_EVENT' });\n }\n if (this.isDragging) {\n initialContext.calendarApi.unselect(ev); // unselect *date* selection\n initialContext.emitter.trigger('eventDragStart', {\n el: this.subjectEl,\n event: new EventImpl(initialContext, eventRange.def, eventRange.instance),\n jsEvent: ev.origEvent,\n view: initialContext.viewApi,\n });\n }\n };\n this.handleHitUpdate = (hit, isFinal) => {\n if (!this.isDragging) {\n return;\n }\n let relevantEvents = this.relevantEvents;\n let initialHit = this.hitDragging.initialHit;\n let initialContext = this.component.context;\n // states based on new hit\n let receivingContext = null;\n let mutation = null;\n let mutatedRelevantEvents = null;\n let isInvalid = false;\n let interaction = {\n affectedEvents: relevantEvents,\n mutatedEvents: createEmptyEventStore(),\n isEvent: true,\n };\n if (hit) {\n receivingContext = hit.context;\n let receivingOptions = receivingContext.options;\n if (initialContext === receivingContext ||\n (receivingOptions.editable && receivingOptions.droppable)) {\n mutation = computeEventMutation(initialHit, hit, receivingContext.getCurrentData().pluginHooks.eventDragMutationMassagers);\n if (mutation) {\n mutatedRelevantEvents = applyMutationToEventStore(relevantEvents, receivingContext.getCurrentData().eventUiBases, mutation, receivingContext);\n interaction.mutatedEvents = mutatedRelevantEvents;\n if (!isInteractionValid(interaction, hit.dateProfile, receivingContext)) {\n isInvalid = true;\n mutation = null;\n mutatedRelevantEvents = null;\n interaction.mutatedEvents = createEmptyEventStore();\n }\n }\n }\n else {\n receivingContext = null;\n }\n }\n this.displayDrag(receivingContext, interaction);\n if (!isInvalid) {\n enableCursor();\n }\n else {\n disableCursor();\n }\n if (!isFinal) {\n if (initialContext === receivingContext && // TODO: write test for this\n isHitsEqual(initialHit, hit)) {\n mutation = null;\n }\n this.dragging.setMirrorNeedsRevert(!mutation);\n // render the mirror if no already-rendered mirror\n // TODO: wish we could somehow wait for dispatch to guarantee render\n this.dragging.setMirrorIsVisible(!hit || !getElRoot(this.subjectEl).querySelector('.fc-event-mirror'));\n // assign states based on new hit\n this.receivingContext = receivingContext;\n this.validMutation = mutation;\n this.mutatedRelevantEvents = mutatedRelevantEvents;\n }\n };\n this.handlePointerUp = () => {\n if (!this.isDragging) {\n this.cleanup(); // because handleDragEnd won't fire\n }\n };\n this.handleDragEnd = (ev) => {\n if (this.isDragging) {\n let initialContext = this.component.context;\n let initialView = initialContext.viewApi;\n let { receivingContext, validMutation } = this;\n let eventDef = this.eventRange.def;\n let eventInstance = this.eventRange.instance;\n let eventApi = new EventImpl(initialContext, eventDef, eventInstance);\n let relevantEvents = this.relevantEvents;\n let mutatedRelevantEvents = this.mutatedRelevantEvents;\n let { finalHit } = this.hitDragging;\n this.clearDrag(); // must happen after revert animation\n initialContext.emitter.trigger('eventDragStop', {\n el: this.subjectEl,\n event: eventApi,\n jsEvent: ev.origEvent,\n view: initialView,\n });\n if (validMutation) {\n // dropped within same calendar\n if (receivingContext === initialContext) {\n let updatedEventApi = new EventImpl(initialContext, mutatedRelevantEvents.defs[eventDef.defId], eventInstance ? mutatedRelevantEvents.instances[eventInstance.instanceId] : null);\n initialContext.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: mutatedRelevantEvents,\n });\n let eventChangeArg = {\n oldEvent: eventApi,\n event: updatedEventApi,\n relatedEvents: buildEventApis(mutatedRelevantEvents, initialContext, eventInstance),\n revert() {\n initialContext.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: relevantEvents, // the pre-change data\n });\n },\n };\n let transformed = {};\n for (let transformer of initialContext.getCurrentData().pluginHooks.eventDropTransformers) {\n Object.assign(transformed, transformer(validMutation, initialContext));\n }\n initialContext.emitter.trigger('eventDrop', Object.assign(Object.assign(Object.assign({}, eventChangeArg), transformed), { el: ev.subjectEl, delta: validMutation.datesDelta, jsEvent: ev.origEvent, view: initialView }));\n initialContext.emitter.trigger('eventChange', eventChangeArg);\n // dropped in different calendar\n }\n else if (receivingContext) {\n let eventRemoveArg = {\n event: eventApi,\n relatedEvents: buildEventApis(relevantEvents, initialContext, eventInstance),\n revert() {\n initialContext.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: relevantEvents,\n });\n },\n };\n initialContext.emitter.trigger('eventLeave', Object.assign(Object.assign({}, eventRemoveArg), { draggedEl: ev.subjectEl, view: initialView }));\n initialContext.dispatch({\n type: 'REMOVE_EVENTS',\n eventStore: relevantEvents,\n });\n initialContext.emitter.trigger('eventRemove', eventRemoveArg);\n let addedEventDef = mutatedRelevantEvents.defs[eventDef.defId];\n let addedEventInstance = mutatedRelevantEvents.instances[eventInstance.instanceId];\n let addedEventApi = new EventImpl(receivingContext, addedEventDef, addedEventInstance);\n receivingContext.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: mutatedRelevantEvents,\n });\n let eventAddArg = {\n event: addedEventApi,\n relatedEvents: buildEventApis(mutatedRelevantEvents, receivingContext, addedEventInstance),\n revert() {\n receivingContext.dispatch({\n type: 'REMOVE_EVENTS',\n eventStore: mutatedRelevantEvents,\n });\n },\n };\n receivingContext.emitter.trigger('eventAdd', eventAddArg);\n if (ev.isTouch) {\n receivingContext.dispatch({\n type: 'SELECT_EVENT',\n eventInstanceId: eventInstance.instanceId,\n });\n }\n receivingContext.emitter.trigger('drop', Object.assign(Object.assign({}, buildDatePointApiWithContext(finalHit.dateSpan, receivingContext)), { draggedEl: ev.subjectEl, jsEvent: ev.origEvent, view: finalHit.context.viewApi }));\n receivingContext.emitter.trigger('eventReceive', Object.assign(Object.assign({}, eventAddArg), { draggedEl: ev.subjectEl, view: finalHit.context.viewApi }));\n }\n }\n else {\n initialContext.emitter.trigger('_noEventDrop');\n }\n }\n this.cleanup();\n };\n let { component } = this;\n let { options } = component.context;\n let dragging = this.dragging = new FeaturefulElementDragging(settings.el);\n dragging.pointer.selector = EventDragging.SELECTOR;\n dragging.touchScrollAllowed = false;\n dragging.autoScroller.isEnabled = options.dragScroll;\n let hitDragging = this.hitDragging = new HitDragging(this.dragging, interactionSettingsStore);\n hitDragging.useSubjectCenter = settings.useEventCenter;\n hitDragging.emitter.on('pointerdown', this.handlePointerDown);\n hitDragging.emitter.on('dragstart', this.handleDragStart);\n hitDragging.emitter.on('hitupdate', this.handleHitUpdate);\n hitDragging.emitter.on('pointerup', this.handlePointerUp);\n hitDragging.emitter.on('dragend', this.handleDragEnd);\n }\n destroy() {\n this.dragging.destroy();\n }\n // render a drag state on the next receivingCalendar\n displayDrag(nextContext, state) {\n let initialContext = this.component.context;\n let prevContext = this.receivingContext;\n // does the previous calendar need to be cleared?\n if (prevContext && prevContext !== nextContext) {\n // does the initial calendar need to be cleared?\n // if so, don't clear all the way. we still need to to hide the affectedEvents\n if (prevContext === initialContext) {\n prevContext.dispatch({\n type: 'SET_EVENT_DRAG',\n state: {\n affectedEvents: state.affectedEvents,\n mutatedEvents: createEmptyEventStore(),\n isEvent: true,\n },\n });\n // completely clear the old calendar if it wasn't the initial\n }\n else {\n prevContext.dispatch({ type: 'UNSET_EVENT_DRAG' });\n }\n }\n if (nextContext) {\n nextContext.dispatch({ type: 'SET_EVENT_DRAG', state });\n }\n }\n clearDrag() {\n let initialCalendar = this.component.context;\n let { receivingContext } = this;\n if (receivingContext) {\n receivingContext.dispatch({ type: 'UNSET_EVENT_DRAG' });\n }\n // the initial calendar might have an dummy drag state from displayDrag\n if (initialCalendar !== receivingContext) {\n initialCalendar.dispatch({ type: 'UNSET_EVENT_DRAG' });\n }\n }\n cleanup() {\n this.subjectSeg = null;\n this.isDragging = false;\n this.eventRange = null;\n this.relevantEvents = null;\n this.receivingContext = null;\n this.validMutation = null;\n this.mutatedRelevantEvents = null;\n }\n}\n// TODO: test this in IE11\n// QUESTION: why do we need it on the resizable???\nEventDragging.SELECTOR = '.fc-event-draggable, .fc-event-resizable';\nfunction computeEventMutation(hit0, hit1, massagers) {\n let dateSpan0 = hit0.dateSpan;\n let dateSpan1 = hit1.dateSpan;\n let date0 = dateSpan0.range.start;\n let date1 = dateSpan1.range.start;\n let standardProps = {};\n if (dateSpan0.allDay !== dateSpan1.allDay) {\n standardProps.allDay = dateSpan1.allDay;\n standardProps.hasEnd = hit1.context.options.allDayMaintainDuration;\n if (dateSpan1.allDay) {\n // means date1 is already start-of-day,\n // but date0 needs to be converted\n date0 = startOfDay(date0);\n }\n }\n let delta = diffDates(date0, date1, hit0.context.dateEnv, hit0.componentId === hit1.componentId ?\n hit0.largeUnit :\n null);\n if (delta.milliseconds) { // has hours/minutes/seconds\n standardProps.allDay = false;\n }\n let mutation = {\n datesDelta: delta,\n standardProps,\n };\n for (let massager of massagers) {\n massager(mutation, hit0, hit1);\n }\n return mutation;\n}\nfunction getComponentTouchDelay(component) {\n let { options } = component.context;\n let delay = options.eventLongPressDelay;\n if (delay == null) {\n delay = options.longPressDelay;\n }\n return delay;\n}\n\nclass EventResizing extends Interaction {\n constructor(settings) {\n super(settings);\n // internal state\n this.draggingSegEl = null;\n this.draggingSeg = null; // TODO: rename to resizingSeg? subjectSeg?\n this.eventRange = null;\n this.relevantEvents = null;\n this.validMutation = null;\n this.mutatedRelevantEvents = null;\n this.handlePointerDown = (ev) => {\n let { component } = this;\n let segEl = this.querySegEl(ev);\n let seg = getElSeg(segEl);\n let eventRange = this.eventRange = seg.eventRange;\n this.dragging.minDistance = component.context.options.eventDragMinDistance;\n // if touch, need to be working with a selected event\n this.dragging.setIgnoreMove(!this.component.isValidSegDownEl(ev.origEvent.target) ||\n (ev.isTouch && this.component.props.eventSelection !== eventRange.instance.instanceId));\n };\n this.handleDragStart = (ev) => {\n let { context } = this.component;\n let eventRange = this.eventRange;\n this.relevantEvents = getRelevantEvents(context.getCurrentData().eventStore, this.eventRange.instance.instanceId);\n let segEl = this.querySegEl(ev);\n this.draggingSegEl = segEl;\n this.draggingSeg = getElSeg(segEl);\n context.calendarApi.unselect();\n context.emitter.trigger('eventResizeStart', {\n el: segEl,\n event: new EventImpl(context, eventRange.def, eventRange.instance),\n jsEvent: ev.origEvent,\n view: context.viewApi,\n });\n };\n this.handleHitUpdate = (hit, isFinal, ev) => {\n let { context } = this.component;\n let relevantEvents = this.relevantEvents;\n let initialHit = this.hitDragging.initialHit;\n let eventInstance = this.eventRange.instance;\n let mutation = null;\n let mutatedRelevantEvents = null;\n let isInvalid = false;\n let interaction = {\n affectedEvents: relevantEvents,\n mutatedEvents: createEmptyEventStore(),\n isEvent: true,\n };\n if (hit) {\n let disallowed = hit.componentId === initialHit.componentId\n && this.isHitComboAllowed\n && !this.isHitComboAllowed(initialHit, hit);\n if (!disallowed) {\n mutation = computeMutation(initialHit, hit, ev.subjectEl.classList.contains('fc-event-resizer-start'), eventInstance.range);\n }\n }\n if (mutation) {\n mutatedRelevantEvents = applyMutationToEventStore(relevantEvents, context.getCurrentData().eventUiBases, mutation, context);\n interaction.mutatedEvents = mutatedRelevantEvents;\n if (!isInteractionValid(interaction, hit.dateProfile, context)) {\n isInvalid = true;\n mutation = null;\n mutatedRelevantEvents = null;\n interaction.mutatedEvents = null;\n }\n }\n if (mutatedRelevantEvents) {\n context.dispatch({\n type: 'SET_EVENT_RESIZE',\n state: interaction,\n });\n }\n else {\n context.dispatch({ type: 'UNSET_EVENT_RESIZE' });\n }\n if (!isInvalid) {\n enableCursor();\n }\n else {\n disableCursor();\n }\n if (!isFinal) {\n if (mutation && isHitsEqual(initialHit, hit)) {\n mutation = null;\n }\n this.validMutation = mutation;\n this.mutatedRelevantEvents = mutatedRelevantEvents;\n }\n };\n this.handleDragEnd = (ev) => {\n let { context } = this.component;\n let eventDef = this.eventRange.def;\n let eventInstance = this.eventRange.instance;\n let eventApi = new EventImpl(context, eventDef, eventInstance);\n let relevantEvents = this.relevantEvents;\n let mutatedRelevantEvents = this.mutatedRelevantEvents;\n context.emitter.trigger('eventResizeStop', {\n el: this.draggingSegEl,\n event: eventApi,\n jsEvent: ev.origEvent,\n view: context.viewApi,\n });\n if (this.validMutation) {\n let updatedEventApi = new EventImpl(context, mutatedRelevantEvents.defs[eventDef.defId], eventInstance ? mutatedRelevantEvents.instances[eventInstance.instanceId] : null);\n context.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: mutatedRelevantEvents,\n });\n let eventChangeArg = {\n oldEvent: eventApi,\n event: updatedEventApi,\n relatedEvents: buildEventApis(mutatedRelevantEvents, context, eventInstance),\n revert() {\n context.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: relevantEvents, // the pre-change events\n });\n },\n };\n context.emitter.trigger('eventResize', Object.assign(Object.assign({}, eventChangeArg), { el: this.draggingSegEl, startDelta: this.validMutation.startDelta || createDuration(0), endDelta: this.validMutation.endDelta || createDuration(0), jsEvent: ev.origEvent, view: context.viewApi }));\n context.emitter.trigger('eventChange', eventChangeArg);\n }\n else {\n context.emitter.trigger('_noEventResize');\n }\n // reset all internal state\n this.draggingSeg = null;\n this.relevantEvents = null;\n this.validMutation = null;\n // okay to keep eventInstance around. useful to set it in handlePointerDown\n };\n let { component } = settings;\n let dragging = this.dragging = new FeaturefulElementDragging(settings.el);\n dragging.pointer.selector = '.fc-event-resizer';\n dragging.touchScrollAllowed = false;\n dragging.autoScroller.isEnabled = component.context.options.dragScroll;\n let hitDragging = this.hitDragging = new HitDragging(this.dragging, interactionSettingsToStore(settings));\n hitDragging.emitter.on('pointerdown', this.handlePointerDown);\n hitDragging.emitter.on('dragstart', this.handleDragStart);\n hitDragging.emitter.on('hitupdate', this.handleHitUpdate);\n hitDragging.emitter.on('dragend', this.handleDragEnd);\n }\n destroy() {\n this.dragging.destroy();\n }\n querySegEl(ev) {\n return elementClosest(ev.subjectEl, '.fc-event');\n }\n}\nfunction computeMutation(hit0, hit1, isFromStart, instanceRange) {\n let dateEnv = hit0.context.dateEnv;\n let date0 = hit0.dateSpan.range.start;\n let date1 = hit1.dateSpan.range.start;\n let delta = diffDates(date0, date1, dateEnv, hit0.largeUnit);\n if (isFromStart) {\n if (dateEnv.add(instanceRange.start, delta) < instanceRange.end) {\n return { startDelta: delta };\n }\n }\n else if (dateEnv.add(instanceRange.end, delta) > instanceRange.start) {\n return { endDelta: delta };\n }\n return null;\n}\n\nclass UnselectAuto {\n constructor(context) {\n this.context = context;\n this.isRecentPointerDateSelect = false; // wish we could use a selector to detect date selection, but uses hit system\n this.matchesCancel = false;\n this.matchesEvent = false;\n this.onSelect = (selectInfo) => {\n if (selectInfo.jsEvent) {\n this.isRecentPointerDateSelect = true;\n }\n };\n this.onDocumentPointerDown = (pev) => {\n let unselectCancel = this.context.options.unselectCancel;\n let downEl = getEventTargetViaRoot(pev.origEvent);\n this.matchesCancel = !!elementClosest(downEl, unselectCancel);\n this.matchesEvent = !!elementClosest(downEl, EventDragging.SELECTOR); // interaction started on an event?\n };\n this.onDocumentPointerUp = (pev) => {\n let { context } = this;\n let { documentPointer } = this;\n let calendarState = context.getCurrentData();\n // touch-scrolling should never unfocus any type of selection\n if (!documentPointer.wasTouchScroll) {\n if (calendarState.dateSelection && // an existing date selection?\n !this.isRecentPointerDateSelect // a new pointer-initiated date selection since last onDocumentPointerUp?\n ) {\n let unselectAuto = context.options.unselectAuto;\n if (unselectAuto && (!unselectAuto || !this.matchesCancel)) {\n context.calendarApi.unselect(pev);\n }\n }\n if (calendarState.eventSelection && // an existing event selected?\n !this.matchesEvent // interaction DIDN'T start on an event\n ) {\n context.dispatch({ type: 'UNSELECT_EVENT' });\n }\n }\n this.isRecentPointerDateSelect = false;\n };\n let documentPointer = this.documentPointer = new PointerDragging(document);\n documentPointer.shouldIgnoreMove = true;\n documentPointer.shouldWatchScroll = false;\n documentPointer.emitter.on('pointerdown', this.onDocumentPointerDown);\n documentPointer.emitter.on('pointerup', this.onDocumentPointerUp);\n /*\n TODO: better way to know about whether there was a selection with the pointer\n */\n context.emitter.on('select', this.onSelect);\n }\n destroy() {\n this.context.emitter.off('select', this.onSelect);\n this.documentPointer.destroy();\n }\n}\n\nconst OPTION_REFINERS = {\n fixedMirrorParent: identity,\n};\nconst LISTENER_REFINERS = {\n dateClick: identity,\n eventDragStart: identity,\n eventDragStop: identity,\n eventDrop: identity,\n eventResizeStart: identity,\n eventResizeStop: identity,\n eventResize: identity,\n drop: identity,\n eventReceive: identity,\n eventLeave: identity,\n};\n\n/*\nGiven an already instantiated draggable object for one-or-more elements,\nInterprets any dragging as an attempt to drag an events that lives outside\nof a calendar onto a calendar.\n*/\nclass ExternalElementDragging {\n constructor(dragging, suppliedDragMeta) {\n this.receivingContext = null;\n this.droppableEvent = null; // will exist for all drags, even if create:false\n this.suppliedDragMeta = null;\n this.dragMeta = null;\n this.handleDragStart = (ev) => {\n this.dragMeta = this.buildDragMeta(ev.subjectEl);\n };\n this.handleHitUpdate = (hit, isFinal, ev) => {\n let { dragging } = this.hitDragging;\n let receivingContext = null;\n let droppableEvent = null;\n let isInvalid = false;\n let interaction = {\n affectedEvents: createEmptyEventStore(),\n mutatedEvents: createEmptyEventStore(),\n isEvent: this.dragMeta.create,\n };\n if (hit) {\n receivingContext = hit.context;\n if (this.canDropElOnCalendar(ev.subjectEl, receivingContext)) {\n droppableEvent = computeEventForDateSpan(hit.dateSpan, this.dragMeta, receivingContext);\n interaction.mutatedEvents = eventTupleToStore(droppableEvent);\n isInvalid = !isInteractionValid(interaction, hit.dateProfile, receivingContext);\n if (isInvalid) {\n interaction.mutatedEvents = createEmptyEventStore();\n droppableEvent = null;\n }\n }\n }\n this.displayDrag(receivingContext, interaction);\n // show mirror if no already-rendered mirror element OR if we are shutting down the mirror (?)\n // TODO: wish we could somehow wait for dispatch to guarantee render\n dragging.setMirrorIsVisible(isFinal || !droppableEvent || !document.querySelector('.fc-event-mirror'));\n if (!isInvalid) {\n enableCursor();\n }\n else {\n disableCursor();\n }\n if (!isFinal) {\n dragging.setMirrorNeedsRevert(!droppableEvent);\n this.receivingContext = receivingContext;\n this.droppableEvent = droppableEvent;\n }\n };\n this.handleDragEnd = (pev) => {\n let { receivingContext, droppableEvent } = this;\n this.clearDrag();\n if (receivingContext && droppableEvent) {\n let finalHit = this.hitDragging.finalHit;\n let finalView = finalHit.context.viewApi;\n let dragMeta = this.dragMeta;\n receivingContext.emitter.trigger('drop', Object.assign(Object.assign({}, buildDatePointApiWithContext(finalHit.dateSpan, receivingContext)), { draggedEl: pev.subjectEl, jsEvent: pev.origEvent, view: finalView }));\n if (dragMeta.create) {\n let addingEvents = eventTupleToStore(droppableEvent);\n receivingContext.dispatch({\n type: 'MERGE_EVENTS',\n eventStore: addingEvents,\n });\n if (pev.isTouch) {\n receivingContext.dispatch({\n type: 'SELECT_EVENT',\n eventInstanceId: droppableEvent.instance.instanceId,\n });\n }\n // signal that an external event landed\n receivingContext.emitter.trigger('eventReceive', {\n event: new EventImpl(receivingContext, droppableEvent.def, droppableEvent.instance),\n relatedEvents: [],\n revert() {\n receivingContext.dispatch({\n type: 'REMOVE_EVENTS',\n eventStore: addingEvents,\n });\n },\n draggedEl: pev.subjectEl,\n view: finalView,\n });\n }\n }\n this.receivingContext = null;\n this.droppableEvent = null;\n };\n let hitDragging = this.hitDragging = new HitDragging(dragging, interactionSettingsStore);\n hitDragging.requireInitial = false; // will start outside of a component\n hitDragging.emitter.on('dragstart', this.handleDragStart);\n hitDragging.emitter.on('hitupdate', this.handleHitUpdate);\n hitDragging.emitter.on('dragend', this.handleDragEnd);\n this.suppliedDragMeta = suppliedDragMeta;\n }\n buildDragMeta(subjectEl) {\n if (typeof this.suppliedDragMeta === 'object') {\n return parseDragMeta(this.suppliedDragMeta);\n }\n if (typeof this.suppliedDragMeta === 'function') {\n return parseDragMeta(this.suppliedDragMeta(subjectEl));\n }\n return getDragMetaFromEl(subjectEl);\n }\n displayDrag(nextContext, state) {\n let prevContext = this.receivingContext;\n if (prevContext && prevContext !== nextContext) {\n prevContext.dispatch({ type: 'UNSET_EVENT_DRAG' });\n }\n if (nextContext) {\n nextContext.dispatch({ type: 'SET_EVENT_DRAG', state });\n }\n }\n clearDrag() {\n if (this.receivingContext) {\n this.receivingContext.dispatch({ type: 'UNSET_EVENT_DRAG' });\n }\n }\n canDropElOnCalendar(el, receivingContext) {\n let dropAccept = receivingContext.options.dropAccept;\n if (typeof dropAccept === 'function') {\n return dropAccept.call(receivingContext.calendarApi, el);\n }\n if (typeof dropAccept === 'string' && dropAccept) {\n return Boolean(elementMatches(el, dropAccept));\n }\n return true;\n }\n}\n// Utils for computing event store from the DragMeta\n// ----------------------------------------------------------------------------------------------------\nfunction computeEventForDateSpan(dateSpan, dragMeta, context) {\n let defProps = Object.assign({}, dragMeta.leftoverProps);\n for (let transform of context.pluginHooks.externalDefTransforms) {\n Object.assign(defProps, transform(dateSpan, dragMeta));\n }\n let { refined, extra } = refineEventDef(defProps, context);\n let def = parseEventDef(refined, extra, dragMeta.sourceId, dateSpan.allDay, context.options.forceEventDuration || Boolean(dragMeta.duration), // hasEnd\n context);\n let start = dateSpan.range.start;\n // only rely on time info if drop zone is all-day,\n // otherwise, we already know the time\n if (dateSpan.allDay && dragMeta.startTime) {\n start = context.dateEnv.add(start, dragMeta.startTime);\n }\n let end = dragMeta.duration ?\n context.dateEnv.add(start, dragMeta.duration) :\n getDefaultEventEnd(dateSpan.allDay, start, context);\n let instance = createEventInstance(def.defId, { start, end });\n return { def, instance };\n}\n// Utils for extracting data from element\n// ----------------------------------------------------------------------------------------------------\nfunction getDragMetaFromEl(el) {\n let str = getEmbeddedElData(el, 'event');\n let obj = str ?\n JSON.parse(str) :\n { create: false }; // if no embedded data, assume no event creation\n return parseDragMeta(obj);\n}\nconfig.dataAttrPrefix = '';\nfunction getEmbeddedElData(el, name) {\n let prefix = config.dataAttrPrefix;\n let prefixedName = (prefix ? prefix + '-' : '') + name;\n return el.getAttribute('data-' + prefixedName) || '';\n}\n\n/*\nMakes an element (that is *external* to any calendar) draggable.\nCan pass in data that determines how an event will be created when dropped onto a calendar.\nLeverages FullCalendar's internal drag-n-drop functionality WITHOUT a third-party drag system.\n*/\nclass ExternalDraggable {\n constructor(el, settings = {}) {\n this.handlePointerDown = (ev) => {\n let { dragging } = this;\n let { minDistance, longPressDelay } = this.settings;\n dragging.minDistance =\n minDistance != null ?\n minDistance :\n (ev.isTouch ? 0 : BASE_OPTION_DEFAULTS.eventDragMinDistance);\n dragging.delay =\n ev.isTouch ? // TODO: eventually read eventLongPressDelay instead vvv\n (longPressDelay != null ? longPressDelay : BASE_OPTION_DEFAULTS.longPressDelay) :\n 0;\n };\n this.handleDragStart = (ev) => {\n if (ev.isTouch &&\n this.dragging.delay &&\n ev.subjectEl.classList.contains('fc-event')) {\n this.dragging.mirror.getMirrorEl().classList.add('fc-event-selected');\n }\n };\n this.settings = settings;\n let dragging = this.dragging = new FeaturefulElementDragging(el);\n dragging.touchScrollAllowed = false;\n if (settings.itemSelector != null) {\n dragging.pointer.selector = settings.itemSelector;\n }\n if (settings.appendTo != null) {\n dragging.mirror.parentNode = settings.appendTo; // TODO: write tests\n }\n dragging.emitter.on('pointerdown', this.handlePointerDown);\n dragging.emitter.on('dragstart', this.handleDragStart);\n new ExternalElementDragging(dragging, settings.eventData); // eslint-disable-line no-new\n }\n destroy() {\n this.dragging.destroy();\n }\n}\n\n/*\nDetects when a *THIRD-PARTY* drag-n-drop system interacts with elements.\nThe third-party system is responsible for drawing the visuals effects of the drag.\nThis class simply monitors for pointer movements and fires events.\nIt also has the ability to hide the moving element (the \"mirror\") during the drag.\n*/\nclass InferredElementDragging extends ElementDragging {\n constructor(containerEl) {\n super(containerEl);\n this.shouldIgnoreMove = false;\n this.mirrorSelector = '';\n this.currentMirrorEl = null;\n this.handlePointerDown = (ev) => {\n this.emitter.trigger('pointerdown', ev);\n if (!this.shouldIgnoreMove) {\n // fire dragstart right away. does not support delay or min-distance\n this.emitter.trigger('dragstart', ev);\n }\n };\n this.handlePointerMove = (ev) => {\n if (!this.shouldIgnoreMove) {\n this.emitter.trigger('dragmove', ev);\n }\n };\n this.handlePointerUp = (ev) => {\n this.emitter.trigger('pointerup', ev);\n if (!this.shouldIgnoreMove) {\n // fire dragend right away. does not support a revert animation\n this.emitter.trigger('dragend', ev);\n }\n };\n let pointer = this.pointer = new PointerDragging(containerEl);\n pointer.emitter.on('pointerdown', this.handlePointerDown);\n pointer.emitter.on('pointermove', this.handlePointerMove);\n pointer.emitter.on('pointerup', this.handlePointerUp);\n }\n destroy() {\n this.pointer.destroy();\n }\n setIgnoreMove(bool) {\n this.shouldIgnoreMove = bool;\n }\n setMirrorIsVisible(bool) {\n if (bool) {\n // restore a previously hidden element.\n // use the reference in case the selector class has already been removed.\n if (this.currentMirrorEl) {\n this.currentMirrorEl.style.visibility = '';\n this.currentMirrorEl = null;\n }\n }\n else {\n let mirrorEl = this.mirrorSelector\n // TODO: somehow query FullCalendars WITHIN shadow-roots\n ? document.querySelector(this.mirrorSelector)\n : null;\n if (mirrorEl) {\n this.currentMirrorEl = mirrorEl;\n mirrorEl.style.visibility = 'hidden';\n }\n }\n }\n}\n\n/*\nBridges third-party drag-n-drop systems with FullCalendar.\nMust be instantiated and destroyed by caller.\n*/\nclass ThirdPartyDraggable {\n constructor(containerOrSettings, settings) {\n let containerEl = document;\n if (\n // wish we could just test instanceof EventTarget, but doesn't work in IE11\n containerOrSettings === document ||\n containerOrSettings instanceof Element) {\n containerEl = containerOrSettings;\n settings = settings || {};\n }\n else {\n settings = (containerOrSettings || {});\n }\n let dragging = this.dragging = new InferredElementDragging(containerEl);\n if (typeof settings.itemSelector === 'string') {\n dragging.pointer.selector = settings.itemSelector;\n }\n else if (containerEl === document) {\n dragging.pointer.selector = '[data-event]';\n }\n if (typeof settings.mirrorSelector === 'string') {\n dragging.mirrorSelector = settings.mirrorSelector;\n }\n new ExternalElementDragging(dragging, settings.eventData); // eslint-disable-line no-new\n }\n destroy() {\n this.dragging.destroy();\n }\n}\n\nvar index = createPlugin({\n name: '@fullcalendar/interaction',\n componentInteractions: [DateClicking, DateSelecting, EventDragging, EventResizing],\n calendarInteractions: [UnselectAuto],\n elementDraggingImpl: FeaturefulElementDragging,\n optionRefiners: OPTION_REFINERS,\n listenerRefiners: LISTENER_REFINERS,\n});\n\nexport { ExternalDraggable as Draggable, ThirdPartyDraggable, index as default };\n","import { createFormatter, BaseComponent, StandardEvent, buildSegTimeText, EventContainer, getSegAnchorAttrs, memoize, MoreLinkContainer, getSegMeta, DateComponent, getUniqueDomId, setRef, DayCellContainer, WeekNumberContainer, buildNavLinkAttrs, hasCustomDayCellContent, intersectRanges, addDays, SegHierarchy, buildEntryKey, intersectSpans, RefMap, sortEventSegs, isPropsEqual, buildEventRangeKey, BgEvent, renderFill, PositionCache, NowTimer, Slicer, getStickyHeaderDates, ViewContainer, SimpleScrollGrid, getStickyFooterScrollbar, renderScrollShim, DayHeader, DaySeriesModel, DayTableModel } from '@fullcalendar/core/internal.js';\nimport { createElement, Fragment, createRef } from '@fullcalendar/core/preact.js';\n\nfunction splitSegsByRow(segs, rowCnt) {\n let byRow = [];\n for (let i = 0; i < rowCnt; i += 1) {\n byRow[i] = [];\n }\n for (let seg of segs) {\n byRow[seg.row].push(seg);\n }\n return byRow;\n}\nfunction splitSegsByFirstCol(segs, colCnt) {\n let byCol = [];\n for (let i = 0; i < colCnt; i += 1) {\n byCol[i] = [];\n }\n for (let seg of segs) {\n byCol[seg.firstCol].push(seg);\n }\n return byCol;\n}\nfunction splitInteractionByRow(ui, rowCnt) {\n let byRow = [];\n if (!ui) {\n for (let i = 0; i < rowCnt; i += 1) {\n byRow[i] = null;\n }\n }\n else {\n for (let i = 0; i < rowCnt; i += 1) {\n byRow[i] = {\n affectedInstances: ui.affectedInstances,\n isEvent: ui.isEvent,\n segs: [],\n };\n }\n for (let seg of ui.segs) {\n byRow[seg.row].segs.push(seg);\n }\n }\n return byRow;\n}\n\nconst DEFAULT_TABLE_EVENT_TIME_FORMAT = createFormatter({\n hour: 'numeric',\n minute: '2-digit',\n omitZeroMinute: true,\n meridiem: 'narrow',\n});\nfunction hasListItemDisplay(seg) {\n let { display } = seg.eventRange.ui;\n return display === 'list-item' || (display === 'auto' &&\n !seg.eventRange.def.allDay &&\n seg.firstCol === seg.lastCol && // can't be multi-day\n seg.isStart && // \"\n seg.isEnd // \"\n );\n}\n\nclass TableBlockEvent extends BaseComponent {\n render() {\n let { props } = this;\n return (createElement(StandardEvent, Object.assign({}, props, { elClasses: ['fc-daygrid-event', 'fc-daygrid-block-event', 'fc-h-event'], defaultTimeFormat: DEFAULT_TABLE_EVENT_TIME_FORMAT, defaultDisplayEventEnd: props.defaultDisplayEventEnd, disableResizing: !props.seg.eventRange.def.allDay })));\n }\n}\n\nclass TableListItemEvent extends BaseComponent {\n render() {\n let { props, context } = this;\n let { options } = context;\n let { seg } = props;\n let timeFormat = options.eventTimeFormat || DEFAULT_TABLE_EVENT_TIME_FORMAT;\n let timeText = buildSegTimeText(seg, timeFormat, context, true, props.defaultDisplayEventEnd);\n return (createElement(EventContainer, Object.assign({}, props, { elTag: \"a\", elClasses: ['fc-daygrid-event', 'fc-daygrid-dot-event'], elAttrs: getSegAnchorAttrs(props.seg, context), defaultGenerator: renderInnerContent, timeText: timeText, isResizing: false, isDateSelecting: false })));\n }\n}\nfunction renderInnerContent(renderProps) {\n return (createElement(Fragment, null,\n createElement(\"div\", { className: \"fc-daygrid-event-dot\", style: { borderColor: renderProps.borderColor || renderProps.backgroundColor } }),\n renderProps.timeText && (createElement(\"div\", { className: \"fc-event-time\" }, renderProps.timeText)),\n createElement(\"div\", { className: \"fc-event-title\" }, renderProps.event.title || createElement(Fragment, null, \"\\u00A0\"))));\n}\n\nclass TableCellMoreLink extends BaseComponent {\n constructor() {\n super(...arguments);\n this.compileSegs = memoize(compileSegs);\n }\n render() {\n let { props } = this;\n let { allSegs, invisibleSegs } = this.compileSegs(props.singlePlacements);\n return (createElement(MoreLinkContainer, { elClasses: ['fc-daygrid-more-link'], dateProfile: props.dateProfile, todayRange: props.todayRange, allDayDate: props.allDayDate, moreCnt: props.moreCnt, allSegs: allSegs, hiddenSegs: invisibleSegs, alignmentElRef: props.alignmentElRef, alignGridTop: props.alignGridTop, extraDateSpan: props.extraDateSpan, popoverContent: () => {\n let isForcedInvisible = (props.eventDrag ? props.eventDrag.affectedInstances : null) ||\n (props.eventResize ? props.eventResize.affectedInstances : null) ||\n {};\n return (createElement(Fragment, null, allSegs.map((seg) => {\n let instanceId = seg.eventRange.instance.instanceId;\n return (createElement(\"div\", { className: \"fc-daygrid-event-harness\", key: instanceId, style: {\n visibility: isForcedInvisible[instanceId] ? 'hidden' : '',\n } }, hasListItemDisplay(seg) ? (createElement(TableListItemEvent, Object.assign({ seg: seg, isDragging: false, isSelected: instanceId === props.eventSelection, defaultDisplayEventEnd: false }, getSegMeta(seg, props.todayRange)))) : (createElement(TableBlockEvent, Object.assign({ seg: seg, isDragging: false, isResizing: false, isDateSelecting: false, isSelected: instanceId === props.eventSelection, defaultDisplayEventEnd: false }, getSegMeta(seg, props.todayRange))))));\n })));\n } }));\n }\n}\nfunction compileSegs(singlePlacements) {\n let allSegs = [];\n let invisibleSegs = [];\n for (let placement of singlePlacements) {\n allSegs.push(placement.seg);\n if (!placement.isVisible) {\n invisibleSegs.push(placement.seg);\n }\n }\n return { allSegs, invisibleSegs };\n}\n\nconst DEFAULT_WEEK_NUM_FORMAT = createFormatter({ week: 'narrow' });\nclass TableCell extends DateComponent {\n constructor() {\n super(...arguments);\n this.rootElRef = createRef();\n this.state = {\n dayNumberId: getUniqueDomId(),\n };\n this.handleRootEl = (el) => {\n setRef(this.rootElRef, el);\n setRef(this.props.elRef, el);\n };\n }\n render() {\n let { context, props, state, rootElRef } = this;\n let { options } = context;\n let { date, dateProfile } = props;\n return (createElement(DayCellContainer, { elTag: \"td\", elRef: this.handleRootEl, elClasses: [\n 'fc-daygrid-day',\n ...(props.extraClassNames || []),\n ], elAttrs: Object.assign(Object.assign(Object.assign({}, props.extraDataAttrs), (props.showDayNumber ? { 'aria-labelledby': state.dayNumberId } : {})), { role: 'gridcell' }), defaultGenerator: renderTopInner, date: date, dateProfile: dateProfile, todayRange: props.todayRange, showDayNumber: props.showDayNumber, extraRenderProps: props.extraRenderProps }, (InnerContent, renderProps) => (createElement(\"div\", { className: \"fc-daygrid-day-frame fc-scrollgrid-sync-inner\", ref: props.innerElRef },\n props.showWeekNumber && (createElement(WeekNumberContainer, { elTag: \"a\", elClasses: ['fc-daygrid-week-number'], elAttrs: buildNavLinkAttrs(context, date, 'week'), date: date, defaultFormat: DEFAULT_WEEK_NUM_FORMAT })),\n Boolean(!renderProps.isDisabled &&\n (props.showDayNumber || hasCustomDayCellContent(options) || props.forceDayTop)) && (createElement(\"div\", { className: \"fc-daygrid-day-top\" },\n createElement(InnerContent, { elTag: \"a\", elClasses: ['fc-daygrid-day-number'], elAttrs: Object.assign(Object.assign({}, buildNavLinkAttrs(context, date)), { id: state.dayNumberId }) }))),\n createElement(\"div\", { className: \"fc-daygrid-day-events\", ref: props.fgContentElRef },\n props.fgContent,\n createElement(\"div\", { className: \"fc-daygrid-day-bottom\", style: { marginTop: props.moreMarginTop } },\n createElement(TableCellMoreLink, { allDayDate: date, singlePlacements: props.singlePlacements, moreCnt: props.moreCnt, alignmentElRef: rootElRef, alignGridTop: !props.showDayNumber, extraDateSpan: props.extraDateSpan, dateProfile: props.dateProfile, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, todayRange: props.todayRange }))),\n createElement(\"div\", { className: \"fc-daygrid-day-bg\" }, props.bgContent)))));\n }\n}\nfunction renderTopInner(props) {\n return props.dayNumberText || createElement(Fragment, null, \"\\u00A0\");\n}\n\nfunction computeFgSegPlacement(segs, // assumed already sorted\ndayMaxEvents, dayMaxEventRows, strictOrder, eventInstanceHeights, maxContentHeight, cells) {\n let hierarchy = new DayGridSegHierarchy();\n hierarchy.allowReslicing = true;\n hierarchy.strictOrder = strictOrder;\n if (dayMaxEvents === true || dayMaxEventRows === true) {\n hierarchy.maxCoord = maxContentHeight;\n hierarchy.hiddenConsumes = true;\n }\n else if (typeof dayMaxEvents === 'number') {\n hierarchy.maxStackCnt = dayMaxEvents;\n }\n else if (typeof dayMaxEventRows === 'number') {\n hierarchy.maxStackCnt = dayMaxEventRows;\n hierarchy.hiddenConsumes = true;\n }\n // create segInputs only for segs with known heights\n let segInputs = [];\n let unknownHeightSegs = [];\n for (let i = 0; i < segs.length; i += 1) {\n let seg = segs[i];\n let { instanceId } = seg.eventRange.instance;\n let eventHeight = eventInstanceHeights[instanceId];\n if (eventHeight != null) {\n segInputs.push({\n index: i,\n thickness: eventHeight,\n span: {\n start: seg.firstCol,\n end: seg.lastCol + 1,\n },\n });\n }\n else {\n unknownHeightSegs.push(seg);\n }\n }\n let hiddenEntries = hierarchy.addSegs(segInputs);\n let segRects = hierarchy.toRects();\n let { singleColPlacements, multiColPlacements, leftoverMargins } = placeRects(segRects, segs, cells);\n let moreCnts = [];\n let moreMarginTops = [];\n // add segs with unknown heights\n for (let seg of unknownHeightSegs) {\n multiColPlacements[seg.firstCol].push({\n seg,\n isVisible: false,\n isAbsolute: true,\n absoluteTop: 0,\n marginTop: 0,\n });\n for (let col = seg.firstCol; col <= seg.lastCol; col += 1) {\n singleColPlacements[col].push({\n seg: resliceSeg(seg, col, col + 1, cells),\n isVisible: false,\n isAbsolute: false,\n absoluteTop: 0,\n marginTop: 0,\n });\n }\n }\n // add the hidden entries\n for (let col = 0; col < cells.length; col += 1) {\n moreCnts.push(0);\n }\n for (let hiddenEntry of hiddenEntries) {\n let seg = segs[hiddenEntry.index];\n let hiddenSpan = hiddenEntry.span;\n multiColPlacements[hiddenSpan.start].push({\n seg: resliceSeg(seg, hiddenSpan.start, hiddenSpan.end, cells),\n isVisible: false,\n isAbsolute: true,\n absoluteTop: 0,\n marginTop: 0,\n });\n for (let col = hiddenSpan.start; col < hiddenSpan.end; col += 1) {\n moreCnts[col] += 1;\n singleColPlacements[col].push({\n seg: resliceSeg(seg, col, col + 1, cells),\n isVisible: false,\n isAbsolute: false,\n absoluteTop: 0,\n marginTop: 0,\n });\n }\n }\n // deal with leftover margins\n for (let col = 0; col < cells.length; col += 1) {\n moreMarginTops.push(leftoverMargins[col]);\n }\n return { singleColPlacements, multiColPlacements, moreCnts, moreMarginTops };\n}\n// rects ordered by top coord, then left\nfunction placeRects(allRects, segs, cells) {\n let rectsByEachCol = groupRectsByEachCol(allRects, cells.length);\n let singleColPlacements = [];\n let multiColPlacements = [];\n let leftoverMargins = [];\n for (let col = 0; col < cells.length; col += 1) {\n let rects = rectsByEachCol[col];\n // compute all static segs in singlePlacements\n let singlePlacements = [];\n let currentHeight = 0;\n let currentMarginTop = 0;\n for (let rect of rects) {\n let seg = segs[rect.index];\n singlePlacements.push({\n seg: resliceSeg(seg, col, col + 1, cells),\n isVisible: true,\n isAbsolute: false,\n absoluteTop: rect.levelCoord,\n marginTop: rect.levelCoord - currentHeight,\n });\n currentHeight = rect.levelCoord + rect.thickness;\n }\n // compute mixed static/absolute segs in multiPlacements\n let multiPlacements = [];\n currentHeight = 0;\n currentMarginTop = 0;\n for (let rect of rects) {\n let seg = segs[rect.index];\n let isAbsolute = rect.span.end - rect.span.start > 1; // multi-column?\n let isFirstCol = rect.span.start === col;\n currentMarginTop += rect.levelCoord - currentHeight; // amount of space since bottom of previous seg\n currentHeight = rect.levelCoord + rect.thickness; // height will now be bottom of current seg\n if (isAbsolute) {\n currentMarginTop += rect.thickness;\n if (isFirstCol) {\n multiPlacements.push({\n seg: resliceSeg(seg, rect.span.start, rect.span.end, cells),\n isVisible: true,\n isAbsolute: true,\n absoluteTop: rect.levelCoord,\n marginTop: 0,\n });\n }\n }\n else if (isFirstCol) {\n multiPlacements.push({\n seg: resliceSeg(seg, rect.span.start, rect.span.end, cells),\n isVisible: true,\n isAbsolute: false,\n absoluteTop: rect.levelCoord,\n marginTop: currentMarginTop, // claim the margin\n });\n currentMarginTop = 0;\n }\n }\n singleColPlacements.push(singlePlacements);\n multiColPlacements.push(multiPlacements);\n leftoverMargins.push(currentMarginTop);\n }\n return { singleColPlacements, multiColPlacements, leftoverMargins };\n}\nfunction groupRectsByEachCol(rects, colCnt) {\n let rectsByEachCol = [];\n for (let col = 0; col < colCnt; col += 1) {\n rectsByEachCol.push([]);\n }\n for (let rect of rects) {\n for (let col = rect.span.start; col < rect.span.end; col += 1) {\n rectsByEachCol[col].push(rect);\n }\n }\n return rectsByEachCol;\n}\nfunction resliceSeg(seg, spanStart, spanEnd, cells) {\n if (seg.firstCol === spanStart && seg.lastCol === spanEnd - 1) {\n return seg;\n }\n let eventRange = seg.eventRange;\n let origRange = eventRange.range;\n let slicedRange = intersectRanges(origRange, {\n start: cells[spanStart].date,\n end: addDays(cells[spanEnd - 1].date, 1),\n });\n return Object.assign(Object.assign({}, seg), { firstCol: spanStart, lastCol: spanEnd - 1, eventRange: {\n def: eventRange.def,\n ui: Object.assign(Object.assign({}, eventRange.ui), { durationEditable: false }),\n instance: eventRange.instance,\n range: slicedRange,\n }, isStart: seg.isStart && slicedRange.start.valueOf() === origRange.start.valueOf(), isEnd: seg.isEnd && slicedRange.end.valueOf() === origRange.end.valueOf() });\n}\nclass DayGridSegHierarchy extends SegHierarchy {\n constructor() {\n super(...arguments);\n // config\n this.hiddenConsumes = false;\n // allows us to keep hidden entries in the hierarchy so they take up space\n this.forceHidden = {};\n }\n addSegs(segInputs) {\n const hiddenSegs = super.addSegs(segInputs);\n const { entriesByLevel } = this;\n const excludeHidden = (entry) => !this.forceHidden[buildEntryKey(entry)];\n // remove the forced-hidden segs\n for (let level = 0; level < entriesByLevel.length; level += 1) {\n entriesByLevel[level] = entriesByLevel[level].filter(excludeHidden);\n }\n return hiddenSegs;\n }\n handleInvalidInsertion(insertion, entry, hiddenEntries) {\n const { entriesByLevel, forceHidden } = this;\n const { touchingEntry, touchingLevel, touchingLateral } = insertion;\n if (this.hiddenConsumes && touchingEntry) {\n const touchingEntryId = buildEntryKey(touchingEntry);\n // if not already hidden\n if (!forceHidden[touchingEntryId]) {\n if (this.allowReslicing) {\n const placeholderEntry = Object.assign(Object.assign({}, touchingEntry), { span: intersectSpans(touchingEntry.span, entry.span) });\n const placeholderEntryId = buildEntryKey(placeholderEntry);\n forceHidden[placeholderEntryId] = true;\n entriesByLevel[touchingLevel][touchingLateral] = placeholderEntry; // replace touchingEntry with our placeholder\n this.splitEntry(touchingEntry, entry, hiddenEntries); // split up the touchingEntry, reinsert it\n }\n else {\n forceHidden[touchingEntryId] = true;\n hiddenEntries.push(touchingEntry);\n }\n }\n }\n return super.handleInvalidInsertion(insertion, entry, hiddenEntries);\n }\n}\n\nclass TableRow extends DateComponent {\n constructor() {\n super(...arguments);\n this.cellElRefs = new RefMap(); // the <td>\n this.frameElRefs = new RefMap(); // the fc-daygrid-day-frame\n this.fgElRefs = new RefMap(); // the fc-daygrid-day-events\n this.segHarnessRefs = new RefMap(); // indexed by \"instanceId:firstCol\"\n this.rootElRef = createRef();\n this.state = {\n framePositions: null,\n maxContentHeight: null,\n eventInstanceHeights: {},\n };\n }\n render() {\n let { props, state, context } = this;\n let { options } = context;\n let colCnt = props.cells.length;\n let businessHoursByCol = splitSegsByFirstCol(props.businessHourSegs, colCnt);\n let bgEventSegsByCol = splitSegsByFirstCol(props.bgEventSegs, colCnt);\n let highlightSegsByCol = splitSegsByFirstCol(this.getHighlightSegs(), colCnt);\n let mirrorSegsByCol = splitSegsByFirstCol(this.getMirrorSegs(), colCnt);\n let { singleColPlacements, multiColPlacements, moreCnts, moreMarginTops } = computeFgSegPlacement(sortEventSegs(props.fgEventSegs, options.eventOrder), props.dayMaxEvents, props.dayMaxEventRows, options.eventOrderStrict, state.eventInstanceHeights, state.maxContentHeight, props.cells);\n let isForcedInvisible = // TODO: messy way to compute this\n (props.eventDrag && props.eventDrag.affectedInstances) ||\n (props.eventResize && props.eventResize.affectedInstances) ||\n {};\n return (createElement(\"tr\", { ref: this.rootElRef, role: \"row\" },\n props.renderIntro && props.renderIntro(),\n props.cells.map((cell, col) => {\n let normalFgNodes = this.renderFgSegs(col, props.forPrint ? singleColPlacements[col] : multiColPlacements[col], props.todayRange, isForcedInvisible);\n let mirrorFgNodes = this.renderFgSegs(col, buildMirrorPlacements(mirrorSegsByCol[col], multiColPlacements), props.todayRange, {}, Boolean(props.eventDrag), Boolean(props.eventResize), false);\n return (createElement(TableCell, { key: cell.key, elRef: this.cellElRefs.createRef(cell.key), innerElRef: this.frameElRefs.createRef(cell.key) /* FF <td> problem, but okay to use for left/right. TODO: rename prop */, dateProfile: props.dateProfile, date: cell.date, showDayNumber: props.showDayNumbers, showWeekNumber: props.showWeekNumbers && col === 0, forceDayTop: props.showWeekNumbers /* even displaying weeknum for row, not necessarily day */, todayRange: props.todayRange, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, extraRenderProps: cell.extraRenderProps, extraDataAttrs: cell.extraDataAttrs, extraClassNames: cell.extraClassNames, extraDateSpan: cell.extraDateSpan, moreCnt: moreCnts[col], moreMarginTop: moreMarginTops[col], singlePlacements: singleColPlacements[col], fgContentElRef: this.fgElRefs.createRef(cell.key), fgContent: ( // Fragment scopes the keys\n createElement(Fragment, null,\n createElement(Fragment, null, normalFgNodes),\n createElement(Fragment, null, mirrorFgNodes))), bgContent: ( // Fragment scopes the keys\n createElement(Fragment, null,\n this.renderFillSegs(highlightSegsByCol[col], 'highlight'),\n this.renderFillSegs(businessHoursByCol[col], 'non-business'),\n this.renderFillSegs(bgEventSegsByCol[col], 'bg-event'))) }));\n })));\n }\n componentDidMount() {\n this.updateSizing(true);\n }\n componentDidUpdate(prevProps, prevState) {\n let currentProps = this.props;\n this.updateSizing(!isPropsEqual(prevProps, currentProps));\n }\n getHighlightSegs() {\n let { props } = this;\n if (props.eventDrag && props.eventDrag.segs.length) { // messy check\n return props.eventDrag.segs;\n }\n if (props.eventResize && props.eventResize.segs.length) { // messy check\n return props.eventResize.segs;\n }\n return props.dateSelectionSegs;\n }\n getMirrorSegs() {\n let { props } = this;\n if (props.eventResize && props.eventResize.segs.length) { // messy check\n return props.eventResize.segs;\n }\n return [];\n }\n renderFgSegs(col, segPlacements, todayRange, isForcedInvisible, isDragging, isResizing, isDateSelecting) {\n let { context } = this;\n let { eventSelection } = this.props;\n let { framePositions } = this.state;\n let defaultDisplayEventEnd = this.props.cells.length === 1; // colCnt === 1\n let isMirror = isDragging || isResizing || isDateSelecting;\n let nodes = [];\n if (framePositions) {\n for (let placement of segPlacements) {\n let { seg } = placement;\n let { instanceId } = seg.eventRange.instance;\n let key = instanceId + ':' + col;\n let isVisible = placement.isVisible && !isForcedInvisible[instanceId];\n let isAbsolute = placement.isAbsolute;\n let left = '';\n let right = '';\n if (isAbsolute) {\n if (context.isRtl) {\n right = 0;\n left = framePositions.lefts[seg.lastCol] - framePositions.lefts[seg.firstCol];\n }\n else {\n left = 0;\n right = framePositions.rights[seg.firstCol] - framePositions.rights[seg.lastCol];\n }\n }\n /*\n known bug: events that are force to be list-item but span multiple days still take up space in later columns\n todo: in print view, for multi-day events, don't display title within non-start/end segs\n */\n nodes.push(createElement(\"div\", { className: 'fc-daygrid-event-harness' + (isAbsolute ? ' fc-daygrid-event-harness-abs' : ''), key: key, ref: isMirror ? null : this.segHarnessRefs.createRef(key), style: {\n visibility: isVisible ? '' : 'hidden',\n marginTop: isAbsolute ? '' : placement.marginTop,\n top: isAbsolute ? placement.absoluteTop : '',\n left,\n right,\n } }, hasListItemDisplay(seg) ? (createElement(TableListItemEvent, Object.assign({ seg: seg, isDragging: isDragging, isSelected: instanceId === eventSelection, defaultDisplayEventEnd: defaultDisplayEventEnd }, getSegMeta(seg, todayRange)))) : (createElement(TableBlockEvent, Object.assign({ seg: seg, isDragging: isDragging, isResizing: isResizing, isDateSelecting: isDateSelecting, isSelected: instanceId === eventSelection, defaultDisplayEventEnd: defaultDisplayEventEnd }, getSegMeta(seg, todayRange))))));\n }\n }\n return nodes;\n }\n renderFillSegs(segs, fillType) {\n let { isRtl } = this.context;\n let { todayRange } = this.props;\n let { framePositions } = this.state;\n let nodes = [];\n if (framePositions) {\n for (let seg of segs) {\n let leftRightCss = isRtl ? {\n right: 0,\n left: framePositions.lefts[seg.lastCol] - framePositions.lefts[seg.firstCol],\n } : {\n left: 0,\n right: framePositions.rights[seg.firstCol] - framePositions.rights[seg.lastCol],\n };\n nodes.push(createElement(\"div\", { key: buildEventRangeKey(seg.eventRange), className: \"fc-daygrid-bg-harness\", style: leftRightCss }, fillType === 'bg-event' ?\n createElement(BgEvent, Object.assign({ seg: seg }, getSegMeta(seg, todayRange))) :\n renderFill(fillType)));\n }\n }\n return createElement(Fragment, {}, ...nodes);\n }\n updateSizing(isExternalSizingChange) {\n let { props, frameElRefs } = this;\n if (!props.forPrint &&\n props.clientWidth !== null // positioning ready?\n ) {\n if (isExternalSizingChange) {\n let frameEls = props.cells.map((cell) => frameElRefs.currentMap[cell.key]);\n if (frameEls.length) {\n let originEl = this.rootElRef.current;\n this.setState({\n framePositions: new PositionCache(originEl, frameEls, true, // isHorizontal\n false),\n });\n }\n }\n const oldInstanceHeights = this.state.eventInstanceHeights;\n const newInstanceHeights = this.queryEventInstanceHeights();\n const limitByContentHeight = props.dayMaxEvents === true || props.dayMaxEventRows === true;\n this.safeSetState({\n // HACK to prevent oscillations of events being shown/hidden from max-event-rows\n // Essentially, once you compute an element's height, never null-out.\n // TODO: always display all events, as visibility:hidden?\n eventInstanceHeights: Object.assign(Object.assign({}, oldInstanceHeights), newInstanceHeights),\n maxContentHeight: limitByContentHeight ? this.computeMaxContentHeight() : null,\n });\n }\n }\n queryEventInstanceHeights() {\n let segElMap = this.segHarnessRefs.currentMap;\n let eventInstanceHeights = {};\n // get the max height amongst instance segs\n for (let key in segElMap) {\n let height = Math.round(segElMap[key].getBoundingClientRect().height);\n let instanceId = key.split(':')[0]; // deconstruct how renderFgSegs makes the key\n eventInstanceHeights[instanceId] = Math.max(eventInstanceHeights[instanceId] || 0, height);\n }\n return eventInstanceHeights;\n }\n computeMaxContentHeight() {\n let firstKey = this.props.cells[0].key;\n let cellEl = this.cellElRefs.currentMap[firstKey];\n let fcContainerEl = this.fgElRefs.currentMap[firstKey];\n return cellEl.getBoundingClientRect().bottom - fcContainerEl.getBoundingClientRect().top;\n }\n getCellEls() {\n let elMap = this.cellElRefs.currentMap;\n return this.props.cells.map((cell) => elMap[cell.key]);\n }\n}\nTableRow.addStateEquality({\n eventInstanceHeights: isPropsEqual,\n});\nfunction buildMirrorPlacements(mirrorSegs, colPlacements) {\n if (!mirrorSegs.length) {\n return [];\n }\n let topsByInstanceId = buildAbsoluteTopHash(colPlacements); // TODO: cache this at first render?\n return mirrorSegs.map((seg) => ({\n seg,\n isVisible: true,\n isAbsolute: true,\n absoluteTop: topsByInstanceId[seg.eventRange.instance.instanceId],\n marginTop: 0,\n }));\n}\nfunction buildAbsoluteTopHash(colPlacements) {\n let topsByInstanceId = {};\n for (let placements of colPlacements) {\n for (let placement of placements) {\n topsByInstanceId[placement.seg.eventRange.instance.instanceId] = placement.absoluteTop;\n }\n }\n return topsByInstanceId;\n}\n\nclass Table extends DateComponent {\n constructor() {\n super(...arguments);\n this.splitBusinessHourSegs = memoize(splitSegsByRow);\n this.splitBgEventSegs = memoize(splitSegsByRow);\n this.splitFgEventSegs = memoize(splitSegsByRow);\n this.splitDateSelectionSegs = memoize(splitSegsByRow);\n this.splitEventDrag = memoize(splitInteractionByRow);\n this.splitEventResize = memoize(splitInteractionByRow);\n this.rowRefs = new RefMap();\n this.handleRootEl = (rootEl) => {\n this.rootEl = rootEl;\n if (rootEl) {\n this.context.registerInteractiveComponent(this, {\n el: rootEl,\n isHitComboAllowed: this.props.isHitComboAllowed,\n });\n }\n else {\n this.context.unregisterInteractiveComponent(this);\n }\n };\n }\n render() {\n let { props } = this;\n let { dateProfile, dayMaxEventRows, dayMaxEvents, expandRows } = props;\n let rowCnt = props.cells.length;\n let businessHourSegsByRow = this.splitBusinessHourSegs(props.businessHourSegs, rowCnt);\n let bgEventSegsByRow = this.splitBgEventSegs(props.bgEventSegs, rowCnt);\n let fgEventSegsByRow = this.splitFgEventSegs(props.fgEventSegs, rowCnt);\n let dateSelectionSegsByRow = this.splitDateSelectionSegs(props.dateSelectionSegs, rowCnt);\n let eventDragByRow = this.splitEventDrag(props.eventDrag, rowCnt);\n let eventResizeByRow = this.splitEventResize(props.eventResize, rowCnt);\n let limitViaBalanced = dayMaxEvents === true || dayMaxEventRows === true;\n // if rows can't expand to fill fixed height, can't do balanced-height event limit\n // TODO: best place to normalize these options?\n if (limitViaBalanced && !expandRows) {\n limitViaBalanced = false;\n dayMaxEventRows = null;\n dayMaxEvents = null;\n }\n let classNames = [\n 'fc-daygrid-body',\n limitViaBalanced ? 'fc-daygrid-body-balanced' : 'fc-daygrid-body-unbalanced',\n expandRows ? '' : 'fc-daygrid-body-natural', // will height of one row depend on the others?\n ];\n return (createElement(\"div\", { className: classNames.join(' '), ref: this.handleRootEl, style: {\n // these props are important to give this wrapper correct dimensions for interactions\n // TODO: if we set it here, can we avoid giving to inner tables?\n width: props.clientWidth,\n minWidth: props.tableMinWidth,\n } },\n createElement(NowTimer, { unit: \"day\" }, (nowDate, todayRange) => (createElement(Fragment, null,\n createElement(\"table\", { role: \"presentation\", className: \"fc-scrollgrid-sync-table\", style: {\n width: props.clientWidth,\n minWidth: props.tableMinWidth,\n height: expandRows ? props.clientHeight : '',\n } },\n props.colGroupNode,\n createElement(\"tbody\", { role: \"presentation\" }, props.cells.map((cells, row) => (createElement(TableRow, { ref: this.rowRefs.createRef(row), key: cells.length\n ? cells[0].date.toISOString() /* best? or put key on cell? or use diff formatter? */\n : row // in case there are no cells (like when resource view is loading)\n , showDayNumbers: rowCnt > 1, showWeekNumbers: props.showWeekNumbers, todayRange: todayRange, dateProfile: dateProfile, cells: cells, renderIntro: props.renderRowIntro, businessHourSegs: businessHourSegsByRow[row], eventSelection: props.eventSelection, bgEventSegs: bgEventSegsByRow[row].filter(isSegAllDay) /* hack */, fgEventSegs: fgEventSegsByRow[row], dateSelectionSegs: dateSelectionSegsByRow[row], eventDrag: eventDragByRow[row], eventResize: eventResizeByRow[row], dayMaxEvents: dayMaxEvents, dayMaxEventRows: dayMaxEventRows, clientWidth: props.clientWidth, clientHeight: props.clientHeight, forPrint: props.forPrint }))))))))));\n }\n // Hit System\n // ----------------------------------------------------------------------------------------------------\n prepareHits() {\n this.rowPositions = new PositionCache(this.rootEl, this.rowRefs.collect().map((rowObj) => rowObj.getCellEls()[0]), // first cell el in each row. TODO: not optimal\n false, true);\n this.colPositions = new PositionCache(this.rootEl, this.rowRefs.currentMap[0].getCellEls(), // cell els in first row\n true, // horizontal\n false);\n }\n queryHit(positionLeft, positionTop) {\n let { colPositions, rowPositions } = this;\n let col = colPositions.leftToIndex(positionLeft);\n let row = rowPositions.topToIndex(positionTop);\n if (row != null && col != null) {\n let cell = this.props.cells[row][col];\n return {\n dateProfile: this.props.dateProfile,\n dateSpan: Object.assign({ range: this.getCellRange(row, col), allDay: true }, cell.extraDateSpan),\n dayEl: this.getCellEl(row, col),\n rect: {\n left: colPositions.lefts[col],\n right: colPositions.rights[col],\n top: rowPositions.tops[row],\n bottom: rowPositions.bottoms[row],\n },\n layer: 0,\n };\n }\n return null;\n }\n getCellEl(row, col) {\n return this.rowRefs.currentMap[row].getCellEls()[col]; // TODO: not optimal\n }\n getCellRange(row, col) {\n let start = this.props.cells[row][col].date;\n let end = addDays(start, 1);\n return { start, end };\n }\n}\nfunction isSegAllDay(seg) {\n return seg.eventRange.def.allDay;\n}\n\nclass DayTableSlicer extends Slicer {\n constructor() {\n super(...arguments);\n this.forceDayIfListItem = true;\n }\n sliceRange(dateRange, dayTableModel) {\n return dayTableModel.sliceRange(dateRange);\n }\n}\n\nclass DayTable extends DateComponent {\n constructor() {\n super(...arguments);\n this.slicer = new DayTableSlicer();\n this.tableRef = createRef();\n }\n render() {\n let { props, context } = this;\n return (createElement(Table, Object.assign({ ref: this.tableRef }, this.slicer.sliceProps(props, props.dateProfile, props.nextDayThreshold, context, props.dayTableModel), { dateProfile: props.dateProfile, cells: props.dayTableModel.cells, colGroupNode: props.colGroupNode, tableMinWidth: props.tableMinWidth, renderRowIntro: props.renderRowIntro, dayMaxEvents: props.dayMaxEvents, dayMaxEventRows: props.dayMaxEventRows, showWeekNumbers: props.showWeekNumbers, expandRows: props.expandRows, headerAlignElRef: props.headerAlignElRef, clientWidth: props.clientWidth, clientHeight: props.clientHeight, forPrint: props.forPrint })));\n }\n}\n\n/* An abstract class for the daygrid views, as well as month view. Renders one or more rows of day cells.\n----------------------------------------------------------------------------------------------------------------------*/\n// It is a manager for a Table subcomponent, which does most of the heavy lifting.\n// It is responsible for managing width/height.\nclass TableView extends DateComponent {\n constructor() {\n super(...arguments);\n this.headerElRef = createRef();\n }\n renderSimpleLayout(headerRowContent, bodyContent) {\n let { props, context } = this;\n let sections = [];\n let stickyHeaderDates = getStickyHeaderDates(context.options);\n if (headerRowContent) {\n sections.push({\n type: 'header',\n key: 'header',\n isSticky: stickyHeaderDates,\n chunk: {\n elRef: this.headerElRef,\n tableClassName: 'fc-col-header',\n rowContent: headerRowContent,\n },\n });\n }\n sections.push({\n type: 'body',\n key: 'body',\n liquid: true,\n chunk: { content: bodyContent },\n });\n return (createElement(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },\n createElement(SimpleScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, cols: [] /* TODO: make optional? */, sections: sections })));\n }\n renderHScrollLayout(headerRowContent, bodyContent, colCnt, dayMinWidth) {\n let ScrollGrid = this.context.pluginHooks.scrollGridImpl;\n if (!ScrollGrid) {\n throw new Error('No ScrollGrid implementation');\n }\n let { props, context } = this;\n let stickyHeaderDates = !props.forPrint && getStickyHeaderDates(context.options);\n let stickyFooterScrollbar = !props.forPrint && getStickyFooterScrollbar(context.options);\n let sections = [];\n if (headerRowContent) {\n sections.push({\n type: 'header',\n key: 'header',\n isSticky: stickyHeaderDates,\n chunks: [{\n key: 'main',\n elRef: this.headerElRef,\n tableClassName: 'fc-col-header',\n rowContent: headerRowContent,\n }],\n });\n }\n sections.push({\n type: 'body',\n key: 'body',\n liquid: true,\n chunks: [{\n key: 'main',\n content: bodyContent,\n }],\n });\n if (stickyFooterScrollbar) {\n sections.push({\n type: 'footer',\n key: 'footer',\n isSticky: true,\n chunks: [{\n key: 'main',\n content: renderScrollShim,\n }],\n });\n }\n return (createElement(ViewContainer, { elClasses: ['fc-daygrid'], viewSpec: context.viewSpec },\n createElement(ScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, colGroups: [{ cols: [{ span: colCnt, minWidth: dayMinWidth }] }], sections: sections })));\n }\n}\n\nclass DayTableView extends TableView {\n constructor() {\n super(...arguments);\n this.buildDayTableModel = memoize(buildDayTableModel);\n this.headerRef = createRef();\n this.tableRef = createRef();\n }\n render() {\n let { options, dateProfileGenerator } = this.context;\n let { props } = this;\n let dayTableModel = this.buildDayTableModel(props.dateProfile, dateProfileGenerator);\n let headerContent = options.dayHeaders && (createElement(DayHeader, { ref: this.headerRef, dateProfile: props.dateProfile, dates: dayTableModel.headerDates, datesRepDistinctDays: dayTableModel.rowCnt === 1 }));\n let bodyContent = (contentArg) => (createElement(DayTable, { ref: this.tableRef, dateProfile: props.dateProfile, dayTableModel: dayTableModel, businessHours: props.businessHours, dateSelection: props.dateSelection, eventStore: props.eventStore, eventUiBases: props.eventUiBases, eventSelection: props.eventSelection, eventDrag: props.eventDrag, eventResize: props.eventResize, nextDayThreshold: options.nextDayThreshold, colGroupNode: contentArg.tableColGroupNode, tableMinWidth: contentArg.tableMinWidth, dayMaxEvents: options.dayMaxEvents, dayMaxEventRows: options.dayMaxEventRows, showWeekNumbers: options.weekNumbers, expandRows: !props.isHeightAuto, headerAlignElRef: this.headerElRef, clientWidth: contentArg.clientWidth, clientHeight: contentArg.clientHeight, forPrint: props.forPrint }));\n return options.dayMinWidth\n ? this.renderHScrollLayout(headerContent, bodyContent, dayTableModel.colCnt, options.dayMinWidth)\n : this.renderSimpleLayout(headerContent, bodyContent);\n }\n}\nfunction buildDayTableModel(dateProfile, dateProfileGenerator) {\n let daySeries = new DaySeriesModel(dateProfile.renderRange, dateProfileGenerator);\n return new DayTableModel(daySeries, /year|month|week/.test(dateProfile.currentRangeUnit));\n}\n\nexport { DayTableView as DayGridView, DayTable, DayTableSlicer, Table, TableView, buildDayTableModel };\n","import { createPlugin } from '@fullcalendar/core/index.js';\nimport { DayGridView as DayTableView } from './internal.js';\nimport { DateProfileGenerator, addWeeks, diffWeeks, injectStyles } from '@fullcalendar/core/internal.js';\nimport '@fullcalendar/core/preact.js';\n\nclass TableDateProfileGenerator extends DateProfileGenerator {\n // Computes the date range that will be rendered.\n buildRenderRange(currentRange, currentRangeUnit, isRangeAllDay) {\n let { dateEnv } = this.props;\n let renderRange = super.buildRenderRange(currentRange, currentRangeUnit, isRangeAllDay);\n let start = renderRange.start;\n let end = renderRange.end;\n let endOfWeek;\n // year and month views should be aligned with weeks. this is already done for week\n if (/^(year|month)$/.test(currentRangeUnit)) {\n start = dateEnv.startOfWeek(start);\n // make end-of-week if not already\n endOfWeek = dateEnv.startOfWeek(end);\n if (endOfWeek.valueOf() !== end.valueOf()) {\n end = addWeeks(endOfWeek, 1);\n }\n }\n // ensure 6 weeks\n if (this.props.monthMode &&\n this.props.fixedWeekCount) {\n let rowCnt = Math.ceil(// could be partial weeks due to hiddenDays\n diffWeeks(start, end));\n end = addWeeks(end, 6 - rowCnt);\n }\n return { start, end };\n }\n}\n\nvar css_248z = \"\\n:root {\\n --fc-daygrid-event-dot-width: 8px;\\n}\\n\\n/* help things clear margins of inner content */\\n\\n.fc-daygrid-day-frame,\\n.fc-daygrid-day-events,\\n.fc-daygrid-event-harness { /* for event top/bottom margins */\\n}\\n\\n.fc-daygrid-day-frame:before, .fc-daygrid-day-events:before, .fc-daygrid-event-harness:before {\\n content: \\\"\\\";\\n clear: both;\\n display: table; }\\n\\n.fc-daygrid-day-frame:after, .fc-daygrid-day-events:after, .fc-daygrid-event-harness:after {\\n content: \\\"\\\";\\n clear: both;\\n display: table; }\\n\\n.fc .fc-daygrid-body { /* a <div> that wraps the table */\\n position: relative;\\n z-index: 1; /* container inner z-index's because <tr>s can't do it */\\n }\\n\\n.fc .fc-daygrid-day.fc-day-today {\\n background-color: var(--fc-today-bg-color);\\n }\\n\\n.fc .fc-daygrid-day-frame {\\n position: relative;\\n min-height: 100%; /* seems to work better than `height` because sets height after rows/cells naturally do it */\\n }\\n\\n.fc {\\n\\n /* cell top */\\n\\n}\\n\\n.fc .fc-daygrid-day-top {\\n display: flex;\\n flex-direction: row-reverse;\\n }\\n\\n.fc .fc-day-other .fc-daygrid-day-top {\\n opacity: 0.3;\\n }\\n\\n.fc {\\n\\n /* day number (within cell top) */\\n\\n}\\n\\n.fc .fc-daygrid-day-number {\\n position: relative;\\n z-index: 4;\\n padding: 4px;\\n }\\n\\n.fc {\\n\\n /* event container */\\n\\n}\\n\\n.fc .fc-daygrid-day-events {\\n margin-top: 1px; /* needs to be margin, not padding, so that available cell height can be computed */\\n }\\n\\n.fc {\\n\\n /* positioning for balanced vs natural */\\n\\n}\\n\\n.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {\\n position: absolute;\\n left: 0;\\n right: 0;\\n }\\n\\n.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {\\n position: relative; /* for containing abs positioned event harnesses */\\n min-height: 2em; /* in addition to being a min-height during natural height, equalizes the heights a little bit */\\n }\\n\\n.fc .fc-daygrid-body-natural { /* can coexist with -unbalanced */\\n }\\n\\n.fc .fc-daygrid-body-natural .fc-daygrid-day-events {\\n margin-bottom: 1em;\\n }\\n\\n.fc {\\n\\n /* event harness */\\n\\n}\\n\\n.fc .fc-daygrid-event-harness {\\n position: relative;\\n }\\n\\n.fc .fc-daygrid-event-harness-abs {\\n position: absolute;\\n top: 0; /* fallback coords for when cannot yet be computed */\\n left: 0; /* */\\n right: 0; /* */\\n }\\n\\n.fc .fc-daygrid-bg-harness {\\n position: absolute;\\n top: 0;\\n bottom: 0;\\n }\\n\\n.fc {\\n\\n /* bg content */\\n\\n}\\n\\n.fc .fc-daygrid-day-bg .fc-non-business { z-index: 1 }\\n\\n.fc .fc-daygrid-day-bg .fc-bg-event { z-index: 2 }\\n\\n.fc .fc-daygrid-day-bg .fc-highlight { z-index: 3 }\\n\\n.fc {\\n\\n /* events */\\n\\n}\\n\\n.fc .fc-daygrid-event {\\n z-index: 6;\\n margin-top: 1px;\\n }\\n\\n.fc .fc-daygrid-event.fc-event-mirror {\\n z-index: 7;\\n }\\n\\n.fc {\\n\\n /* cell bottom (within day-events) */\\n\\n}\\n\\n.fc .fc-daygrid-day-bottom {\\n font-size: .85em;\\n padding: 2px 3px 0\\n }\\n\\n.fc .fc-daygrid-day-bottom:before {\\n content: \\\"\\\";\\n clear: both;\\n display: table; }\\n\\n.fc .fc-daygrid-more-link {\\n position: relative;\\n z-index: 4;\\n cursor: pointer;\\n }\\n\\n.fc {\\n\\n /* week number (within frame) */\\n\\n}\\n\\n.fc .fc-daygrid-week-number {\\n position: absolute;\\n z-index: 5;\\n top: 0;\\n padding: 2px;\\n min-width: 1.5em;\\n text-align: center;\\n background-color: var(--fc-neutral-bg-color);\\n color: var(--fc-neutral-text-color);\\n }\\n\\n.fc {\\n\\n /* popover */\\n\\n}\\n\\n.fc .fc-more-popover .fc-popover-body {\\n min-width: 220px;\\n padding: 10px;\\n }\\n\\n.fc-direction-ltr .fc-daygrid-event.fc-event-start,\\n.fc-direction-rtl .fc-daygrid-event.fc-event-end {\\n margin-left: 2px;\\n}\\n\\n.fc-direction-ltr .fc-daygrid-event.fc-event-end,\\n.fc-direction-rtl .fc-daygrid-event.fc-event-start {\\n margin-right: 2px;\\n}\\n\\n.fc-direction-ltr .fc-daygrid-week-number {\\n left: 0;\\n border-radius: 0 0 3px 0;\\n }\\n\\n.fc-direction-rtl .fc-daygrid-week-number {\\n right: 0;\\n border-radius: 0 0 0 3px;\\n }\\n\\n.fc-liquid-hack .fc-daygrid-day-frame {\\n position: static; /* will cause inner absolute stuff to expand to <td> */\\n }\\n.fc-daygrid-event { /* make root-level, because will be dragged-and-dropped outside of a component root */\\n position: relative; /* for z-indexes assigned later */\\n white-space: nowrap;\\n border-radius: 3px; /* dot event needs this to when selected */\\n font-size: var(--fc-small-font-size);\\n}\\n/* --- the rectangle (\\\"block\\\") style of event --- */\\n.fc-daygrid-block-event .fc-event-time {\\n font-weight: bold;\\n }\\n.fc-daygrid-block-event .fc-event-time,\\n .fc-daygrid-block-event .fc-event-title {\\n padding: 1px;\\n }\\n/* --- the dot style of event --- */\\n.fc-daygrid-dot-event {\\n display: flex;\\n align-items: center;\\n padding: 2px 0\\n\\n}\\n.fc-daygrid-dot-event .fc-event-title {\\n flex-grow: 1;\\n flex-shrink: 1;\\n min-width: 0; /* important for allowing to shrink all the way */\\n overflow: hidden;\\n font-weight: bold;\\n }\\n.fc-daygrid-dot-event:hover,\\n .fc-daygrid-dot-event.fc-event-mirror {\\n background: rgba(0, 0, 0, 0.1);\\n }\\n.fc-daygrid-dot-event.fc-event-selected:before {\\n /* expand hit area */\\n top: -10px;\\n bottom: -10px;\\n }\\n.fc-daygrid-event-dot { /* the actual dot */\\n margin: 0 4px;\\n box-sizing: content-box;\\n width: 0;\\n height: 0;\\n border: calc(var(--fc-daygrid-event-dot-width) / 2) solid var(--fc-event-border-color);\\n border-radius: calc(var(--fc-daygrid-event-dot-width) / 2);\\n}\\n/* --- spacing between time and title --- */\\n.fc-direction-ltr .fc-daygrid-event .fc-event-time {\\n margin-right: 3px;\\n }\\n.fc-direction-rtl .fc-daygrid-event .fc-event-time {\\n margin-left: 3px;\\n }\\n\";\ninjectStyles(css_248z);\n\nvar index = createPlugin({\n name: '@fullcalendar/daygrid',\n initialView: 'dayGridMonth',\n views: {\n dayGrid: {\n component: DayTableView,\n dateProfileGeneratorClass: TableDateProfileGenerator,\n },\n dayGridDay: {\n type: 'dayGrid',\n duration: { days: 1 },\n },\n dayGridWeek: {\n type: 'dayGrid',\n duration: { weeks: 1 },\n },\n dayGridMonth: {\n type: 'dayGrid',\n duration: { months: 1 },\n monthMode: true,\n fixedWeekCount: true,\n },\n },\n});\n\nexport { index as default };\n","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 } from '@fullcalendar/core/internal.js';\nimport { createElement, createRef, Fragment } from '@fullcalendar/core/preact.js';\nimport { DayTable } from '@fullcalendar/daygrid/internal.js';\n\nclass AllDaySplitter extends Splitter {\n getKeyInfo() {\n return {\n allDay: {},\n timed: {},\n };\n }\n getKeysForDateSpan(dateSpan) {\n if (dateSpan.allDay) {\n return ['allDay'];\n }\n return ['timed'];\n }\n getKeysForEventDef(eventDef) {\n if (!eventDef.allDay) {\n return ['timed'];\n }\n if (hasBgRendering(eventDef)) {\n return ['timed', 'allDay'];\n }\n return ['allDay'];\n }\n}\n\nconst DEFAULT_SLAT_LABEL_FORMAT = createFormatter({\n hour: 'numeric',\n minute: '2-digit',\n omitZeroMinute: true,\n meridiem: 'short',\n});\nfunction TimeColsAxisCell(props) {\n let classNames = [\n 'fc-timegrid-slot',\n 'fc-timegrid-slot-label',\n props.isLabeled ? 'fc-scrollgrid-shrink' : 'fc-timegrid-slot-minor',\n ];\n return (createElement(ViewContextType.Consumer, null, (context) => {\n if (!props.isLabeled) {\n return (createElement(\"td\", { className: classNames.join(' '), \"data-time\": props.isoTimeStr }));\n }\n let { dateEnv, options, viewApi } = context;\n let labelFormat = // TODO: fully pre-parse\n options.slotLabelFormat == null ? DEFAULT_SLAT_LABEL_FORMAT :\n Array.isArray(options.slotLabelFormat) ? createFormatter(options.slotLabelFormat[0]) :\n createFormatter(options.slotLabelFormat);\n let renderProps = {\n level: 0,\n time: props.time,\n date: dateEnv.toDate(props.date),\n view: viewApi,\n text: dateEnv.format(props.date, labelFormat),\n };\n return (createElement(ContentContainer, { elTag: \"td\", elClasses: classNames, elAttrs: {\n 'data-time': props.isoTimeStr,\n }, renderProps: renderProps, generatorName: \"slotLabelContent\", generator: options.slotLabelContent || renderInnerContent, classNameGenerator: options.slotLabelClassNames, didMount: options.slotLabelDidMount, willUnmount: options.slotLabelWillUnmount }, (InnerContent) => (createElement(\"div\", { className: \"fc-timegrid-slot-label-frame fc-scrollgrid-shrink-frame\" },\n createElement(InnerContent, { elTag: \"div\", elClasses: [\n 'fc-timegrid-slot-label-cushion',\n 'fc-scrollgrid-shrink-cushion',\n ] })))));\n }));\n}\nfunction renderInnerContent(props) {\n return props.text;\n}\n\nclass TimeBodyAxis extends BaseComponent {\n render() {\n return this.props.slatMetas.map((slatMeta) => (createElement(\"tr\", { key: slatMeta.key },\n createElement(TimeColsAxisCell, Object.assign({}, slatMeta)))));\n }\n}\n\nconst DEFAULT_WEEK_NUM_FORMAT = createFormatter({ week: 'short' });\nconst AUTO_ALL_DAY_MAX_EVENT_ROWS = 5;\nclass TimeColsView extends DateComponent {\n constructor() {\n super(...arguments);\n this.allDaySplitter = new AllDaySplitter(); // for use by subclasses\n this.headerElRef = createRef();\n this.rootElRef = createRef();\n this.scrollerElRef = createRef();\n this.state = {\n slatCoords: null,\n };\n this.handleScrollTopRequest = (scrollTop) => {\n let scrollerEl = this.scrollerElRef.current;\n if (scrollerEl) { // TODO: not sure how this could ever be null. weirdness with the reducer\n scrollerEl.scrollTop = scrollTop;\n }\n };\n /* Header Render Methods\n ------------------------------------------------------------------------------------------------------------------*/\n this.renderHeadAxis = (rowKey, frameHeight = '') => {\n let { options } = this.context;\n let { dateProfile } = this.props;\n let range = dateProfile.renderRange;\n let dayCnt = diffDays(range.start, range.end);\n // only do in day views (to avoid doing in week views that dont need it)\n let navLinkAttrs = (dayCnt === 1)\n ? buildNavLinkAttrs(this.context, range.start, 'week')\n : {};\n if (options.weekNumbers && rowKey === 'day') {\n return (createElement(WeekNumberContainer, { elTag: \"th\", elClasses: [\n 'fc-timegrid-axis',\n 'fc-scrollgrid-shrink',\n ], elAttrs: {\n 'aria-hidden': true,\n }, date: range.start, defaultFormat: DEFAULT_WEEK_NUM_FORMAT }, (InnerContent) => (createElement(\"div\", { className: [\n 'fc-timegrid-axis-frame',\n 'fc-scrollgrid-shrink-frame',\n 'fc-timegrid-axis-frame-liquid',\n ].join(' '), style: { height: frameHeight } },\n createElement(InnerContent, { elTag: \"a\", elClasses: [\n 'fc-timegrid-axis-cushion',\n 'fc-scrollgrid-shrink-cushion',\n 'fc-scrollgrid-sync-inner',\n ], elAttrs: navLinkAttrs })))));\n }\n return (createElement(\"th\", { \"aria-hidden\": true, className: \"fc-timegrid-axis\" },\n createElement(\"div\", { className: \"fc-timegrid-axis-frame\", style: { height: frameHeight } })));\n };\n /* Table Component Render Methods\n ------------------------------------------------------------------------------------------------------------------*/\n // only a one-way height sync. we don't send the axis inner-content height to the DayGrid,\n // but DayGrid still needs to have classNames on inner elements in order to measure.\n this.renderTableRowAxis = (rowHeight) => {\n let { options, viewApi } = this.context;\n let renderProps = {\n text: options.allDayText,\n view: viewApi,\n };\n return (\n // TODO: make reusable hook. used in list view too\n createElement(ContentContainer, { elTag: \"td\", elClasses: [\n 'fc-timegrid-axis',\n 'fc-scrollgrid-shrink',\n ], elAttrs: {\n 'aria-hidden': true,\n }, renderProps: renderProps, generatorName: \"allDayContent\", generator: options.allDayContent || renderAllDayInner, classNameGenerator: options.allDayClassNames, didMount: options.allDayDidMount, willUnmount: options.allDayWillUnmount }, (InnerContent) => (createElement(\"div\", { className: [\n 'fc-timegrid-axis-frame',\n 'fc-scrollgrid-shrink-frame',\n rowHeight == null ? ' fc-timegrid-axis-frame-liquid' : '',\n ].join(' '), style: { height: rowHeight } },\n createElement(InnerContent, { elTag: \"span\", elClasses: [\n 'fc-timegrid-axis-cushion',\n 'fc-scrollgrid-shrink-cushion',\n 'fc-scrollgrid-sync-inner',\n ] })))));\n };\n this.handleSlatCoords = (slatCoords) => {\n this.setState({ slatCoords });\n };\n }\n // rendering\n // ----------------------------------------------------------------------------------------------------\n renderSimpleLayout(headerRowContent, allDayContent, timeContent) {\n let { context, props } = this;\n let sections = [];\n let stickyHeaderDates = getStickyHeaderDates(context.options);\n if (headerRowContent) {\n sections.push({\n type: 'header',\n key: 'header',\n isSticky: stickyHeaderDates,\n chunk: {\n elRef: this.headerElRef,\n tableClassName: 'fc-col-header',\n rowContent: headerRowContent,\n },\n });\n }\n if (allDayContent) {\n sections.push({\n type: 'body',\n key: 'all-day',\n chunk: { content: allDayContent },\n });\n sections.push({\n type: 'body',\n key: 'all-day-divider',\n outerContent: ( // TODO: rename to cellContent so don't need to define <tr>?\n createElement(\"tr\", { role: \"presentation\", className: \"fc-scrollgrid-section\" },\n createElement(\"td\", { className: 'fc-timegrid-divider ' + context.theme.getClass('tableCellShaded') }))),\n });\n }\n sections.push({\n type: 'body',\n key: 'body',\n liquid: true,\n expandRows: Boolean(context.options.expandRows),\n chunk: {\n scrollerElRef: this.scrollerElRef,\n content: timeContent,\n },\n });\n return (createElement(ViewContainer, { elRef: this.rootElRef, elClasses: ['fc-timegrid'], viewSpec: context.viewSpec },\n createElement(SimpleScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: props.forPrint, cols: [{ width: 'shrink' }], sections: sections })));\n }\n renderHScrollLayout(headerRowContent, allDayContent, timeContent, colCnt, dayMinWidth, slatMetas, slatCoords) {\n let ScrollGrid = this.context.pluginHooks.scrollGridImpl;\n if (!ScrollGrid) {\n throw new Error('No ScrollGrid implementation');\n }\n let { context, props } = this;\n let stickyHeaderDates = !props.forPrint && getStickyHeaderDates(context.options);\n let stickyFooterScrollbar = !props.forPrint && getStickyFooterScrollbar(context.options);\n let sections = [];\n if (headerRowContent) {\n sections.push({\n type: 'header',\n key: 'header',\n isSticky: stickyHeaderDates,\n syncRowHeights: true,\n chunks: [\n {\n key: 'axis',\n rowContent: (arg) => (createElement(\"tr\", { role: \"presentation\" }, this.renderHeadAxis('day', arg.rowSyncHeights[0]))),\n },\n {\n key: 'cols',\n elRef: this.headerElRef,\n tableClassName: 'fc-col-header',\n rowContent: headerRowContent,\n },\n ],\n });\n }\n if (allDayContent) {\n sections.push({\n type: 'body',\n key: 'all-day',\n syncRowHeights: true,\n chunks: [\n {\n key: 'axis',\n rowContent: (contentArg) => (createElement(\"tr\", { role: \"presentation\" }, this.renderTableRowAxis(contentArg.rowSyncHeights[0]))),\n },\n {\n key: 'cols',\n content: allDayContent,\n },\n ],\n });\n sections.push({\n key: 'all-day-divider',\n type: 'body',\n outerContent: ( // TODO: rename to cellContent so don't need to define <tr>?\n createElement(\"tr\", { role: \"presentation\", className: \"fc-scrollgrid-section\" },\n createElement(\"td\", { colSpan: 2, className: 'fc-timegrid-divider ' + context.theme.getClass('tableCellShaded') }))),\n });\n }\n let isNowIndicator = context.options.nowIndicator;\n sections.push({\n type: 'body',\n key: 'body',\n liquid: true,\n expandRows: Boolean(context.options.expandRows),\n chunks: [\n {\n key: 'axis',\n content: (arg) => (\n // TODO: make this now-indicator arrow more DRY with TimeColsContent\n createElement(\"div\", { className: \"fc-timegrid-axis-chunk\" },\n createElement(\"table\", { \"aria-hidden\": true, style: { height: arg.expandRows ? arg.clientHeight : '' } },\n arg.tableColGroupNode,\n createElement(\"tbody\", null,\n createElement(TimeBodyAxis, { slatMetas: slatMetas }))),\n createElement(\"div\", { className: \"fc-timegrid-now-indicator-container\" },\n createElement(NowTimer, { unit: isNowIndicator ? 'minute' : 'day' /* hacky */ }, (nowDate) => {\n let nowIndicatorTop = isNowIndicator &&\n slatCoords &&\n slatCoords.safeComputeTop(nowDate); // might return void\n if (typeof nowIndicatorTop === 'number') {\n return (createElement(NowIndicatorContainer, { elClasses: ['fc-timegrid-now-indicator-arrow'], elStyle: { top: nowIndicatorTop }, isAxis: true, date: nowDate }));\n }\n return null;\n })))),\n },\n {\n key: 'cols',\n scrollerElRef: this.scrollerElRef,\n content: timeContent,\n },\n ],\n });\n if (stickyFooterScrollbar) {\n sections.push({\n key: 'footer',\n type: 'footer',\n isSticky: true,\n chunks: [\n {\n key: 'axis',\n content: renderScrollShim,\n },\n {\n key: 'cols',\n content: renderScrollShim,\n },\n ],\n });\n }\n return (createElement(ViewContainer, { elRef: this.rootElRef, elClasses: ['fc-timegrid'], viewSpec: context.viewSpec },\n createElement(ScrollGrid, { liquid: !props.isHeightAuto && !props.forPrint, collapsibleWidth: false, colGroups: [\n { width: 'shrink', cols: [{ width: 'shrink' }] },\n { cols: [{ span: colCnt, minWidth: dayMinWidth }] },\n ], sections: sections })));\n }\n /* Dimensions\n ------------------------------------------------------------------------------------------------------------------*/\n getAllDayMaxEventProps() {\n let { dayMaxEvents, dayMaxEventRows } = this.context.options;\n if (dayMaxEvents === true || dayMaxEventRows === true) { // is auto?\n dayMaxEvents = undefined;\n dayMaxEventRows = AUTO_ALL_DAY_MAX_EVENT_ROWS; // make sure \"auto\" goes to a real number\n }\n return { dayMaxEvents, dayMaxEventRows };\n }\n}\nfunction renderAllDayInner(renderProps) {\n return renderProps.text;\n}\n\nclass TimeColsSlatsCoords {\n constructor(positions, dateProfile, slotDuration) {\n this.positions = positions;\n this.dateProfile = dateProfile;\n this.slotDuration = slotDuration;\n }\n safeComputeTop(date) {\n let { dateProfile } = this;\n if (rangeContainsMarker(dateProfile.currentRange, date)) {\n let startOfDayDate = startOfDay(date);\n let timeMs = date.valueOf() - startOfDayDate.valueOf();\n if (timeMs >= asRoughMs(dateProfile.slotMinTime) &&\n timeMs < asRoughMs(dateProfile.slotMaxTime)) {\n return this.computeTimeTop(createDuration(timeMs));\n }\n }\n return null;\n }\n // Computes the top coordinate, relative to the bounds of the grid, of the given date.\n // A `startOfDayDate` must be given for avoiding ambiguity over how to treat midnight.\n computeDateTop(when, startOfDayDate) {\n if (!startOfDayDate) {\n startOfDayDate = startOfDay(when);\n }\n return this.computeTimeTop(createDuration(when.valueOf() - startOfDayDate.valueOf()));\n }\n // Computes the top coordinate, relative to the bounds of the grid, of the given time (a Duration).\n // This is a makeshify way to compute the time-top. Assumes all slatMetas dates are uniform.\n // Eventually allow computation with arbirary slat dates.\n computeTimeTop(duration) {\n let { positions, dateProfile } = this;\n let len = positions.els.length;\n // floating-point value of # of slots covered\n let slatCoverage = (duration.milliseconds - asRoughMs(dateProfile.slotMinTime)) / asRoughMs(this.slotDuration);\n let slatIndex;\n let slatRemainder;\n // compute a floating-point number for how many slats should be progressed through.\n // from 0 to number of slats (inclusive)\n // constrained because slotMinTime/slotMaxTime might be customized.\n slatCoverage = Math.max(0, slatCoverage);\n slatCoverage = Math.min(len, slatCoverage);\n // an integer index of the furthest whole slat\n // from 0 to number slats (*exclusive*, so len-1)\n slatIndex = Math.floor(slatCoverage);\n slatIndex = Math.min(slatIndex, len - 1);\n // how much further through the slatIndex slat (from 0.0-1.0) must be covered in addition.\n // could be 1.0 if slatCoverage is covering *all* the slots\n slatRemainder = slatCoverage - slatIndex;\n return positions.tops[slatIndex] +\n positions.getHeight(slatIndex) * slatRemainder;\n }\n}\n\nclass TimeColsSlatsBody extends BaseComponent {\n render() {\n let { props, context } = this;\n let { options } = context;\n let { slatElRefs } = props;\n return (createElement(\"tbody\", null, props.slatMetas.map((slatMeta, i) => {\n let renderProps = {\n time: slatMeta.time,\n date: context.dateEnv.toDate(slatMeta.date),\n view: context.viewApi,\n };\n return (createElement(\"tr\", { key: slatMeta.key, ref: slatElRefs.createRef(slatMeta.key) },\n props.axis && (createElement(TimeColsAxisCell, Object.assign({}, slatMeta))),\n createElement(ContentContainer, { elTag: \"td\", elClasses: [\n 'fc-timegrid-slot',\n 'fc-timegrid-slot-lane',\n !slatMeta.isLabeled && 'fc-timegrid-slot-minor',\n ], elAttrs: {\n 'data-time': slatMeta.isoTimeStr,\n }, renderProps: renderProps, generatorName: \"slotLaneContent\", generator: options.slotLaneContent, classNameGenerator: options.slotLaneClassNames, didMount: options.slotLaneDidMount, willUnmount: options.slotLaneWillUnmount })));\n })));\n }\n}\n\n/*\nfor the horizontal \"slats\" that run width-wise. Has a time axis on a side. Depends on RTL.\n*/\nclass TimeColsSlats extends BaseComponent {\n constructor() {\n super(...arguments);\n this.rootElRef = createRef();\n this.slatElRefs = new RefMap();\n }\n render() {\n let { props, context } = this;\n return (createElement(\"div\", { ref: this.rootElRef, className: \"fc-timegrid-slots\" },\n createElement(\"table\", { \"aria-hidden\": true, className: context.theme.getClass('table'), style: {\n minWidth: props.tableMinWidth,\n width: props.clientWidth,\n height: props.minHeight,\n } },\n props.tableColGroupNode /* relies on there only being a single <col> for the axis */,\n createElement(TimeColsSlatsBody, { slatElRefs: this.slatElRefs, axis: props.axis, slatMetas: props.slatMetas }))));\n }\n componentDidMount() {\n this.updateSizing();\n }\n componentDidUpdate() {\n this.updateSizing();\n }\n componentWillUnmount() {\n if (this.props.onCoords) {\n this.props.onCoords(null);\n }\n }\n updateSizing() {\n let { context, props } = this;\n if (props.onCoords &&\n props.clientWidth !== null // means sizing has stabilized\n ) {\n let rootEl = this.rootElRef.current;\n if (rootEl.offsetHeight) { // not hidden by css\n props.onCoords(new TimeColsSlatsCoords(new PositionCache(this.rootElRef.current, collectSlatEls(this.slatElRefs.currentMap, props.slatMetas), false, true), this.props.dateProfile, context.options.slotDuration));\n }\n }\n }\n}\nfunction collectSlatEls(elMap, slatMetas) {\n return slatMetas.map((slatMeta) => elMap[slatMeta.key]);\n}\n\nfunction splitSegsByCol(segs, colCnt) {\n let segsByCol = [];\n let i;\n for (i = 0; i < colCnt; i += 1) {\n segsByCol.push([]);\n }\n if (segs) {\n for (i = 0; i < segs.length; i += 1) {\n segsByCol[segs[i].col].push(segs[i]);\n }\n }\n return segsByCol;\n}\nfunction splitInteractionByCol(ui, colCnt) {\n let byRow = [];\n if (!ui) {\n for (let i = 0; i < colCnt; i += 1) {\n byRow[i] = null;\n }\n }\n else {\n for (let i = 0; i < colCnt; i += 1) {\n byRow[i] = {\n affectedInstances: ui.affectedInstances,\n isEvent: ui.isEvent,\n segs: [],\n };\n }\n for (let seg of ui.segs) {\n byRow[seg.col].segs.push(seg);\n }\n }\n return byRow;\n}\n\nclass TimeColMoreLink extends BaseComponent {\n render() {\n let { props } = this;\n return (createElement(MoreLinkContainer, { elClasses: ['fc-timegrid-more-link'], elStyle: {\n top: props.top,\n bottom: props.bottom,\n }, 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 }, (InnerContent) => (createElement(InnerContent, { elTag: \"div\", elClasses: ['fc-timegrid-more-link-inner', 'fc-sticky'] }))));\n }\n}\nfunction renderMoreLinkInner(props) {\n return props.shortText;\n}\n\n// segInputs assumed sorted\nfunction buildPositioning(segInputs, strictOrder, maxStackCnt) {\n let hierarchy = new SegHierarchy();\n if (strictOrder != null) {\n hierarchy.strictOrder = strictOrder;\n }\n if (maxStackCnt != null) {\n hierarchy.maxStackCnt = maxStackCnt;\n }\n let hiddenEntries = hierarchy.addSegs(segInputs);\n let hiddenGroups = groupIntersectingEntries(hiddenEntries);\n let web = buildWeb(hierarchy);\n web = stretchWeb(web, 1); // all levelCoords/thickness will have 0.0-1.0\n let segRects = webToRects(web);\n return { segRects, hiddenGroups };\n}\nfunction buildWeb(hierarchy) {\n const { entriesByLevel } = hierarchy;\n const buildNode = cacheable((level, lateral) => level + ':' + lateral, (level, lateral) => {\n let siblingRange = findNextLevelSegs(hierarchy, level, lateral);\n let nextLevelRes = buildNodes(siblingRange, buildNode);\n let entry = entriesByLevel[level][lateral];\n return [\n Object.assign(Object.assign({}, entry), { nextLevelNodes: nextLevelRes[0] }),\n entry.thickness + nextLevelRes[1], // the pressure builds\n ];\n });\n return buildNodes(entriesByLevel.length\n ? { level: 0, lateralStart: 0, lateralEnd: entriesByLevel[0].length }\n : null, buildNode)[0];\n}\nfunction buildNodes(siblingRange, buildNode) {\n if (!siblingRange) {\n return [[], 0];\n }\n let { level, lateralStart, lateralEnd } = siblingRange;\n let lateral = lateralStart;\n let pairs = [];\n while (lateral < lateralEnd) {\n pairs.push(buildNode(level, lateral));\n lateral += 1;\n }\n pairs.sort(cmpDescPressures);\n return [\n pairs.map(extractNode),\n pairs[0][1], // first item's pressure\n ];\n}\nfunction cmpDescPressures(a, b) {\n return b[1] - a[1];\n}\nfunction extractNode(a) {\n return a[0];\n}\nfunction findNextLevelSegs(hierarchy, subjectLevel, subjectLateral) {\n let { levelCoords, entriesByLevel } = hierarchy;\n let subjectEntry = entriesByLevel[subjectLevel][subjectLateral];\n let afterSubject = levelCoords[subjectLevel] + subjectEntry.thickness;\n let levelCnt = levelCoords.length;\n let level = subjectLevel;\n // skip past levels that are too high up\n for (; level < levelCnt && levelCoords[level] < afterSubject; level += 1)\n ; // do nothing\n for (; level < levelCnt; level += 1) {\n let entries = entriesByLevel[level];\n let entry;\n let searchIndex = binarySearch(entries, subjectEntry.span.start, getEntrySpanEnd);\n let lateralStart = searchIndex[0] + searchIndex[1]; // if exact match (which doesn't collide), go to next one\n let lateralEnd = lateralStart;\n while ( // loop through entries that horizontally intersect\n (entry = entries[lateralEnd]) && // but not past the whole seg list\n entry.span.start < subjectEntry.span.end) {\n lateralEnd += 1;\n }\n if (lateralStart < lateralEnd) {\n return { level, lateralStart, lateralEnd };\n }\n }\n return null;\n}\nfunction stretchWeb(topLevelNodes, totalThickness) {\n const stretchNode = cacheable((node, startCoord, prevThickness) => buildEntryKey(node), (node, startCoord, prevThickness) => {\n let { nextLevelNodes, thickness } = node;\n let allThickness = thickness + prevThickness;\n let thicknessFraction = thickness / allThickness;\n let endCoord;\n let newChildren = [];\n if (!nextLevelNodes.length) {\n endCoord = totalThickness;\n }\n else {\n for (let childNode of nextLevelNodes) {\n if (endCoord === undefined) {\n let res = stretchNode(childNode, startCoord, allThickness);\n endCoord = res[0];\n newChildren.push(res[1]);\n }\n else {\n let res = stretchNode(childNode, endCoord, 0);\n newChildren.push(res[1]);\n }\n }\n }\n let newThickness = (endCoord - startCoord) * thicknessFraction;\n return [endCoord - newThickness, Object.assign(Object.assign({}, node), { thickness: newThickness, nextLevelNodes: newChildren })];\n });\n return topLevelNodes.map((node) => stretchNode(node, 0, 0)[1]);\n}\n// not sorted in any particular order\nfunction webToRects(topLevelNodes) {\n let rects = [];\n const processNode = cacheable((node, levelCoord, stackDepth) => buildEntryKey(node), (node, levelCoord, stackDepth) => {\n let rect = Object.assign(Object.assign({}, node), { levelCoord,\n stackDepth, stackForward: 0 });\n rects.push(rect);\n return (rect.stackForward = processNodes(node.nextLevelNodes, levelCoord + node.thickness, stackDepth + 1) + 1);\n });\n function processNodes(nodes, levelCoord, stackDepth) {\n let stackForward = 0;\n for (let node of nodes) {\n stackForward = Math.max(processNode(node, levelCoord, stackDepth), stackForward);\n }\n return stackForward;\n }\n processNodes(topLevelNodes, 0, 0);\n return rects; // TODO: sort rects by levelCoord to be consistent with toRects?\n}\n// TODO: move to general util\nfunction cacheable(keyFunc, workFunc) {\n const cache = {};\n return (...args) => {\n let key = keyFunc(...args);\n return (key in cache)\n ? cache[key]\n : (cache[key] = workFunc(...args));\n };\n}\n\nfunction computeSegVCoords(segs, colDate, slatCoords = null, eventMinHeight = 0) {\n let vcoords = [];\n if (slatCoords) {\n for (let i = 0; i < segs.length; i += 1) {\n let seg = segs[i];\n let spanStart = slatCoords.computeDateTop(seg.start, colDate);\n let spanEnd = Math.max(spanStart + (eventMinHeight || 0), // :(\n slatCoords.computeDateTop(seg.end, colDate));\n vcoords.push({\n start: Math.round(spanStart),\n end: Math.round(spanEnd), //\n });\n }\n }\n return vcoords;\n}\nfunction computeFgSegPlacements(segs, segVCoords, // might not have for every seg\neventOrderStrict, eventMaxStack) {\n let segInputs = [];\n let dumbSegs = []; // segs without coords\n for (let i = 0; i < segs.length; i += 1) {\n let vcoords = segVCoords[i];\n if (vcoords) {\n segInputs.push({\n index: i,\n thickness: 1,\n span: vcoords,\n });\n }\n else {\n dumbSegs.push(segs[i]);\n }\n }\n let { segRects, hiddenGroups } = buildPositioning(segInputs, eventOrderStrict, eventMaxStack);\n let segPlacements = [];\n for (let segRect of segRects) {\n segPlacements.push({\n seg: segs[segRect.index],\n rect: segRect,\n });\n }\n for (let dumbSeg of dumbSegs) {\n segPlacements.push({ seg: dumbSeg, rect: null });\n }\n return { segPlacements, hiddenGroups };\n}\n\nconst DEFAULT_TIME_FORMAT = createFormatter({\n hour: 'numeric',\n minute: '2-digit',\n meridiem: false,\n});\nclass TimeColEvent extends BaseComponent {\n render() {\n return (createElement(StandardEvent, Object.assign({}, this.props, { elClasses: [\n 'fc-timegrid-event',\n 'fc-v-event',\n this.props.isShort && 'fc-timegrid-event-short',\n ], defaultTimeFormat: DEFAULT_TIME_FORMAT })));\n }\n}\n\nclass TimeCol extends BaseComponent {\n constructor() {\n super(...arguments);\n this.sortEventSegs = memoize(sortEventSegs);\n }\n // TODO: memoize event-placement?\n render() {\n let { props, context } = this;\n let { options } = context;\n let isSelectMirror = options.selectMirror;\n let mirrorSegs = // yuck\n (props.eventDrag && props.eventDrag.segs) ||\n (props.eventResize && props.eventResize.segs) ||\n (isSelectMirror && props.dateSelectionSegs) ||\n [];\n let interactionAffectedInstances = // TODO: messy way to compute this\n (props.eventDrag && props.eventDrag.affectedInstances) ||\n (props.eventResize && props.eventResize.affectedInstances) ||\n {};\n let sortedFgSegs = this.sortEventSegs(props.fgEventSegs, options.eventOrder);\n return (createElement(DayCellContainer, { elTag: \"td\", elRef: props.elRef, elClasses: [\n 'fc-timegrid-col',\n ...(props.extraClassNames || []),\n ], 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\" },\n createElement(\"div\", { className: \"fc-timegrid-col-bg\" },\n this.renderFillSegs(props.businessHourSegs, 'non-business'),\n this.renderFillSegs(props.bgEventSegs, 'bg-event'),\n this.renderFillSegs(props.dateSelectionSegs, 'highlight')),\n createElement(\"div\", { className: \"fc-timegrid-col-events\" }, this.renderFgSegs(sortedFgSegs, interactionAffectedInstances, false, false, false)),\n createElement(\"div\", { className: \"fc-timegrid-col-events\" }, this.renderFgSegs(mirrorSegs, {}, Boolean(props.eventDrag), Boolean(props.eventResize), Boolean(isSelectMirror))),\n createElement(\"div\", { className: \"fc-timegrid-now-indicator-container\" }, this.renderNowIndicator(props.nowIndicatorSegs)),\n hasCustomDayCellContent(options) && (createElement(InnerContent, { elTag: \"div\", elClasses: ['fc-timegrid-col-misc'] }))))));\n }\n renderFgSegs(sortedFgSegs, segIsInvisible, isDragging, isResizing, isDateSelecting) {\n let { props } = this;\n if (props.forPrint) {\n return renderPlainFgSegs(sortedFgSegs, props);\n }\n return this.renderPositionedFgSegs(sortedFgSegs, segIsInvisible, isDragging, isResizing, isDateSelecting);\n }\n renderPositionedFgSegs(segs, // if not mirror, needs to be sorted\n segIsInvisible, isDragging, isResizing, isDateSelecting) {\n let { eventMaxStack, eventShortHeight, eventOrderStrict, eventMinHeight } = this.context.options;\n let { date, slatCoords, eventSelection, todayRange, nowDate } = this.props;\n let isMirror = isDragging || isResizing || isDateSelecting;\n let segVCoords = computeSegVCoords(segs, date, slatCoords, eventMinHeight);\n let { segPlacements, hiddenGroups } = computeFgSegPlacements(segs, segVCoords, eventOrderStrict, eventMaxStack);\n return (createElement(Fragment, null,\n this.renderHiddenGroups(hiddenGroups, segs),\n segPlacements.map((segPlacement) => {\n let { seg, rect } = segPlacement;\n let instanceId = seg.eventRange.instance.instanceId;\n let isVisible = isMirror || Boolean(!segIsInvisible[instanceId] && rect);\n let vStyle = computeSegVStyle(rect && rect.span);\n let hStyle = (!isMirror && rect) ? this.computeSegHStyle(rect) : { left: 0, right: 0 };\n let isInset = Boolean(rect) && rect.stackForward > 0;\n let isShort = Boolean(rect) && (rect.span.end - rect.span.start) < eventShortHeight; // look at other places for this problem\n return (createElement(\"div\", { className: 'fc-timegrid-event-harness' +\n (isInset ? ' fc-timegrid-event-harness-inset' : ''), key: instanceId, style: Object.assign(Object.assign({ visibility: isVisible ? '' : 'hidden' }, vStyle), hStyle) },\n createElement(TimeColEvent, Object.assign({ seg: seg, isDragging: isDragging, isResizing: isResizing, isDateSelecting: isDateSelecting, isSelected: instanceId === eventSelection, isShort: isShort }, getSegMeta(seg, todayRange, nowDate)))));\n })));\n }\n // will already have eventMinHeight applied because segInputs already had it\n renderHiddenGroups(hiddenGroups, segs) {\n let { extraDateSpan, dateProfile, todayRange, nowDate, eventSelection, eventDrag, eventResize } = this.props;\n return (createElement(Fragment, null, hiddenGroups.map((hiddenGroup) => {\n let positionCss = computeSegVStyle(hiddenGroup.span);\n let hiddenSegs = compileSegsFromEntries(hiddenGroup.entries, segs);\n 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 }));\n })));\n }\n renderFillSegs(segs, fillType) {\n let { props, context } = this;\n let segVCoords = computeSegVCoords(segs, props.date, props.slatCoords, context.options.eventMinHeight); // don't assume all populated\n let children = segVCoords.map((vcoords, i) => {\n let seg = segs[i];\n return (createElement(\"div\", { key: buildEventRangeKey(seg.eventRange), className: \"fc-timegrid-bg-harness\", style: computeSegVStyle(vcoords) }, fillType === 'bg-event' ?\n createElement(BgEvent, Object.assign({ seg: seg }, getSegMeta(seg, props.todayRange, props.nowDate))) :\n renderFill(fillType)));\n });\n return createElement(Fragment, null, children);\n }\n renderNowIndicator(segs) {\n let { slatCoords, date } = this.props;\n if (!slatCoords) {\n return null;\n }\n return segs.map((seg, i) => (createElement(NowIndicatorContainer\n // key doesn't matter. will only ever be one\n , { \n // key doesn't matter. will only ever be one\n key: i, elClasses: ['fc-timegrid-now-indicator-line'], elStyle: {\n top: slatCoords.computeDateTop(seg.start, date),\n }, isAxis: false, date: date })));\n }\n computeSegHStyle(segHCoords) {\n let { isRtl, options } = this.context;\n let shouldOverlap = options.slotEventOverlap;\n let nearCoord = segHCoords.levelCoord; // the left side if LTR. the right side if RTL. floating-point\n let farCoord = segHCoords.levelCoord + segHCoords.thickness; // the right side if LTR. the left side if RTL. floating-point\n let left; // amount of space from left edge, a fraction of the total width\n let right; // amount of space from right edge, a fraction of the total width\n if (shouldOverlap) {\n // double the width, but don't go beyond the maximum forward coordinate (1.0)\n farCoord = Math.min(1, nearCoord + (farCoord - nearCoord) * 2);\n }\n if (isRtl) {\n left = 1 - farCoord;\n right = nearCoord;\n }\n else {\n left = nearCoord;\n right = 1 - farCoord;\n }\n let props = {\n zIndex: segHCoords.stackDepth + 1,\n left: left * 100 + '%',\n right: right * 100 + '%',\n };\n if (shouldOverlap && !segHCoords.stackForward) {\n // add padding to the edge so that forward stacked events don't cover the resizer's icon\n props[isRtl ? 'marginLeft' : 'marginRight'] = 10 * 2; // 10 is a guesstimate of the icon's width\n }\n return props;\n }\n}\nfunction renderPlainFgSegs(sortedFgSegs, { todayRange, nowDate, eventSelection, eventDrag, eventResize }) {\n let hiddenInstances = (eventDrag ? eventDrag.affectedInstances : null) ||\n (eventResize ? eventResize.affectedInstances : null) ||\n {};\n return (createElement(Fragment, null, sortedFgSegs.map((seg) => {\n let instanceId = seg.eventRange.instance.instanceId;\n return (createElement(\"div\", { key: instanceId, style: { visibility: hiddenInstances[instanceId] ? 'hidden' : '' } },\n createElement(TimeColEvent, Object.assign({ seg: seg, isDragging: false, isResizing: false, isDateSelecting: false, isSelected: instanceId === eventSelection, isShort: false }, getSegMeta(seg, todayRange, nowDate)))));\n })));\n}\nfunction computeSegVStyle(segVCoords) {\n if (!segVCoords) {\n return { top: '', bottom: '' };\n }\n return {\n top: segVCoords.start,\n bottom: -segVCoords.end,\n };\n}\nfunction compileSegsFromEntries(segEntries, allSegs) {\n return segEntries.map((segEntry) => allSegs[segEntry.index]);\n}\n\nclass TimeColsContent extends BaseComponent {\n constructor() {\n super(...arguments);\n this.splitFgEventSegs = memoize(splitSegsByCol);\n this.splitBgEventSegs = memoize(splitSegsByCol);\n this.splitBusinessHourSegs = memoize(splitSegsByCol);\n this.splitNowIndicatorSegs = memoize(splitSegsByCol);\n this.splitDateSelectionSegs = memoize(splitSegsByCol);\n this.splitEventDrag = memoize(splitInteractionByCol);\n this.splitEventResize = memoize(splitInteractionByCol);\n this.rootElRef = createRef();\n this.cellElRefs = new RefMap();\n }\n render() {\n let { props, context } = this;\n let nowIndicatorTop = context.options.nowIndicator &&\n props.slatCoords &&\n props.slatCoords.safeComputeTop(props.nowDate); // might return void\n let colCnt = props.cells.length;\n let fgEventSegsByRow = this.splitFgEventSegs(props.fgEventSegs, colCnt);\n let bgEventSegsByRow = this.splitBgEventSegs(props.bgEventSegs, colCnt);\n let businessHourSegsByRow = this.splitBusinessHourSegs(props.businessHourSegs, colCnt);\n let nowIndicatorSegsByRow = this.splitNowIndicatorSegs(props.nowIndicatorSegs, colCnt);\n let dateSelectionSegsByRow = this.splitDateSelectionSegs(props.dateSelectionSegs, colCnt);\n let eventDragByRow = this.splitEventDrag(props.eventDrag, colCnt);\n let eventResizeByRow = this.splitEventResize(props.eventResize, colCnt);\n return (createElement(\"div\", { className: \"fc-timegrid-cols\", ref: this.rootElRef },\n createElement(\"table\", { role: \"presentation\", style: {\n minWidth: props.tableMinWidth,\n width: props.clientWidth,\n } },\n props.tableColGroupNode,\n createElement(\"tbody\", { role: \"presentation\" },\n createElement(\"tr\", { role: \"row\" },\n props.axis && (createElement(\"td\", { \"aria-hidden\": true, className: \"fc-timegrid-col fc-timegrid-axis\" },\n createElement(\"div\", { className: \"fc-timegrid-col-frame\" },\n 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 })))))),\n 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 }))))))));\n }\n componentDidMount() {\n this.updateCoords();\n }\n componentDidUpdate() {\n this.updateCoords();\n }\n updateCoords() {\n let { props } = this;\n if (props.onColCoords &&\n props.clientWidth !== null // means sizing has stabilized\n ) {\n props.onColCoords(new PositionCache(this.rootElRef.current, collectCellEls(this.cellElRefs.currentMap, props.cells), true, // horizontal\n false));\n }\n }\n}\nfunction collectCellEls(elMap, cells) {\n return cells.map((cell) => elMap[cell.key]);\n}\n\n/* A component that renders one or more columns of vertical time slots\n----------------------------------------------------------------------------------------------------------------------*/\nclass TimeCols extends DateComponent {\n constructor() {\n super(...arguments);\n this.processSlotOptions = memoize(processSlotOptions);\n this.state = {\n slatCoords: null,\n };\n this.handleRootEl = (el) => {\n if (el) {\n this.context.registerInteractiveComponent(this, {\n el,\n isHitComboAllowed: this.props.isHitComboAllowed,\n });\n }\n else {\n this.context.unregisterInteractiveComponent(this);\n }\n };\n this.handleScrollRequest = (request) => {\n let { onScrollTopRequest } = this.props;\n let { slatCoords } = this.state;\n if (onScrollTopRequest && slatCoords) {\n if (request.time) {\n let top = slatCoords.computeTimeTop(request.time);\n top = Math.ceil(top); // zoom can give weird floating-point values. rather scroll a little bit further\n if (top) {\n top += 1; // to overcome top border that slots beyond the first have. looks better\n }\n onScrollTopRequest(top);\n }\n return true;\n }\n return false;\n };\n this.handleColCoords = (colCoords) => {\n this.colCoords = colCoords;\n };\n this.handleSlatCoords = (slatCoords) => {\n this.setState({ slatCoords });\n if (this.props.onSlatCoords) {\n this.props.onSlatCoords(slatCoords);\n }\n };\n }\n render() {\n let { props, state } = this;\n return (createElement(\"div\", { className: \"fc-timegrid-body\", ref: this.handleRootEl, style: {\n // these props are important to give this wrapper correct dimensions for interactions\n // TODO: if we set it here, can we avoid giving to inner tables?\n width: props.clientWidth,\n minWidth: props.tableMinWidth,\n } },\n 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 }),\n 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 })));\n }\n componentDidMount() {\n this.scrollResponder = this.context.createScrollResponder(this.handleScrollRequest);\n }\n componentDidUpdate(prevProps) {\n this.scrollResponder.update(prevProps.dateProfile !== this.props.dateProfile);\n }\n componentWillUnmount() {\n this.scrollResponder.detach();\n }\n queryHit(positionLeft, positionTop) {\n let { dateEnv, options } = this.context;\n let { colCoords } = this;\n let { dateProfile } = this.props;\n let { slatCoords } = this.state;\n let { snapDuration, snapsPerSlot } = this.processSlotOptions(this.props.slotDuration, options.snapDuration);\n let colIndex = colCoords.leftToIndex(positionLeft);\n let slatIndex = slatCoords.positions.topToIndex(positionTop);\n if (colIndex != null && slatIndex != null) {\n let cell = this.props.cells[colIndex];\n let slatTop = slatCoords.positions.tops[slatIndex];\n let slatHeight = slatCoords.positions.getHeight(slatIndex);\n let partial = (positionTop - slatTop) / slatHeight; // floating point number between 0 and 1\n let localSnapIndex = Math.floor(partial * snapsPerSlot); // the snap # relative to start of slat\n let snapIndex = slatIndex * snapsPerSlot + localSnapIndex;\n let dayDate = this.props.cells[colIndex].date;\n let time = addDurations(dateProfile.slotMinTime, multiplyDuration(snapDuration, snapIndex));\n let start = dateEnv.add(dayDate, time);\n let end = dateEnv.add(start, snapDuration);\n return {\n dateProfile,\n dateSpan: Object.assign({ range: { start, end }, allDay: false }, cell.extraDateSpan),\n dayEl: colCoords.els[colIndex],\n rect: {\n left: colCoords.lefts[colIndex],\n right: colCoords.rights[colIndex],\n top: slatTop,\n bottom: slatTop + slatHeight,\n },\n layer: 0,\n };\n }\n return null;\n }\n}\nfunction processSlotOptions(slotDuration, snapDurationOverride) {\n let snapDuration = snapDurationOverride || slotDuration;\n let snapsPerSlot = wholeDivideDurations(slotDuration, snapDuration);\n if (snapsPerSlot === null) {\n snapDuration = slotDuration;\n snapsPerSlot = 1;\n // TODO: say warning?\n }\n return { snapDuration, snapsPerSlot };\n}\n\nclass DayTimeColsSlicer extends Slicer {\n sliceRange(range, dayRanges) {\n let segs = [];\n for (let col = 0; col < dayRanges.length; col += 1) {\n let segRange = intersectRanges(range, dayRanges[col]);\n if (segRange) {\n segs.push({\n start: segRange.start,\n end: segRange.end,\n isStart: segRange.start.valueOf() === range.start.valueOf(),\n isEnd: segRange.end.valueOf() === range.end.valueOf(),\n col,\n });\n }\n }\n return segs;\n }\n}\n\nclass DayTimeCols extends DateComponent {\n constructor() {\n super(...arguments);\n this.buildDayRanges = memoize(buildDayRanges);\n this.slicer = new DayTimeColsSlicer();\n this.timeColsRef = createRef();\n }\n render() {\n let { props, context } = this;\n let { dateProfile, dayTableModel } = props;\n let isNowIndicator = context.options.nowIndicator;\n let dayRanges = this.buildDayRanges(dayTableModel, dateProfile, context.dateEnv);\n // give it the first row of cells\n // TODO: would move this further down hierarchy, but sliceNowDate needs it\n return (createElement(NowTimer, { unit: isNowIndicator ? '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: isNowIndicator && this.slicer.sliceNowDate(nowDate, context, dayRanges), todayRange: todayRange, onScrollTopRequest: props.onScrollTopRequest, onSlatCoords: props.onSlatCoords })))));\n }\n}\nfunction buildDayRanges(dayTableModel, dateProfile, dateEnv) {\n let ranges = [];\n for (let date of dayTableModel.headerDates) {\n ranges.push({\n start: dateEnv.add(date, dateProfile.slotMinTime),\n end: dateEnv.add(date, dateProfile.slotMaxTime),\n });\n }\n return ranges;\n}\n\n// potential nice values for the slot-duration and interval-duration\n// from largest to smallest\nconst STOCK_SUB_DURATIONS = [\n { hours: 1 },\n { minutes: 30 },\n { minutes: 15 },\n { seconds: 30 },\n { seconds: 15 },\n];\nfunction buildSlatMetas(slotMinTime, slotMaxTime, explicitLabelInterval, slotDuration, dateEnv) {\n let dayStart = new Date(0);\n let slatTime = slotMinTime;\n let slatIterator = createDuration(0);\n let labelInterval = explicitLabelInterval || computeLabelInterval(slotDuration);\n let metas = [];\n while (asRoughMs(slatTime) < asRoughMs(slotMaxTime)) {\n let date = dateEnv.add(dayStart, slatTime);\n let isLabeled = wholeDivideDurations(slatIterator, labelInterval) !== null;\n metas.push({\n date,\n time: slatTime,\n key: date.toISOString(),\n isoTimeStr: formatIsoTimeString(date),\n isLabeled,\n });\n slatTime = addDurations(slatTime, slotDuration);\n slatIterator = addDurations(slatIterator, slotDuration);\n }\n return metas;\n}\n// Computes an automatic value for slotLabelInterval\nfunction computeLabelInterval(slotDuration) {\n let i;\n let labelInterval;\n let slotsPerLabel;\n // find the smallest stock label interval that results in more than one slots-per-label\n for (i = STOCK_SUB_DURATIONS.length - 1; i >= 0; i -= 1) {\n labelInterval = createDuration(STOCK_SUB_DURATIONS[i]);\n slotsPerLabel = wholeDivideDurations(labelInterval, slotDuration);\n if (slotsPerLabel !== null && slotsPerLabel > 1) {\n return labelInterval;\n }\n }\n return slotDuration; // fall back\n}\n\nclass DayTimeColsView extends TimeColsView {\n constructor() {\n super(...arguments);\n this.buildTimeColsModel = memoize(buildTimeColsModel);\n this.buildSlatMetas = memoize(buildSlatMetas);\n }\n render() {\n let { options, dateEnv, dateProfileGenerator } = this.context;\n let { props } = this;\n let { dateProfile } = props;\n let dayTableModel = this.buildTimeColsModel(dateProfile, dateProfileGenerator);\n let splitProps = this.allDaySplitter.splitProps(props);\n let slatMetas = this.buildSlatMetas(dateProfile.slotMinTime, dateProfile.slotMaxTime, options.slotLabelInterval, options.slotDuration, dateEnv);\n let { dayMinWidth } = options;\n let hasAttachedAxis = !dayMinWidth;\n let hasDetachedAxis = dayMinWidth;\n let headerContent = options.dayHeaders && (createElement(DayHeader, { dates: dayTableModel.headerDates, dateProfile: dateProfile, datesRepDistinctDays: true, renderIntro: hasAttachedAxis ? this.renderHeadAxis : null }));\n 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()))));\n 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 })));\n return hasDetachedAxis\n ? this.renderHScrollLayout(headerContent, allDayContent, timeGridContent, dayTableModel.colCnt, dayMinWidth, slatMetas, this.state.slatCoords)\n : this.renderSimpleLayout(headerContent, allDayContent, timeGridContent);\n }\n}\nfunction buildTimeColsModel(dateProfile, dateProfileGenerator) {\n let daySeries = new DaySeriesModel(dateProfile.renderRange, dateProfileGenerator);\n return new DayTableModel(daySeries, false);\n}\n\nexport { DayTimeCols, DayTimeColsSlicer, DayTimeColsView, TimeCols, TimeColsSlatsCoords, TimeColsView, buildDayRanges, buildSlatMetas, buildTimeColsModel };\n","import { createPlugin } from '@fullcalendar/core/index.js';\nimport { DayTimeColsView } from './internal.js';\nimport { injectStyles } from '@fullcalendar/core/internal.js';\nimport '@fullcalendar/core/preact.js';\nimport '@fullcalendar/daygrid/internal.js';\n\nconst OPTION_REFINERS = {\n allDaySlot: Boolean,\n};\n\nvar css_248z = \"\\n/*\\nA VERTICAL event\\n*/\\n\\n.fc-v-event { /* allowed to be top-level */\\n display: block;\\n border: 1px solid var(--fc-event-border-color);\\n background-color: var(--fc-event-bg-color)\\n\\n}\\n\\n.fc-v-event .fc-event-main {\\n color: var(--fc-event-text-color);\\n height: 100%;\\n }\\n\\n.fc-v-event .fc-event-main-frame {\\n height: 100%;\\n display: flex;\\n flex-direction: column;\\n }\\n\\n.fc-v-event .fc-event-time {\\n flex-grow: 0;\\n flex-shrink: 0;\\n max-height: 100%;\\n overflow: hidden;\\n }\\n\\n.fc-v-event .fc-event-title-container { /* a container for the sticky cushion */\\n flex-grow: 1;\\n flex-shrink: 1;\\n min-height: 0; /* important for allowing to shrink all the way */\\n }\\n\\n.fc-v-event .fc-event-title { /* will have fc-sticky on it */\\n top: 0;\\n bottom: 0;\\n max-height: 100%; /* clip overflow */\\n overflow: hidden;\\n }\\n\\n.fc-v-event:not(.fc-event-start) {\\n border-top-width: 0;\\n border-top-left-radius: 0;\\n border-top-right-radius: 0;\\n }\\n\\n.fc-v-event:not(.fc-event-end) {\\n border-bottom-width: 0;\\n border-bottom-left-radius: 0;\\n border-bottom-right-radius: 0;\\n }\\n\\n.fc-v-event.fc-event-selected:before {\\n /* expand hit area */\\n left: -10px;\\n right: -10px;\\n }\\n\\n.fc-v-event {\\n\\n /* resizer (mouse AND touch) */\\n\\n}\\n\\n.fc-v-event .fc-event-resizer-start {\\n cursor: n-resize;\\n }\\n\\n.fc-v-event .fc-event-resizer-end {\\n cursor: s-resize;\\n }\\n\\n.fc-v-event {\\n\\n /* resizer for MOUSE */\\n\\n}\\n\\n.fc-v-event:not(.fc-event-selected) .fc-event-resizer {\\n height: var(--fc-event-resizer-thickness);\\n left: 0;\\n right: 0;\\n }\\n\\n.fc-v-event:not(.fc-event-selected) .fc-event-resizer-start {\\n top: calc(var(--fc-event-resizer-thickness) / -2);\\n }\\n\\n.fc-v-event:not(.fc-event-selected) .fc-event-resizer-end {\\n bottom: calc(var(--fc-event-resizer-thickness) / -2);\\n }\\n\\n.fc-v-event {\\n\\n /* resizer for TOUCH (when event is \\\"selected\\\") */\\n\\n}\\n\\n.fc-v-event.fc-event-selected .fc-event-resizer {\\n left: 50%;\\n margin-left: calc(var(--fc-event-resizer-dot-total-width) / -2);\\n }\\n\\n.fc-v-event.fc-event-selected .fc-event-resizer-start {\\n top: calc(var(--fc-event-resizer-dot-total-width) / -2);\\n }\\n\\n.fc-v-event.fc-event-selected .fc-event-resizer-end {\\n bottom: calc(var(--fc-event-resizer-dot-total-width) / -2);\\n }\\n.fc .fc-timegrid .fc-daygrid-body { /* the all-day daygrid within the timegrid view */\\n z-index: 2; /* put above the timegrid-body so that more-popover is above everything. TODO: better solution */\\n }\\n.fc .fc-timegrid-divider {\\n padding: 0 0 2px; /* browsers get confused when you set height. use padding instead */\\n }\\n.fc .fc-timegrid-body {\\n position: relative;\\n z-index: 1; /* scope the z-indexes of slots and cols */\\n min-height: 100%; /* fill height always, even when slat table doesn't grow */\\n }\\n.fc .fc-timegrid-axis-chunk { /* for advanced ScrollGrid */\\n position: relative /* offset parent for now-indicator-container */\\n\\n }\\n.fc .fc-timegrid-axis-chunk > table {\\n position: relative;\\n z-index: 1; /* above the now-indicator-container */\\n }\\n.fc .fc-timegrid-slots {\\n position: relative;\\n z-index: 1;\\n }\\n.fc .fc-timegrid-slot { /* a <td> */\\n height: 1.5em;\\n border-bottom: 0 /* each cell owns its top border */\\n }\\n.fc .fc-timegrid-slot:empty:before {\\n content: '\\\\00a0'; /* make sure there's at least an empty space to create height for height syncing */\\n }\\n.fc .fc-timegrid-slot-minor {\\n border-top-style: dotted;\\n }\\n.fc .fc-timegrid-slot-label-cushion {\\n display: inline-block;\\n white-space: nowrap;\\n }\\n.fc .fc-timegrid-slot-label {\\n vertical-align: middle; /* vertical align the slots */\\n }\\n.fc {\\n\\n\\n /* slots AND axis cells (top-left corner of view including the \\\"all-day\\\" text) */\\n\\n}\\n.fc .fc-timegrid-axis-cushion,\\n .fc .fc-timegrid-slot-label-cushion {\\n padding: 0 4px;\\n }\\n.fc {\\n\\n\\n /* axis cells (top-left corner of view including the \\\"all-day\\\" text) */\\n /* vertical align is more complicated, uses flexbox */\\n\\n}\\n.fc .fc-timegrid-axis-frame-liquid {\\n height: 100%; /* will need liquid-hack in FF */\\n }\\n.fc .fc-timegrid-axis-frame {\\n overflow: hidden;\\n display: flex;\\n align-items: center; /* vertical align */\\n justify-content: flex-end; /* horizontal align. matches text-align below */\\n }\\n.fc .fc-timegrid-axis-cushion {\\n max-width: 60px; /* limits the width of the \\\"all-day\\\" text */\\n flex-shrink: 0; /* allows text to expand how it normally would, regardless of constrained width */\\n }\\n.fc-direction-ltr .fc-timegrid-slot-label-frame {\\n text-align: right;\\n }\\n.fc-direction-rtl .fc-timegrid-slot-label-frame {\\n text-align: left;\\n }\\n.fc-liquid-hack .fc-timegrid-axis-frame-liquid {\\n height: auto;\\n position: absolute;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n }\\n.fc .fc-timegrid-col.fc-day-today {\\n background-color: var(--fc-today-bg-color);\\n }\\n.fc .fc-timegrid-col-frame {\\n min-height: 100%; /* liquid-hack is below */\\n position: relative;\\n }\\n.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame {\\n height: auto;\\n position: absolute;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n }\\n.fc-media-screen .fc-timegrid-cols {\\n position: absolute; /* no z-index. children will decide and go above slots */\\n top: 0;\\n left: 0;\\n right: 0;\\n bottom: 0\\n }\\n.fc-media-screen .fc-timegrid-cols > table {\\n height: 100%;\\n }\\n.fc-media-screen .fc-timegrid-col-bg,\\n .fc-media-screen .fc-timegrid-col-events,\\n .fc-media-screen .fc-timegrid-now-indicator-container {\\n position: absolute;\\n top: 0;\\n left: 0;\\n right: 0;\\n }\\n.fc {\\n\\n /* bg */\\n\\n}\\n.fc .fc-timegrid-col-bg {\\n z-index: 2; /* TODO: kill */\\n }\\n.fc .fc-timegrid-col-bg .fc-non-business { z-index: 1 }\\n.fc .fc-timegrid-col-bg .fc-bg-event { z-index: 2 }\\n.fc .fc-timegrid-col-bg .fc-highlight { z-index: 3 }\\n.fc .fc-timegrid-bg-harness {\\n position: absolute; /* top/bottom will be set by JS */\\n left: 0;\\n right: 0;\\n }\\n.fc {\\n\\n /* fg events */\\n /* (the mirror segs are put into a separate container with same classname, */\\n /* and they must be after the normal seg container to appear at a higher z-index) */\\n\\n}\\n.fc .fc-timegrid-col-events {\\n z-index: 3;\\n /* child event segs have z-indexes that are scoped within this div */\\n }\\n.fc {\\n\\n /* now indicator */\\n\\n}\\n.fc .fc-timegrid-now-indicator-container {\\n bottom: 0;\\n overflow: hidden; /* don't let overflow of lines/arrows cause unnecessary scrolling */\\n /* z-index is set on the individual elements */\\n }\\n.fc-direction-ltr .fc-timegrid-col-events {\\n margin: 0 2.5% 0 2px;\\n }\\n.fc-direction-rtl .fc-timegrid-col-events {\\n margin: 0 2px 0 2.5%;\\n }\\n.fc-timegrid-event-harness {\\n position: absolute /* top/left/right/bottom will all be set by JS */\\n}\\n.fc-timegrid-event-harness > .fc-timegrid-event {\\n position: absolute; /* absolute WITHIN the harness */\\n top: 0; /* for when not yet positioned */\\n bottom: 0; /* \\\" */\\n left: 0;\\n right: 0;\\n }\\n.fc-timegrid-event-harness-inset .fc-timegrid-event,\\n.fc-timegrid-event.fc-event-mirror,\\n.fc-timegrid-more-link {\\n box-shadow: 0px 0px 0px 1px var(--fc-page-bg-color);\\n}\\n.fc-timegrid-event,\\n.fc-timegrid-more-link { /* events need to be root */\\n font-size: var(--fc-small-font-size);\\n border-radius: 3px;\\n}\\n.fc-timegrid-event { /* events need to be root */\\n margin-bottom: 1px /* give some space from bottom */\\n}\\n.fc-timegrid-event .fc-event-main {\\n padding: 1px 1px 0;\\n }\\n.fc-timegrid-event .fc-event-time {\\n white-space: nowrap;\\n font-size: var(--fc-small-font-size);\\n margin-bottom: 1px;\\n }\\n.fc-timegrid-event-short .fc-event-main-frame {\\n flex-direction: row;\\n overflow: hidden;\\n }\\n.fc-timegrid-event-short .fc-event-time:after {\\n content: '\\\\00a0-\\\\00a0'; /* dash surrounded by non-breaking spaces */\\n }\\n.fc-timegrid-event-short .fc-event-title {\\n font-size: var(--fc-small-font-size)\\n }\\n.fc-timegrid-more-link { /* does NOT inherit from fc-timegrid-event */\\n position: absolute;\\n z-index: 9999; /* hack */\\n color: var(--fc-more-link-text-color);\\n background: var(--fc-more-link-bg-color);\\n cursor: pointer;\\n margin-bottom: 1px; /* match space below fc-timegrid-event */\\n}\\n.fc-timegrid-more-link-inner { /* has fc-sticky */\\n padding: 3px 2px;\\n top: 0;\\n}\\n.fc-direction-ltr .fc-timegrid-more-link {\\n right: 0;\\n }\\n.fc-direction-rtl .fc-timegrid-more-link {\\n left: 0;\\n }\\n.fc {\\n\\n /* line */\\n\\n}\\n.fc .fc-timegrid-now-indicator-line {\\n position: absolute;\\n z-index: 4;\\n left: 0;\\n right: 0;\\n border-style: solid;\\n border-color: var(--fc-now-indicator-color);\\n border-width: 1px 0 0;\\n }\\n.fc {\\n\\n /* arrow */\\n\\n}\\n.fc .fc-timegrid-now-indicator-arrow {\\n position: absolute;\\n z-index: 4;\\n margin-top: -5px; /* vertically center on top coordinate */\\n border-style: solid;\\n border-color: var(--fc-now-indicator-color);\\n }\\n.fc-direction-ltr .fc-timegrid-now-indicator-arrow {\\n left: 0;\\n\\n /* triangle pointing right. TODO: mixin */\\n border-width: 5px 0 5px 6px;\\n border-top-color: transparent;\\n border-bottom-color: transparent;\\n }\\n.fc-direction-rtl .fc-timegrid-now-indicator-arrow {\\n right: 0;\\n\\n /* triangle pointing left. TODO: mixin */\\n border-width: 5px 6px 5px 0;\\n border-top-color: transparent;\\n border-bottom-color: transparent;\\n }\\n\";\ninjectStyles(css_248z);\n\nvar index = createPlugin({\n name: '@fullcalendar/timegrid',\n initialView: 'timeGridWeek',\n optionRefiners: OPTION_REFINERS,\n views: {\n timeGrid: {\n component: DayTimeColsView,\n usesMinMaxTime: true,\n allDaySlot: true,\n slotDuration: '00:30:00',\n slotEventOverlap: true, // a bad name. confused with overlap/constraint system\n },\n timeGridDay: {\n type: 'timeGrid',\n duration: { days: 1 },\n },\n timeGridWeek: {\n type: 'timeGrid',\n duration: { weeks: 1 },\n },\n },\n});\n\nexport { index as default };\n","import { BaseComponent, getUniqueDomId, getDateMeta, buildNavLinkAttrs, ContentContainer, getDayClassNames, formatDayString, createFormatter, EventContainer, getSegAnchorAttrs, isMultiDayRange, buildSegTimeText, DateComponent, memoize, ViewContainer, Scroller, NowTimer, sortEventSegs, getSegMeta, sliceEventStore, intersectRanges, startOfDay, addDays } from '@fullcalendar/core/internal.js';\nimport { createElement, Fragment } from '@fullcalendar/core/preact.js';\n\nclass ListViewHeaderRow extends BaseComponent {\n constructor() {\n super(...arguments);\n this.state = {\n textId: getUniqueDomId(),\n };\n }\n render() {\n let { theme, dateEnv, options, viewApi } = this.context;\n let { cellId, dayDate, todayRange } = this.props;\n let { textId } = this.state;\n let dayMeta = getDateMeta(dayDate, todayRange);\n // will ever be falsy?\n let text = options.listDayFormat ? dateEnv.format(dayDate, options.listDayFormat) : '';\n // will ever be falsy? also, BAD NAME \"alt\"\n let sideText = options.listDaySideFormat ? dateEnv.format(dayDate, options.listDaySideFormat) : '';\n let renderProps = Object.assign({ date: dateEnv.toDate(dayDate), view: viewApi, textId,\n text,\n sideText, navLinkAttrs: buildNavLinkAttrs(this.context, dayDate), sideNavLinkAttrs: buildNavLinkAttrs(this.context, dayDate, 'day', false) }, dayMeta);\n // TODO: make a reusable HOC for dayHeader (used in daygrid/timegrid too)\n return (createElement(ContentContainer, { elTag: \"tr\", elClasses: [\n 'fc-list-day',\n ...getDayClassNames(dayMeta, theme),\n ], elAttrs: {\n 'data-date': formatDayString(dayDate),\n }, renderProps: renderProps, generatorName: \"dayHeaderContent\", generator: options.dayHeaderContent || renderInnerContent, classNameGenerator: options.dayHeaderClassNames, didMount: options.dayHeaderDidMount, willUnmount: options.dayHeaderWillUnmount }, (InnerContent) => ( // TODO: force-hide top border based on :first-child\n createElement(\"th\", { scope: \"colgroup\", colSpan: 3, id: cellId, \"aria-labelledby\": textId },\n createElement(InnerContent, { elTag: \"div\", elClasses: [\n 'fc-list-day-cushion',\n theme.getClass('tableCellShaded'),\n ] })))));\n }\n}\nfunction renderInnerContent(props) {\n return (createElement(Fragment, null,\n props.text && (createElement(\"a\", Object.assign({ id: props.textId, className: \"fc-list-day-text\" }, props.navLinkAttrs), props.text)),\n props.sideText && ( /* not keyboard tabbable */createElement(\"a\", Object.assign({ \"aria-hidden\": true, className: \"fc-list-day-side-text\" }, props.sideNavLinkAttrs), props.sideText))));\n}\n\nconst DEFAULT_TIME_FORMAT = createFormatter({\n hour: 'numeric',\n minute: '2-digit',\n meridiem: 'short',\n});\nclass ListViewEventRow extends BaseComponent {\n render() {\n let { props, context } = this;\n let { options } = context;\n let { seg, timeHeaderId, eventHeaderId, dateHeaderId } = props;\n let timeFormat = options.eventTimeFormat || DEFAULT_TIME_FORMAT;\n return (createElement(EventContainer, Object.assign({}, props, { elTag: \"tr\", elClasses: [\n 'fc-list-event',\n seg.eventRange.def.url && 'fc-event-forced-url',\n ], defaultGenerator: () => renderEventInnerContent(seg, context) /* weird */, seg: seg, timeText: \"\", disableDragging: true, disableResizing: true }), (InnerContent, eventContentArg) => (createElement(Fragment, null,\n buildTimeContent(seg, timeFormat, context, timeHeaderId, dateHeaderId),\n createElement(\"td\", { \"aria-hidden\": true, className: \"fc-list-event-graphic\" },\n createElement(\"span\", { className: \"fc-list-event-dot\", style: {\n borderColor: eventContentArg.borderColor || eventContentArg.backgroundColor,\n } })),\n createElement(InnerContent, { elTag: \"td\", elClasses: ['fc-list-event-title'], elAttrs: { headers: `${eventHeaderId} ${dateHeaderId}` } })))));\n }\n}\nfunction renderEventInnerContent(seg, context) {\n let interactiveAttrs = getSegAnchorAttrs(seg, context);\n return (createElement(\"a\", Object.assign({}, interactiveAttrs), seg.eventRange.def.title));\n}\nfunction buildTimeContent(seg, timeFormat, context, timeHeaderId, dateHeaderId) {\n let { options } = context;\n if (options.displayEventTime !== false) {\n let eventDef = seg.eventRange.def;\n let eventInstance = seg.eventRange.instance;\n let doAllDay = false;\n let timeText;\n if (eventDef.allDay) {\n doAllDay = true;\n }\n else if (isMultiDayRange(seg.eventRange.range)) { // TODO: use (!isStart || !isEnd) instead?\n if (seg.isStart) {\n timeText = buildSegTimeText(seg, timeFormat, context, null, null, eventInstance.range.start, seg.end);\n }\n else if (seg.isEnd) {\n timeText = buildSegTimeText(seg, timeFormat, context, null, null, seg.start, eventInstance.range.end);\n }\n else {\n doAllDay = true;\n }\n }\n else {\n timeText = buildSegTimeText(seg, timeFormat, context);\n }\n if (doAllDay) {\n let renderProps = {\n text: context.options.allDayText,\n view: context.viewApi,\n };\n return (createElement(ContentContainer, { elTag: \"td\", elClasses: ['fc-list-event-time'], elAttrs: {\n headers: `${timeHeaderId} ${dateHeaderId}`,\n }, renderProps: renderProps, generatorName: \"allDayContent\", generator: options.allDayContent || renderAllDayInner, classNameGenerator: options.allDayClassNames, didMount: options.allDayDidMount, willUnmount: options.allDayWillUnmount }));\n }\n return (createElement(\"td\", { className: \"fc-list-event-time\" }, timeText));\n }\n return null;\n}\nfunction renderAllDayInner(renderProps) {\n return renderProps.text;\n}\n\n/*\nResponsible for the scroller, and forwarding event-related actions into the \"grid\".\n*/\nclass ListView extends DateComponent {\n constructor() {\n super(...arguments);\n this.computeDateVars = memoize(computeDateVars);\n this.eventStoreToSegs = memoize(this._eventStoreToSegs);\n this.state = {\n timeHeaderId: getUniqueDomId(),\n eventHeaderId: getUniqueDomId(),\n dateHeaderIdRoot: getUniqueDomId(),\n };\n this.setRootEl = (rootEl) => {\n if (rootEl) {\n this.context.registerInteractiveComponent(this, {\n el: rootEl,\n });\n }\n else {\n this.context.unregisterInteractiveComponent(this);\n }\n };\n }\n render() {\n let { props, context } = this;\n let { dayDates, dayRanges } = this.computeDateVars(props.dateProfile);\n let eventSegs = this.eventStoreToSegs(props.eventStore, props.eventUiBases, dayRanges);\n return (createElement(ViewContainer, { elRef: this.setRootEl, elClasses: [\n 'fc-list',\n context.theme.getClass('table'),\n context.options.stickyHeaderDates !== false ?\n 'fc-list-sticky' :\n '',\n ], viewSpec: context.viewSpec },\n createElement(Scroller, { liquid: !props.isHeightAuto, overflowX: props.isHeightAuto ? 'visible' : 'hidden', overflowY: props.isHeightAuto ? 'visible' : 'auto' }, eventSegs.length > 0 ?\n this.renderSegList(eventSegs, dayDates) :\n this.renderEmptyMessage())));\n }\n renderEmptyMessage() {\n let { options, viewApi } = this.context;\n let renderProps = {\n text: options.noEventsText,\n view: viewApi,\n };\n return (createElement(ContentContainer, { elTag: \"div\", elClasses: ['fc-list-empty'], renderProps: renderProps, generatorName: \"noEventsContent\", generator: options.noEventsContent || renderNoEventsInner, classNameGenerator: options.noEventsClassNames, didMount: options.noEventsDidMount, willUnmount: options.noEventsWillUnmount }, (InnerContent) => (createElement(InnerContent, { elTag: \"div\", elClasses: ['fc-list-empty-cushion'] }))));\n }\n renderSegList(allSegs, dayDates) {\n let { theme, options } = this.context;\n let { timeHeaderId, eventHeaderId, dateHeaderIdRoot } = this.state;\n let segsByDay = groupSegsByDay(allSegs); // sparse array\n return (createElement(NowTimer, { unit: \"day\" }, (nowDate, todayRange) => {\n let innerNodes = [];\n for (let dayIndex = 0; dayIndex < segsByDay.length; dayIndex += 1) {\n let daySegs = segsByDay[dayIndex];\n if (daySegs) { // sparse array, so might be undefined\n let dayStr = formatDayString(dayDates[dayIndex]);\n let dateHeaderId = dateHeaderIdRoot + '-' + dayStr;\n // append a day header\n innerNodes.push(createElement(ListViewHeaderRow, { key: dayStr, cellId: dateHeaderId, dayDate: dayDates[dayIndex], todayRange: todayRange }));\n daySegs = sortEventSegs(daySegs, options.eventOrder);\n for (let seg of daySegs) {\n innerNodes.push(createElement(ListViewEventRow, Object.assign({ key: dayStr + ':' + seg.eventRange.instance.instanceId /* are multiple segs for an instanceId */, seg: seg, isDragging: false, isResizing: false, isDateSelecting: false, isSelected: false, timeHeaderId: timeHeaderId, eventHeaderId: eventHeaderId, dateHeaderId: dateHeaderId }, getSegMeta(seg, todayRange, nowDate))));\n }\n }\n }\n return (createElement(\"table\", { className: 'fc-list-table ' + theme.getClass('table') },\n createElement(\"thead\", null,\n createElement(\"tr\", null,\n createElement(\"th\", { scope: \"col\", id: timeHeaderId }, options.timeHint),\n createElement(\"th\", { scope: \"col\", \"aria-hidden\": true }),\n createElement(\"th\", { scope: \"col\", id: eventHeaderId }, options.eventHint))),\n createElement(\"tbody\", null, innerNodes)));\n }));\n }\n _eventStoreToSegs(eventStore, eventUiBases, dayRanges) {\n return this.eventRangesToSegs(sliceEventStore(eventStore, eventUiBases, this.props.dateProfile.activeRange, this.context.options.nextDayThreshold).fg, dayRanges);\n }\n eventRangesToSegs(eventRanges, dayRanges) {\n let segs = [];\n for (let eventRange of eventRanges) {\n segs.push(...this.eventRangeToSegs(eventRange, dayRanges));\n }\n return segs;\n }\n eventRangeToSegs(eventRange, dayRanges) {\n let { dateEnv } = this.context;\n let { nextDayThreshold } = this.context.options;\n let range = eventRange.range;\n let allDay = eventRange.def.allDay;\n let dayIndex;\n let segRange;\n let seg;\n let segs = [];\n for (dayIndex = 0; dayIndex < dayRanges.length; dayIndex += 1) {\n segRange = intersectRanges(range, dayRanges[dayIndex]);\n if (segRange) {\n seg = {\n component: this,\n eventRange,\n start: segRange.start,\n end: segRange.end,\n isStart: eventRange.isStart && segRange.start.valueOf() === range.start.valueOf(),\n isEnd: eventRange.isEnd && segRange.end.valueOf() === range.end.valueOf(),\n dayIndex,\n };\n segs.push(seg);\n // detect when range won't go fully into the next day,\n // and mutate the latest seg to the be the end.\n if (!seg.isEnd && !allDay &&\n dayIndex + 1 < dayRanges.length &&\n range.end <\n dateEnv.add(dayRanges[dayIndex + 1].start, nextDayThreshold)) {\n seg.end = range.end;\n seg.isEnd = true;\n break;\n }\n }\n }\n return segs;\n }\n}\nfunction renderNoEventsInner(renderProps) {\n return renderProps.text;\n}\nfunction computeDateVars(dateProfile) {\n let dayStart = startOfDay(dateProfile.renderRange.start);\n let viewEnd = dateProfile.renderRange.end;\n let dayDates = [];\n let dayRanges = [];\n while (dayStart < viewEnd) {\n dayDates.push(dayStart);\n dayRanges.push({\n start: dayStart,\n end: addDays(dayStart, 1),\n });\n dayStart = addDays(dayStart, 1);\n }\n return { dayDates, dayRanges };\n}\n// Returns a sparse array of arrays, segs grouped by their dayIndex\nfunction groupSegsByDay(segs) {\n let segsByDay = []; // sparse array\n let i;\n let seg;\n for (i = 0; i < segs.length; i += 1) {\n seg = segs[i];\n (segsByDay[seg.dayIndex] || (segsByDay[seg.dayIndex] = []))\n .push(seg);\n }\n return segsByDay;\n}\n\nexport { ListView };\n","import { createPlugin } from '@fullcalendar/core/index.js';\nimport { ListView } from './internal.js';\nimport { identity, createFormatter, injectStyles } from '@fullcalendar/core/internal.js';\nimport '@fullcalendar/core/preact.js';\n\nconst OPTION_REFINERS = {\n listDayFormat: createFalsableFormatter,\n listDaySideFormat: createFalsableFormatter,\n noEventsClassNames: identity,\n noEventsContent: identity,\n noEventsDidMount: identity,\n noEventsWillUnmount: identity,\n // noEventsText is defined in base options\n};\nfunction createFalsableFormatter(input) {\n return input === false ? null : createFormatter(input);\n}\n\nvar css_248z = \"\\n:root {\\n --fc-list-event-dot-width: 10px;\\n --fc-list-event-hover-bg-color: #f5f5f5;\\n}\\n\\n.fc-theme-standard .fc-list {\\n border: 1px solid var(--fc-border-color);\\n }\\n\\n.fc {\\n\\n /* message when no events */\\n\\n}\\n\\n.fc .fc-list-empty {\\n background-color: var(--fc-neutral-bg-color);\\n height: 100%;\\n display: flex;\\n justify-content: center;\\n align-items: center; /* vertically aligns fc-list-empty-inner */\\n }\\n\\n.fc .fc-list-empty-cushion {\\n margin: 5em 0;\\n }\\n.fc {\\n\\n /* table within the scroller */\\n /* ---------------------------------------------------------------------------------------------------- */\\n\\n}\\n.fc .fc-list-table {\\n width: 100%;\\n border-style: hidden; /* kill outer border on theme */\\n }\\n.fc .fc-list-table tr > * {\\n border-left: 0;\\n border-right: 0;\\n }\\n.fc .fc-list-sticky .fc-list-day > * { /* the cells */\\n position: sticky;\\n top: 0;\\n background: var(--fc-page-bg-color); /* for when headers are styled to be transparent and sticky */\\n }\\n.fc {\\n\\n /* only exists for aria reasons, hide for non-screen-readers */\\n\\n}\\n.fc .fc-list-table thead {\\n position: absolute;\\n left: -10000px;\\n }\\n.fc {\\n\\n /* the table's border-style:hidden gets confused by hidden thead. force-hide top border of first cell */\\n\\n}\\n.fc .fc-list-table tbody > tr:first-child th {\\n border-top: 0;\\n }\\n.fc .fc-list-table th {\\n padding: 0; /* uses an inner-wrapper instead... */\\n }\\n.fc .fc-list-table td,\\n .fc .fc-list-day-cushion {\\n padding: 8px 14px;\\n }\\n.fc {\\n\\n\\n /* date heading rows */\\n /* ---------------------------------------------------------------------------------------------------- */\\n\\n}\\n.fc .fc-list-day-cushion:after {\\n content: \\\"\\\";\\n clear: both;\\n display: table; /* clear floating */\\n }\\n.fc-theme-standard .fc-list-day-cushion {\\n background-color: var(--fc-neutral-bg-color);\\n }\\n.fc-direction-ltr .fc-list-day-text,\\n.fc-direction-rtl .fc-list-day-side-text {\\n float: left;\\n}\\n.fc-direction-ltr .fc-list-day-side-text,\\n.fc-direction-rtl .fc-list-day-text {\\n float: right;\\n}\\n/* make the dot closer to the event title */\\n.fc-direction-ltr .fc-list-table .fc-list-event-graphic { padding-right: 0 }\\n.fc-direction-rtl .fc-list-table .fc-list-event-graphic { padding-left: 0 }\\n.fc .fc-list-event.fc-event-forced-url {\\n cursor: pointer; /* whole row will seem clickable */\\n }\\n.fc .fc-list-event:hover td {\\n background-color: var(--fc-list-event-hover-bg-color);\\n }\\n.fc {\\n\\n /* shrink certain cols */\\n\\n}\\n.fc .fc-list-event-graphic,\\n .fc .fc-list-event-time {\\n white-space: nowrap;\\n width: 1px;\\n }\\n.fc .fc-list-event-dot {\\n display: inline-block;\\n box-sizing: content-box;\\n width: 0;\\n height: 0;\\n border: calc(var(--fc-list-event-dot-width) / 2) solid var(--fc-event-border-color);\\n border-radius: calc(var(--fc-list-event-dot-width) / 2);\\n }\\n.fc {\\n\\n /* reset <a> styling */\\n\\n}\\n.fc .fc-list-event-title a {\\n color: inherit;\\n text-decoration: none;\\n }\\n.fc {\\n\\n /* underline link when hovering over any part of row */\\n\\n}\\n.fc .fc-list-event.fc-event-forced-url:hover a {\\n text-decoration: underline;\\n }\\n\";\ninjectStyles(css_248z);\n\nvar index = createPlugin({\n name: '@fullcalendar/list',\n optionRefiners: OPTION_REFINERS,\n views: {\n list: {\n component: ListView,\n buttonTextKey: 'list',\n listDayFormat: { month: 'long', day: 'numeric', year: 'numeric' }, // like \"January 1, 2016\"\n },\n listDay: {\n type: 'list',\n duration: { days: 1 },\n listDayFormat: { weekday: 'long' }, // day-of-week is all we need. full date is probably in headerToolbar\n },\n listWeek: {\n type: 'list',\n duration: { weeks: 1 },\n listDayFormat: { weekday: 'long' },\n listDaySideFormat: { month: 'long', day: 'numeric', year: 'numeric' },\n },\n listMonth: {\n type: 'list',\n duration: { month: 1 },\n listDaySideFormat: { weekday: 'long' }, // day-of-week is nice-to-have\n },\n listYear: {\n type: 'list',\n duration: { year: 1 },\n listDaySideFormat: { weekday: 'long' }, // day-of-week is nice-to-have\n },\n },\n});\n\nexport { index as default };\n","import { globalPlugins } from '@fullcalendar/core/internal'\nimport interactionPlugin from '@fullcalendar/interaction'\nimport dayGridPlugin from '@fullcalendar/daygrid'\nimport timeGridPlugin from '@fullcalendar/timegrid'\nimport listPlugin from '@fullcalendar/list'\n\nglobalPlugins.push(\n interactionPlugin,\n dayGridPlugin,\n timeGridPlugin,\n listPlugin,\n)\n\nexport * from '@fullcalendar/core'\nexport * from '@fullcalendar/interaction' // for Draggable\n"],"names":["slice","options","vnodeId","isValidElement","rerenderQueue","prevDebounce","i","EMPTY_OBJ","EMPTY_ARR","IS_NON_DIMENSIONAL","assign","obj","props","removeNode","node","parentNode","removeChild","createElement","type","children","key","ref","normalizedProps","arguments","length","call","defaultProps","undefined","createVNode","original","vnode","__k","__","__b","__e","__d","__c","__h","constructor","__v","createRef","current","Fragment","Component","context","this","getDomSibling","childIndex","indexOf","sibling","updateParentDomPointers","child","base","enqueueRender","c","push","process","debounceRendering","setTimeout","queue","__r","sort","a","b","some","component","commitQueue","oldVNode","oldDom","parentDom","__P","diff","ownerSVGElement","commitRoot","diffChildren","renderResult","newParentVNode","oldParentVNode","globalContext","isSvg","excessDomChildren","isHydrating","j","childVNode","newDom","firstChildDom","refs","oldChildren","oldChildrenLength","Array","isArray","reorderChildren","placeChild","unmount","applyRef","tmp","toChildArray","out","nextDom","sibDom","outer","appendChild","nextSibling","insertBefore","diffProps","dom","newProps","oldProps","hydrate","setProperty","setStyle","style","value","test","name","oldValue","useCapture","o","cssText","replace","toLowerCase","l","addEventListener","eventProxyCapture","eventProxy","removeEventListener","e","removeAttribute","setAttribute","event","newVNode","isNew","oldState","snapshot","clearProcessingException","provider","componentContext","renderHook","count","newType","contextType","__E","prototype","render","doRender","sub","state","_sb","__s","getDerivedStateFromProps","componentWillMount","componentDidMount","componentWillReceiveProps","shouldComponentUpdate","forEach","componentWillUpdate","componentDidUpdate","getChildContext","getSnapshotBeforeUpdate","diffElementNodes","diffed","root","cb","oldHtml","newHtml","nodeType","localName","document","createTextNode","createElementNS","is","data","childNodes","dangerouslySetInnerHTML","attributes","__html","innerHTML","checked","parentVNode","skipRemove","r","componentWillUnmount","replaceNode","firstChild","createContext","defaultValue","contextId","Consumer","contextValue","Provider","subs","ctx","_props","old","splice","error","errorInfo","ctor","handled","getDerivedStateFromError","setState","componentDidCatch","update","callback","s","forceUpdate","currentIndex","currentComponent","previousComponent","prevRaf","afterPaintEffects","EMPTY","oldBeforeDiff","oldBeforeRender","oldAfterDiff","oldCommit","oldBeforeUnmount","flushAfterPaintEffects","shift","__H","invokeCleanup","invokeEffect","hooks","hookItem","__N","_pendingArgs","requestAnimationFrame","afterNextFrame","__V","filter","hasErrored","HAS_RAF","raf","done","clearTimeout","timeout","cancelAnimationFrame","hook","comp","cleanup","shallowDiffers","PureComponent","p","isPureReactComponent","oldDiffHook","__f","REACT_FORWARD_SYMBOL","oldCatchError","then","oldUnmount","detachedClone","detachedParent","effect","map","removeOriginal","originalParent","Suspense","__u","_suspenders","suspended","__a","SuspenseList","_next","_map","__R","promise","suspendingVNode","suspendingComponent","resolve","resolved","onResolved","onSuspensionComplete","suspendedVNode","pop","wasHydrating","detachedComponent","__O","fallback","list","delete","revealOrder","size","ContextProvider","Portal","_this","container","_container","_temp","before","createPortal","el","containerInfo","delegated","get","unsuspend","wrappedUnsuspend","Map","reverse","set","REACT_ELEMENT_TYPE","Symbol","for","CAMEL_PROPS","IS_DOM","onChangeInputType","isReactComponent","Object","defineProperty","configurable","v","writable","oldEventHook","empty","isPropagationStopped","cancelBubble","isDefaultPrevented","defaultPrevented","persist","nativeEvent","classNameDescriptor","class","oldVNodeHook","nonCustomElement","multiple","selected","className","enumerable","$$typeof","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","preact.options","preact.render","preact.createElement","preact.Component","preact.createContext","renderInnerContent$1","renderInnerContent","renderMoreLinkInner","ViewContainer","css_248z","OPTION_REFINERS","index","DEFAULT_WEEK_NUM_FORMAT","renderAllDayInner","DEFAULT_TIME_FORMAT","interactionPlugin","dayGridPlugin","timeGridPlugin","listPlugin"],"mappings":"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"}
|