{
  "version": 3,
  "sources": ["../../misc/global_drop_and_paste.tsx", "../../../../node_modules/@babel/runtime/helpers/esm/extends.js", "../../../../node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js", "../../../../node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js", "../../../../node_modules/@babel/runtime/helpers/esm/inheritsLoose.js", "../../../../node_modules/dom-helpers/esm/hasClass.js", "../../../../node_modules/dom-helpers/esm/addClass.js", "../../../../node_modules/dom-helpers/esm/removeClass.js", "../../../../node_modules/react-transition-group/esm/CSSTransition.js", "../../../../node_modules/react-transition-group/esm/Transition.js", "../../../../node_modules/react-transition-group/esm/config.js", "../../../../node_modules/react-transition-group/esm/TransitionGroupContext.js", "../../../../node_modules/react-transition-group/esm/utils/reflow.js"],
  "sourcesContent": ["import * as React from \"react\"\nimport * as ReactDOM from \"react-dom\"\nimport {ui_state} from \"../state/index\"\nimport type {Card, CardUID, Board} from \"@cling/lib.shared.model\"\nimport {Snackbar} from \"@cling/lib.web.mdc\"\nimport {AddCardActions, below_card_insert_pos} from \"../card/add_card_actions\"\nimport {report_error} from \"@cling/lib.shared.debug\"\nimport {BoardContext} from \"../board_context\"\nimport {observer} from \"mobx-react\"\nimport {CSSTransition} from \"react-transition-group\"\nimport {i18n} from \"@cling/lib.web.i18n\"\nimport {useCardPermission} from \"../state/permission_hooks\"\nimport {can_call_faas} from \"@cling/lib.web.auth\"\nimport {files_from_data_transfer} from \"../upload/upload\"\nimport {observable, runInAction, makeObservable} from \"mobx\"\nimport {cancel_event} from \"@cling/lib.web.utils\"\n\nlet client_x: number\nlet client_y: number\n\nclass GlobalDragAndPasteState {\n    private _enabled = true\n\n    constructor() {\n        makeObservable<GlobalDragAndPasteState, \"_enabled\">(this, {\n            _enabled: observable,\n        })\n    }\n\n    enable() {\n        runInAction(() => (this._enabled = true))\n    }\n\n    disable() {\n        runInAction(() => (this._enabled = false))\n    }\n\n    get enabled() {\n        return this._enabled\n    }\n}\n\nexport const global_drag_and_drop_state = new GlobalDragAndPasteState()\n\nexport const GlobalDropAndPasteHandler: React.FunctionComponent = observer(() => {\n    const {\n        current_board: {board, display_version},\n    } = React.useContext(BoardContext)\n    const dragging_timeout = React.useRef<any>()\n    const [dragging, set_dragging] = React.useState(false)\n    const dragging_on = React.useCallback((e?) => {\n        if (!global_drag_and_drop_state.enabled) {\n            return\n        }\n        clearTimeout(dragging_timeout.current)\n        dragging_timeout.current = setTimeout(() => set_dragging(false), 3000)\n        e?.preventDefault()\n        e?.stopPropagation()\n        set_dragging(true)\n    }, [])\n    const dragging_off = React.useCallback((e?) => {\n        if (!global_drag_and_drop_state.enabled) {\n            return\n        }\n        clearTimeout(dragging_timeout.current)\n        e?.preventDefault()\n        e?.stopPropagation()\n        set_dragging(false)\n    }, [])\n    const permissions = useCardPermission(board?.root)\n    React.useEffect(() => {\n        if (\n            display_version !== \"latest\" ||\n            !board ||\n            !permissions.can_add_card ||\n            !global_drag_and_drop_state.enabled\n        ) {\n            return\n        }\n        const listener = paste_drop_listener(board)\n        document.body.addEventListener(\"mousemove\", record_mouse_position)\n        document.addEventListener(\"paste\", listener)\n        document.body.addEventListener(\"drop\", listener)\n        document.body.addEventListener(\"drop\", dragging_off)\n        document.body.addEventListener(\"dragenter\", dragging_on)\n        document.body.addEventListener(\"dragend\", dragging_off)\n        return () => {\n            document.body.removeEventListener(\"mousemove\", record_mouse_position)\n            document.removeEventListener(\"paste\", listener)\n            document.body.removeEventListener(\"drop\", listener)\n            document.body.removeEventListener(\"drop\", dragging_off)\n            document.body.removeEventListener(\"dragenter\", dragging_on)\n            document.body.removeEventListener(\"dragend\", dragging_off)\n        }\n    }, [board, display_version, dragging_off, dragging_on, permissions])\n    React.useEffect(() => {\n        if (!dragging) {\n            return\n        }\n        // Disable browser's default behavior.\n        // See https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/File_drag_and_drop#prevent_the_browsers_default_drag_behavior\n        document.body.addEventListener(\"dragover\", cancel_event)\n        return () => {\n            document.body.removeEventListener(\"dragover\", cancel_event)\n        }\n    }, [dragging])\n    if (!dragging || !global_drag_and_drop_state.enabled) {\n        return null\n    }\n    return ReactDOM.createPortal(\n        <CSSTransition\n            classNames={{\n                appearActive: \"global-drop-and-paste--appear\",\n                appearDone: \"global-drop-and-paste--appear\",\n            }}\n            in\n            appear\n            timeout={10}\n        >\n            <div className=\"global-drop-and-paste\" onDragLeave={dragging_off}>\n                <div className=\"global-drop-and-paste__title\">\n                    <div>{i18n.place_files_on_your_board}</div>\n                </div>\n            </div>\n        </CSSTransition>,\n        document.body,\n    )\n})\n\nconst record_mouse_position = (e: MouseEvent) => {\n    client_x = e.clientX\n    client_y = e.clientY\n}\n\nconst paste_drop_listener = (board: Board) => async (e: ClipboardEvent | DragEvent) => {\n    if (!global_drag_and_drop_state.enabled) {\n        return\n    }\n    try {\n        if (!can_call_faas()) {\n            Snackbar.show_message(i18n.upload_currently_not_possible)\n            return\n        }\n        const files = await files_from_data_transfer(\n            (e as any).dataTransfer || (e as any).clipboardData,\n        )\n        if (files.length === 0) {\n            return\n        }\n        if (ui_state.card_editor || ui_state.dialog !== \"none\" || ui_state.lightbox_shown()) {\n            Snackbar.show_message(\"Close all editors and dialogs to add files.\")\n            return\n        }\n        if (!board) {\n            return\n        }\n        const x = (e as any).clientX ?? client_x\n        const y = (e as any).clientY ?? client_y\n        // We use `y - 20` because users might try to drop / paste just in between two cards ...\n        let card = card_at(x, y - 20, board)\n        if (!card) {\n            card = board.root\n        }\n        if (!card) {\n            return\n        }\n        e.preventDefault()\n        e.stopPropagation()\n        await new AddCardActions(board, () => {\n            if (card!.is_regular_card) {\n                return below_card_insert_pos(card!, {\n                    has_visible_children: ui_state.search_state.has_visible_children(card!),\n                })\n            }\n            return {\n                target_pos: card!.inbox ? 0 : 4242424242,\n                target_card_uid: card!.uid,\n            }\n        }).add_files(files.map((file) => ({file})))\n    } catch (error) {\n        report_error(\"Failed to paste / drop files\", error)\n    }\n}\n\nfunction card_at(x: number, y: number, board: Board) {\n    // We need to hide the backdrop in order to find the element ...\n    const backdrop = document.querySelector(\".global-drop-and-paste\") as HTMLElement\n    if (backdrop) {\n        backdrop.style.display = \"none\"\n    }\n    let card: Card | undefined\n    const card_elm = document.elementFromPoint(x, y)?.closest(\"[data-card-uid]\")\n    if (card_elm) {\n        const card_uid = card_elm.getAttribute(\"data-card-uid\") as CardUID\n        if (board.contains(card_uid)) {\n            card = board.card(card_uid)\n        }\n    }\n    return card\n}\n", "export default function _extends() {\n  _extends = Object.assign ? Object.assign.bind() : function (target) {\n    for (var i = 1; i < arguments.length; i++) {\n      var source = arguments[i];\n      for (var key in source) {\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\n          target[key] = source[key];\n        }\n      }\n    }\n    return target;\n  };\n  return _extends.apply(this, arguments);\n}", "export default function _objectWithoutPropertiesLoose(source, excluded) {\n  if (source == null) return {};\n  var target = {};\n  var sourceKeys = Object.keys(source);\n  var key, i;\n  for (i = 0; i < sourceKeys.length; i++) {\n    key = sourceKeys[i];\n    if (excluded.indexOf(key) >= 0) continue;\n    target[key] = source[key];\n  }\n  return target;\n}", "export default function _setPrototypeOf(o, p) {\n  _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {\n    o.__proto__ = p;\n    return o;\n  };\n  return _setPrototypeOf(o, p);\n}", "import setPrototypeOf from \"./setPrototypeOf.js\";\nexport default function _inheritsLoose(subClass, superClass) {\n  subClass.prototype = Object.create(superClass.prototype);\n  subClass.prototype.constructor = subClass;\n  setPrototypeOf(subClass, superClass);\n}", "export default function hasClass(element, className) {\n  if (element.classList) return !!className && element.classList.contains(className);\n  return (\" \" + (element.className.baseVal || element.className) + \" \").indexOf(\" \" + className + \" \") !== -1;\n}", "import hasClass from './hasClass';\nexport default function addClass(element, className) {\n  if (element.classList) element.classList.add(className);else if (!hasClass(element, className)) if (typeof element.className === 'string') element.className = element.className + \" \" + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + \" \" + className);\n}", "function replaceClassName(origClass, classToRemove) {\n  return origClass.replace(new RegExp(\"(^|\\\\s)\" + classToRemove + \"(?:\\\\s|$)\", 'g'), '$1').replace(/\\s+/g, ' ').replace(/^\\s*|\\s*$/g, '');\n}\n\nexport default function removeClass(element, className) {\n  if (element.classList) {\n    element.classList.remove(className);\n  } else if (typeof element.className === 'string') {\n    ;\n    element.className = replaceClassName(element.className, className);\n  } else {\n    element.setAttribute('class', replaceClassName(element.className && element.className.baseVal || '', className));\n  }\n}", "import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport PropTypes from 'prop-types';\nimport addOneClass from 'dom-helpers/addClass';\nimport removeOneClass from 'dom-helpers/removeClass';\nimport React from 'react';\nimport Transition from './Transition';\nimport { classNamesShape } from './utils/PropTypes';\nimport { forceReflow } from './utils/reflow';\n\nvar _addClass = function addClass(node, classes) {\n  return node && classes && classes.split(' ').forEach(function (c) {\n    return addOneClass(node, c);\n  });\n};\n\nvar removeClass = function removeClass(node, classes) {\n  return node && classes && classes.split(' ').forEach(function (c) {\n    return removeOneClass(node, c);\n  });\n};\n/**\n * A transition component inspired by the excellent\n * [ng-animate](https://docs.angularjs.org/api/ngAnimate) library, you should\n * use it if you're using CSS transitions or animations. It's built upon the\n * [`Transition`](https://reactcommunity.org/react-transition-group/transition)\n * component, so it inherits all of its props.\n *\n * `CSSTransition` applies a pair of class names during the `appear`, `enter`,\n * and `exit` states of the transition. The first class is applied and then a\n * second `*-active` class in order to activate the CSS transition. After the\n * transition, matching `*-done` class names are applied to persist the\n * transition state.\n *\n * ```jsx\n * function App() {\n *   const [inProp, setInProp] = useState(false);\n *   return (\n *     <div>\n *       <CSSTransition in={inProp} timeout={200} classNames=\"my-node\">\n *         <div>\n *           {\"I'll receive my-node-* classes\"}\n *         </div>\n *       </CSSTransition>\n *       <button type=\"button\" onClick={() => setInProp(true)}>\n *         Click to Enter\n *       </button>\n *     </div>\n *   );\n * }\n * ```\n *\n * When the `in` prop is set to `true`, the child component will first receive\n * the class `example-enter`, then the `example-enter-active` will be added in\n * the next tick. `CSSTransition` [forces a\n * reflow](https://github.com/reactjs/react-transition-group/blob/5007303e729a74be66a21c3e2205e4916821524b/src/CSSTransition.js#L208-L215)\n * between before adding the `example-enter-active`. This is an important trick\n * because it allows us to transition between `example-enter` and\n * `example-enter-active` even though they were added immediately one after\n * another. Most notably, this is what makes it possible for us to animate\n * _appearance_.\n *\n * ```css\n * .my-node-enter {\n *   opacity: 0;\n * }\n * .my-node-enter-active {\n *   opacity: 1;\n *   transition: opacity 200ms;\n * }\n * .my-node-exit {\n *   opacity: 1;\n * }\n * .my-node-exit-active {\n *   opacity: 0;\n *   transition: opacity 200ms;\n * }\n * ```\n *\n * `*-active` classes represent which styles you want to animate **to**, so it's\n * important to add `transition` declaration only to them, otherwise transitions\n * might not behave as intended! This might not be obvious when the transitions\n * are symmetrical, i.e. when `*-enter-active` is the same as `*-exit`, like in\n * the example above (minus `transition`), but it becomes apparent in more\n * complex transitions.\n *\n * **Note**: If you're using the\n * [`appear`](http://reactcommunity.org/react-transition-group/transition#Transition-prop-appear)\n * prop, make sure to define styles for `.appear-*` classes as well.\n */\n\n\nvar CSSTransition = /*#__PURE__*/function (_React$Component) {\n  _inheritsLoose(CSSTransition, _React$Component);\n\n  function CSSTransition() {\n    var _this;\n\n    for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n      args[_key] = arguments[_key];\n    }\n\n    _this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;\n    _this.appliedClasses = {\n      appear: {},\n      enter: {},\n      exit: {}\n    };\n\n    _this.onEnter = function (maybeNode, maybeAppearing) {\n      var _this$resolveArgument = _this.resolveArguments(maybeNode, maybeAppearing),\n          node = _this$resolveArgument[0],\n          appearing = _this$resolveArgument[1];\n\n      _this.removeClasses(node, 'exit');\n\n      _this.addClass(node, appearing ? 'appear' : 'enter', 'base');\n\n      if (_this.props.onEnter) {\n        _this.props.onEnter(maybeNode, maybeAppearing);\n      }\n    };\n\n    _this.onEntering = function (maybeNode, maybeAppearing) {\n      var _this$resolveArgument2 = _this.resolveArguments(maybeNode, maybeAppearing),\n          node = _this$resolveArgument2[0],\n          appearing = _this$resolveArgument2[1];\n\n      var type = appearing ? 'appear' : 'enter';\n\n      _this.addClass(node, type, 'active');\n\n      if (_this.props.onEntering) {\n        _this.props.onEntering(maybeNode, maybeAppearing);\n      }\n    };\n\n    _this.onEntered = function (maybeNode, maybeAppearing) {\n      var _this$resolveArgument3 = _this.resolveArguments(maybeNode, maybeAppearing),\n          node = _this$resolveArgument3[0],\n          appearing = _this$resolveArgument3[1];\n\n      var type = appearing ? 'appear' : 'enter';\n\n      _this.removeClasses(node, type);\n\n      _this.addClass(node, type, 'done');\n\n      if (_this.props.onEntered) {\n        _this.props.onEntered(maybeNode, maybeAppearing);\n      }\n    };\n\n    _this.onExit = function (maybeNode) {\n      var _this$resolveArgument4 = _this.resolveArguments(maybeNode),\n          node = _this$resolveArgument4[0];\n\n      _this.removeClasses(node, 'appear');\n\n      _this.removeClasses(node, 'enter');\n\n      _this.addClass(node, 'exit', 'base');\n\n      if (_this.props.onExit) {\n        _this.props.onExit(maybeNode);\n      }\n    };\n\n    _this.onExiting = function (maybeNode) {\n      var _this$resolveArgument5 = _this.resolveArguments(maybeNode),\n          node = _this$resolveArgument5[0];\n\n      _this.addClass(node, 'exit', 'active');\n\n      if (_this.props.onExiting) {\n        _this.props.onExiting(maybeNode);\n      }\n    };\n\n    _this.onExited = function (maybeNode) {\n      var _this$resolveArgument6 = _this.resolveArguments(maybeNode),\n          node = _this$resolveArgument6[0];\n\n      _this.removeClasses(node, 'exit');\n\n      _this.addClass(node, 'exit', 'done');\n\n      if (_this.props.onExited) {\n        _this.props.onExited(maybeNode);\n      }\n    };\n\n    _this.resolveArguments = function (maybeNode, maybeAppearing) {\n      return _this.props.nodeRef ? [_this.props.nodeRef.current, maybeNode] // here `maybeNode` is actually `appearing`\n      : [maybeNode, maybeAppearing];\n    };\n\n    _this.getClassNames = function (type) {\n      var classNames = _this.props.classNames;\n      var isStringClassNames = typeof classNames === 'string';\n      var prefix = isStringClassNames && classNames ? classNames + \"-\" : '';\n      var baseClassName = isStringClassNames ? \"\" + prefix + type : classNames[type];\n      var activeClassName = isStringClassNames ? baseClassName + \"-active\" : classNames[type + \"Active\"];\n      var doneClassName = isStringClassNames ? baseClassName + \"-done\" : classNames[type + \"Done\"];\n      return {\n        baseClassName: baseClassName,\n        activeClassName: activeClassName,\n        doneClassName: doneClassName\n      };\n    };\n\n    return _this;\n  }\n\n  var _proto = CSSTransition.prototype;\n\n  _proto.addClass = function addClass(node, type, phase) {\n    var className = this.getClassNames(type)[phase + \"ClassName\"];\n\n    var _this$getClassNames = this.getClassNames('enter'),\n        doneClassName = _this$getClassNames.doneClassName;\n\n    if (type === 'appear' && phase === 'done' && doneClassName) {\n      className += \" \" + doneClassName;\n    } // This is to force a repaint,\n    // which is necessary in order to transition styles when adding a class name.\n\n\n    if (phase === 'active') {\n      if (node) forceReflow(node);\n    }\n\n    if (className) {\n      this.appliedClasses[type][phase] = className;\n\n      _addClass(node, className);\n    }\n  };\n\n  _proto.removeClasses = function removeClasses(node, type) {\n    var _this$appliedClasses$ = this.appliedClasses[type],\n        baseClassName = _this$appliedClasses$.base,\n        activeClassName = _this$appliedClasses$.active,\n        doneClassName = _this$appliedClasses$.done;\n    this.appliedClasses[type] = {};\n\n    if (baseClassName) {\n      removeClass(node, baseClassName);\n    }\n\n    if (activeClassName) {\n      removeClass(node, activeClassName);\n    }\n\n    if (doneClassName) {\n      removeClass(node, doneClassName);\n    }\n  };\n\n  _proto.render = function render() {\n    var _this$props = this.props,\n        _ = _this$props.classNames,\n        props = _objectWithoutPropertiesLoose(_this$props, [\"classNames\"]);\n\n    return /*#__PURE__*/React.createElement(Transition, _extends({}, props, {\n      onEnter: this.onEnter,\n      onEntered: this.onEntered,\n      onEntering: this.onEntering,\n      onExit: this.onExit,\n      onExiting: this.onExiting,\n      onExited: this.onExited\n    }));\n  };\n\n  return CSSTransition;\n}(React.Component);\n\nCSSTransition.defaultProps = {\n  classNames: ''\n};\nCSSTransition.propTypes = process.env.NODE_ENV !== \"production\" ? _extends({}, Transition.propTypes, {\n  /**\n   * The animation classNames applied to the component as it appears, enters,\n   * exits or has finished the transition. A single name can be provided, which\n   * will be suffixed for each stage, e.g. `classNames=\"fade\"` applies:\n   *\n   * - `fade-appear`, `fade-appear-active`, `fade-appear-done`\n   * - `fade-enter`, `fade-enter-active`, `fade-enter-done`\n   * - `fade-exit`, `fade-exit-active`, `fade-exit-done`\n   *\n   * A few details to note about how these classes are applied:\n   *\n   * 1. They are _joined_ with the ones that are already defined on the child\n   *    component, so if you want to add some base styles, you can use\n   *    `className` without worrying that it will be overridden.\n   *\n   * 2. If the transition component mounts with `in={false}`, no classes are\n   *    applied yet. You might be expecting `*-exit-done`, but if you think\n   *    about it, a component cannot finish exiting if it hasn't entered yet.\n   *\n   * 2. `fade-appear-done` and `fade-enter-done` will _both_ be applied. This\n   *    allows you to define different behavior for when appearing is done and\n   *    when regular entering is done, using selectors like\n   *    `.fade-enter-done:not(.fade-appear-done)`. For example, you could apply\n   *    an epic entrance animation when element first appears in the DOM using\n   *    [Animate.css](https://daneden.github.io/animate.css/). Otherwise you can\n   *    simply use `fade-enter-done` for defining both cases.\n   *\n   * Each individual classNames can also be specified independently like:\n   *\n   * ```js\n   * classNames={{\n   *  appear: 'my-appear',\n   *  appearActive: 'my-active-appear',\n   *  appearDone: 'my-done-appear',\n   *  enter: 'my-enter',\n   *  enterActive: 'my-active-enter',\n   *  enterDone: 'my-done-enter',\n   *  exit: 'my-exit',\n   *  exitActive: 'my-active-exit',\n   *  exitDone: 'my-done-exit',\n   * }}\n   * ```\n   *\n   * If you want to set these classes using CSS Modules:\n   *\n   * ```js\n   * import styles from './styles.css';\n   * ```\n   *\n   * you might want to use camelCase in your CSS file, that way could simply\n   * spread them instead of listing them one by one:\n   *\n   * ```js\n   * classNames={{ ...styles }}\n   * ```\n   *\n   * @type {string | {\n   *  appear?: string,\n   *  appearActive?: string,\n   *  appearDone?: string,\n   *  enter?: string,\n   *  enterActive?: string,\n   *  enterDone?: string,\n   *  exit?: string,\n   *  exitActive?: string,\n   *  exitDone?: string,\n   * }}\n   */\n  classNames: classNamesShape,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'enter' or 'appear' class is\n   * applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool)\n   */\n  onEnter: PropTypes.func,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'enter-active' or\n   * 'appear-active' class is applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool)\n   */\n  onEntering: PropTypes.func,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'enter' or\n   * 'appear' classes are **removed** and the `done` class is added to the DOM node.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool)\n   */\n  onEntered: PropTypes.func,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'exit' class is\n   * applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed\n   *\n   * @type Function(node: HtmlElement)\n   */\n  onExit: PropTypes.func,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'exit-active' is applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed\n   *\n   * @type Function(node: HtmlElement)\n   */\n  onExiting: PropTypes.func,\n\n  /**\n   * A `<Transition>` callback fired immediately after the 'exit' classes\n   * are **removed** and the `exit-done` class is added to the DOM node.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed\n   *\n   * @type Function(node: HtmlElement)\n   */\n  onExited: PropTypes.func\n}) : {};\nexport default CSSTransition;", "import _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport PropTypes from 'prop-types';\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nimport config from './config';\nimport { timeoutsShape } from './utils/PropTypes';\nimport TransitionGroupContext from './TransitionGroupContext';\nimport { forceReflow } from './utils/reflow';\nexport var UNMOUNTED = 'unmounted';\nexport var EXITED = 'exited';\nexport var ENTERING = 'entering';\nexport var ENTERED = 'entered';\nexport var EXITING = 'exiting';\n/**\n * The Transition component lets you describe a transition from one component\n * state to another _over time_ with a simple declarative API. Most commonly\n * it's used to animate the mounting and unmounting of a component, but can also\n * be used to describe in-place transition states as well.\n *\n * ---\n *\n * **Note**: `Transition` is a platform-agnostic base component. If you're using\n * transitions in CSS, you'll probably want to use\n * [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)\n * instead. It inherits all the features of `Transition`, but contains\n * additional features necessary to play nice with CSS transitions (hence the\n * name of the component).\n *\n * ---\n *\n * By default the `Transition` component does not alter the behavior of the\n * component it renders, it only tracks \"enter\" and \"exit\" states for the\n * components. It's up to you to give meaning and effect to those states. For\n * example we can add styles to a component when it enters or exits:\n *\n * ```jsx\n * import { Transition } from 'react-transition-group';\n *\n * const duration = 300;\n *\n * const defaultStyle = {\n *   transition: `opacity ${duration}ms ease-in-out`,\n *   opacity: 0,\n * }\n *\n * const transitionStyles = {\n *   entering: { opacity: 1 },\n *   entered:  { opacity: 1 },\n *   exiting:  { opacity: 0 },\n *   exited:  { opacity: 0 },\n * };\n *\n * const Fade = ({ in: inProp }) => (\n *   <Transition in={inProp} timeout={duration}>\n *     {state => (\n *       <div style={{\n *         ...defaultStyle,\n *         ...transitionStyles[state]\n *       }}>\n *         I'm a fade Transition!\n *       </div>\n *     )}\n *   </Transition>\n * );\n * ```\n *\n * There are 4 main states a Transition can be in:\n *  - `'entering'`\n *  - `'entered'`\n *  - `'exiting'`\n *  - `'exited'`\n *\n * Transition state is toggled via the `in` prop. When `true` the component\n * begins the \"Enter\" stage. During this stage, the component will shift from\n * its current transition state, to `'entering'` for the duration of the\n * transition and then to the `'entered'` stage once it's complete. Let's take\n * the following example (we'll use the\n * [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):\n *\n * ```jsx\n * function App() {\n *   const [inProp, setInProp] = useState(false);\n *   return (\n *     <div>\n *       <Transition in={inProp} timeout={500}>\n *         {state => (\n *           // ...\n *         )}\n *       </Transition>\n *       <button onClick={() => setInProp(true)}>\n *         Click to Enter\n *       </button>\n *     </div>\n *   );\n * }\n * ```\n *\n * When the button is clicked the component will shift to the `'entering'` state\n * and stay there for 500ms (the value of `timeout`) before it finally switches\n * to `'entered'`.\n *\n * When `in` is `false` the same thing happens except the state moves from\n * `'exiting'` to `'exited'`.\n */\n\nvar Transition = /*#__PURE__*/function (_React$Component) {\n  _inheritsLoose(Transition, _React$Component);\n\n  function Transition(props, context) {\n    var _this;\n\n    _this = _React$Component.call(this, props, context) || this;\n    var parentGroup = context; // In the context of a TransitionGroup all enters are really appears\n\n    var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;\n    var initialStatus;\n    _this.appearStatus = null;\n\n    if (props.in) {\n      if (appear) {\n        initialStatus = EXITED;\n        _this.appearStatus = ENTERING;\n      } else {\n        initialStatus = ENTERED;\n      }\n    } else {\n      if (props.unmountOnExit || props.mountOnEnter) {\n        initialStatus = UNMOUNTED;\n      } else {\n        initialStatus = EXITED;\n      }\n    }\n\n    _this.state = {\n      status: initialStatus\n    };\n    _this.nextCallback = null;\n    return _this;\n  }\n\n  Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {\n    var nextIn = _ref.in;\n\n    if (nextIn && prevState.status === UNMOUNTED) {\n      return {\n        status: EXITED\n      };\n    }\n\n    return null;\n  } // getSnapshotBeforeUpdate(prevProps) {\n  //   let nextStatus = null\n  //   if (prevProps !== this.props) {\n  //     const { status } = this.state\n  //     if (this.props.in) {\n  //       if (status !== ENTERING && status !== ENTERED) {\n  //         nextStatus = ENTERING\n  //       }\n  //     } else {\n  //       if (status === ENTERING || status === ENTERED) {\n  //         nextStatus = EXITING\n  //       }\n  //     }\n  //   }\n  //   return { nextStatus }\n  // }\n  ;\n\n  var _proto = Transition.prototype;\n\n  _proto.componentDidMount = function componentDidMount() {\n    this.updateStatus(true, this.appearStatus);\n  };\n\n  _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n    var nextStatus = null;\n\n    if (prevProps !== this.props) {\n      var status = this.state.status;\n\n      if (this.props.in) {\n        if (status !== ENTERING && status !== ENTERED) {\n          nextStatus = ENTERING;\n        }\n      } else {\n        if (status === ENTERING || status === ENTERED) {\n          nextStatus = EXITING;\n        }\n      }\n    }\n\n    this.updateStatus(false, nextStatus);\n  };\n\n  _proto.componentWillUnmount = function componentWillUnmount() {\n    this.cancelNextCallback();\n  };\n\n  _proto.getTimeouts = function getTimeouts() {\n    var timeout = this.props.timeout;\n    var exit, enter, appear;\n    exit = enter = appear = timeout;\n\n    if (timeout != null && typeof timeout !== 'number') {\n      exit = timeout.exit;\n      enter = timeout.enter; // TODO: remove fallback for next major\n\n      appear = timeout.appear !== undefined ? timeout.appear : enter;\n    }\n\n    return {\n      exit: exit,\n      enter: enter,\n      appear: appear\n    };\n  };\n\n  _proto.updateStatus = function updateStatus(mounting, nextStatus) {\n    if (mounting === void 0) {\n      mounting = false;\n    }\n\n    if (nextStatus !== null) {\n      // nextStatus will always be ENTERING or EXITING.\n      this.cancelNextCallback();\n\n      if (nextStatus === ENTERING) {\n        if (this.props.unmountOnExit || this.props.mountOnEnter) {\n          var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this); // https://github.com/reactjs/react-transition-group/pull/749\n          // With unmountOnExit or mountOnEnter, the enter animation should happen at the transition between `exited` and `entering`.\n          // To make the animation happen,  we have to separate each rendering and avoid being processed as batched.\n\n          if (node) forceReflow(node);\n        }\n\n        this.performEnter(mounting);\n      } else {\n        this.performExit();\n      }\n    } else if (this.props.unmountOnExit && this.state.status === EXITED) {\n      this.setState({\n        status: UNMOUNTED\n      });\n    }\n  };\n\n  _proto.performEnter = function performEnter(mounting) {\n    var _this2 = this;\n\n    var enter = this.props.enter;\n    var appearing = this.context ? this.context.isMounting : mounting;\n\n    var _ref2 = this.props.nodeRef ? [appearing] : [ReactDOM.findDOMNode(this), appearing],\n        maybeNode = _ref2[0],\n        maybeAppearing = _ref2[1];\n\n    var timeouts = this.getTimeouts();\n    var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED\n    // if we are mounting and running this it means appear _must_ be set\n\n    if (!mounting && !enter || config.disabled) {\n      this.safeSetState({\n        status: ENTERED\n      }, function () {\n        _this2.props.onEntered(maybeNode);\n      });\n      return;\n    }\n\n    this.props.onEnter(maybeNode, maybeAppearing);\n    this.safeSetState({\n      status: ENTERING\n    }, function () {\n      _this2.props.onEntering(maybeNode, maybeAppearing);\n\n      _this2.onTransitionEnd(enterTimeout, function () {\n        _this2.safeSetState({\n          status: ENTERED\n        }, function () {\n          _this2.props.onEntered(maybeNode, maybeAppearing);\n        });\n      });\n    });\n  };\n\n  _proto.performExit = function performExit() {\n    var _this3 = this;\n\n    var exit = this.props.exit;\n    var timeouts = this.getTimeouts();\n    var maybeNode = this.props.nodeRef ? undefined : ReactDOM.findDOMNode(this); // no exit animation skip right to EXITED\n\n    if (!exit || config.disabled) {\n      this.safeSetState({\n        status: EXITED\n      }, function () {\n        _this3.props.onExited(maybeNode);\n      });\n      return;\n    }\n\n    this.props.onExit(maybeNode);\n    this.safeSetState({\n      status: EXITING\n    }, function () {\n      _this3.props.onExiting(maybeNode);\n\n      _this3.onTransitionEnd(timeouts.exit, function () {\n        _this3.safeSetState({\n          status: EXITED\n        }, function () {\n          _this3.props.onExited(maybeNode);\n        });\n      });\n    });\n  };\n\n  _proto.cancelNextCallback = function cancelNextCallback() {\n    if (this.nextCallback !== null) {\n      this.nextCallback.cancel();\n      this.nextCallback = null;\n    }\n  };\n\n  _proto.safeSetState = function safeSetState(nextState, callback) {\n    // This shouldn't be necessary, but there are weird race conditions with\n    // setState callbacks and unmounting in testing, so always make sure that\n    // we can cancel any pending setState callbacks after we unmount.\n    callback = this.setNextCallback(callback);\n    this.setState(nextState, callback);\n  };\n\n  _proto.setNextCallback = function setNextCallback(callback) {\n    var _this4 = this;\n\n    var active = true;\n\n    this.nextCallback = function (event) {\n      if (active) {\n        active = false;\n        _this4.nextCallback = null;\n        callback(event);\n      }\n    };\n\n    this.nextCallback.cancel = function () {\n      active = false;\n    };\n\n    return this.nextCallback;\n  };\n\n  _proto.onTransitionEnd = function onTransitionEnd(timeout, handler) {\n    this.setNextCallback(handler);\n    var node = this.props.nodeRef ? this.props.nodeRef.current : ReactDOM.findDOMNode(this);\n    var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;\n\n    if (!node || doesNotHaveTimeoutOrListener) {\n      setTimeout(this.nextCallback, 0);\n      return;\n    }\n\n    if (this.props.addEndListener) {\n      var _ref3 = this.props.nodeRef ? [this.nextCallback] : [node, this.nextCallback],\n          maybeNode = _ref3[0],\n          maybeNextCallback = _ref3[1];\n\n      this.props.addEndListener(maybeNode, maybeNextCallback);\n    }\n\n    if (timeout != null) {\n      setTimeout(this.nextCallback, timeout);\n    }\n  };\n\n  _proto.render = function render() {\n    var status = this.state.status;\n\n    if (status === UNMOUNTED) {\n      return null;\n    }\n\n    var _this$props = this.props,\n        children = _this$props.children,\n        _in = _this$props.in,\n        _mountOnEnter = _this$props.mountOnEnter,\n        _unmountOnExit = _this$props.unmountOnExit,\n        _appear = _this$props.appear,\n        _enter = _this$props.enter,\n        _exit = _this$props.exit,\n        _timeout = _this$props.timeout,\n        _addEndListener = _this$props.addEndListener,\n        _onEnter = _this$props.onEnter,\n        _onEntering = _this$props.onEntering,\n        _onEntered = _this$props.onEntered,\n        _onExit = _this$props.onExit,\n        _onExiting = _this$props.onExiting,\n        _onExited = _this$props.onExited,\n        _nodeRef = _this$props.nodeRef,\n        childProps = _objectWithoutPropertiesLoose(_this$props, [\"children\", \"in\", \"mountOnEnter\", \"unmountOnExit\", \"appear\", \"enter\", \"exit\", \"timeout\", \"addEndListener\", \"onEnter\", \"onEntering\", \"onEntered\", \"onExit\", \"onExiting\", \"onExited\", \"nodeRef\"]);\n\n    return (\n      /*#__PURE__*/\n      // allows for nested Transitions\n      React.createElement(TransitionGroupContext.Provider, {\n        value: null\n      }, typeof children === 'function' ? children(status, childProps) : React.cloneElement(React.Children.only(children), childProps))\n    );\n  };\n\n  return Transition;\n}(React.Component);\n\nTransition.contextType = TransitionGroupContext;\nTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n  /**\n   * A React reference to DOM element that need to transition:\n   * https://stackoverflow.com/a/51127130/4671932\n   *\n   *   - When `nodeRef` prop is used, `node` is not passed to callback functions\n   *      (e.g. `onEnter`) because user already has direct access to the node.\n   *   - When changing `key` prop of `Transition` in a `TransitionGroup` a new\n   *     `nodeRef` need to be provided to `Transition` with changed `key` prop\n   *     (see\n   *     [test/CSSTransition-test.js](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e19d724f145596f5910581c/test/CSSTransition-test.js#L362-L437)).\n   */\n  nodeRef: PropTypes.shape({\n    current: typeof Element === 'undefined' ? PropTypes.any : function (propValue, key, componentName, location, propFullName, secret) {\n      var value = propValue[key];\n      return PropTypes.instanceOf(value && 'ownerDocument' in value ? value.ownerDocument.defaultView.Element : Element)(propValue, key, componentName, location, propFullName, secret);\n    }\n  }),\n\n  /**\n   * A `function` child can be used instead of a React element. This function is\n   * called with the current transition status (`'entering'`, `'entered'`,\n   * `'exiting'`, `'exited'`), which can be used to apply context\n   * specific props to a component.\n   *\n   * ```jsx\n   * <Transition in={this.state.in} timeout={150}>\n   *   {state => (\n   *     <MyComponent className={`fade fade-${state}`} />\n   *   )}\n   * </Transition>\n   * ```\n   */\n  children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,\n\n  /**\n   * Show the component; triggers the enter or exit states\n   */\n  in: PropTypes.bool,\n\n  /**\n   * By default the child component is mounted immediately along with\n   * the parent `Transition` component. If you want to \"lazy mount\" the component on the\n   * first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay\n   * mounted, even on \"exited\", unless you also specify `unmountOnExit`.\n   */\n  mountOnEnter: PropTypes.bool,\n\n  /**\n   * By default the child component stays mounted after it reaches the `'exited'` state.\n   * Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.\n   */\n  unmountOnExit: PropTypes.bool,\n\n  /**\n   * By default the child component does not perform the enter transition when\n   * it first mounts, regardless of the value of `in`. If you want this\n   * behavior, set both `appear` and `in` to `true`.\n   *\n   * > **Note**: there are no special appear states like `appearing`/`appeared`, this prop\n   * > only adds an additional enter transition. However, in the\n   * > `<CSSTransition>` component that first enter transition does result in\n   * > additional `.appear-*` classes, that way you can choose to style it\n   * > differently.\n   */\n  appear: PropTypes.bool,\n\n  /**\n   * Enable or disable enter transitions.\n   */\n  enter: PropTypes.bool,\n\n  /**\n   * Enable or disable exit transitions.\n   */\n  exit: PropTypes.bool,\n\n  /**\n   * The duration of the transition, in milliseconds.\n   * Required unless `addEndListener` is provided.\n   *\n   * You may specify a single timeout for all transitions:\n   *\n   * ```jsx\n   * timeout={500}\n   * ```\n   *\n   * or individually:\n   *\n   * ```jsx\n   * timeout={{\n   *  appear: 500,\n   *  enter: 300,\n   *  exit: 500,\n   * }}\n   * ```\n   *\n   * - `appear` defaults to the value of `enter`\n   * - `enter` defaults to `0`\n   * - `exit` defaults to `0`\n   *\n   * @type {number | { enter?: number, exit?: number, appear?: number }}\n   */\n  timeout: function timeout(props) {\n    var pt = timeoutsShape;\n    if (!props.addEndListener) pt = pt.isRequired;\n\n    for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n      args[_key - 1] = arguments[_key];\n    }\n\n    return pt.apply(void 0, [props].concat(args));\n  },\n\n  /**\n   * Add a custom transition end trigger. Called with the transitioning\n   * DOM node and a `done` callback. Allows for more fine grained transition end\n   * logic. Timeouts are still used as a fallback if provided.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * ```jsx\n   * addEndListener={(node, done) => {\n   *   // use the css transitionend event to mark the finish of a transition\n   *   node.addEventListener('transitionend', done, false);\n   * }}\n   * ```\n   */\n  addEndListener: PropTypes.func,\n\n  /**\n   * Callback fired before the \"entering\" status is applied. An extra parameter\n   * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool) -> void\n   */\n  onEnter: PropTypes.func,\n\n  /**\n   * Callback fired after the \"entering\" status is applied. An extra parameter\n   * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool)\n   */\n  onEntering: PropTypes.func,\n\n  /**\n   * Callback fired after the \"entered\" status is applied. An extra parameter\n   * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement, isAppearing: bool) -> void\n   */\n  onEntered: PropTypes.func,\n\n  /**\n   * Callback fired before the \"exiting\" status is applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement) -> void\n   */\n  onExit: PropTypes.func,\n\n  /**\n   * Callback fired after the \"exiting\" status is applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed.\n   *\n   * @type Function(node: HtmlElement) -> void\n   */\n  onExiting: PropTypes.func,\n\n  /**\n   * Callback fired after the \"exited\" status is applied.\n   *\n   * **Note**: when `nodeRef` prop is passed, `node` is not passed\n   *\n   * @type Function(node: HtmlElement) -> void\n   */\n  onExited: PropTypes.func\n} : {}; // Name the function so it is clearer in the documentation\n\nfunction noop() {}\n\nTransition.defaultProps = {\n  in: false,\n  mountOnEnter: false,\n  unmountOnExit: false,\n  appear: false,\n  enter: true,\n  exit: true,\n  onEnter: noop,\n  onEntering: noop,\n  onEntered: noop,\n  onExit: noop,\n  onExiting: noop,\n  onExited: noop\n};\nTransition.UNMOUNTED = UNMOUNTED;\nTransition.EXITED = EXITED;\nTransition.ENTERING = ENTERING;\nTransition.ENTERED = ENTERED;\nTransition.EXITING = EXITING;\nexport default Transition;", "export default {\n  disabled: false\n};", "import React from 'react';\nexport default React.createContext(null);", "export var forceReflow = function forceReflow(node) {\n  return node.scrollTop;\n};"],
  "mappings": "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",
  "names": ["init_compat_module", "_extends", "target", "i", "source", "key", "__name", "_objectWithoutPropertiesLoose", "source", "excluded", "target", "sourceKeys", "key", "i", "__name", "_setPrototypeOf", "o", "p", "__name", "_inheritsLoose", "subClass", "superClass", "_setPrototypeOf", "__name", "hasClass", "element", "className", "__name", "addClass", "element", "className", "hasClass", "__name", "replaceClassName", "origClass", "classToRemove", "__name", "removeClass", "element", "className", "init_compat_module", "init_compat_module", "config_default", "init_compat_module", "TransitionGroupContext_default", "Rn", "forceReflow", "__name", "node", "UNMOUNTED", "EXITED", "ENTERING", "ENTERED", "EXITING", "Transition", "_React$Component", "_inheritsLoose", "props", "context", "_this", "parentGroup", "appear", "initialStatus", "__name", "_ref", "prevState", "nextIn", "_proto", "prevProps", "nextStatus", "status", "timeout", "exit", "enter", "mounting", "node", "Rn", "forceReflow", "_this2", "appearing", "_ref2", "maybeNode", "maybeAppearing", "timeouts", "enterTimeout", "config_default", "_this3", "nextState", "callback", "_this4", "active", "event", "handler", "doesNotHaveTimeoutOrListener", "_ref3", "maybeNextCallback", "_this$props", "children", "_in", "_mountOnEnter", "_unmountOnExit", "_appear", "_enter", "_exit", "_timeout", "_addEndListener", "_onEnter", "_onEntering", "_onEntered", "_onExit", "_onExiting", "_onExited", "_nodeRef", "childProps", "_objectWithoutPropertiesLoose", "TransitionGroupContext_default", "noop", "Transition_default", "_addClass", "__name", "node", "classes", "c", "addClass", "removeClass", "CSSTransition", "_React$Component", "_inheritsLoose", "_this", "_len", "args", "_key", "maybeNode", "maybeAppearing", "_this$resolveArgument", "appearing", "_this$resolveArgument2", "type", "_this$resolveArgument3", "_this$resolveArgument4", "_this$resolveArgument5", "_this$resolveArgument6", "classNames", "isStringClassNames", "prefix", "baseClassName", "activeClassName", "doneClassName", "_proto", "phase", "className", "_this$getClassNames", "forceReflow", "_this$appliedClasses$", "_this$props", "_", "props", "_objectWithoutPropertiesLoose", "Rn", "Transition_default", "_extends", "CSSTransition_default", "client_x", "client_y", "_GlobalDragAndPasteState", "__publicField", "makeObservable", "observable", "runInAction", "__name", "GlobalDragAndPasteState", "global_drag_and_drop_state", "GlobalDropAndPasteHandler", "observer", "board", "display_version", "x", "BoardContext", "dragging_timeout", "A", "dragging", "set_dragging", "d", "dragging_on", "q", "e", "dragging_off", "permissions", "useCardPermission", "y", "listener", "paste_drop_listener", "record_mouse_position", "cancel_event", "$", "_", "CSSTransition_default", "i18n", "can_call_faas", "Snackbar", "files", "files_from_data_transfer", "ui_state", "card", "card_at", "AddCardActions", "below_card_insert_pos", "file", "error", "report_error", "backdrop", "card_elm", "card_uid"]
}