UNPKG

@elastic/eui

Version:

Elastic UI Component Library

81 lines (80 loc) 3.58 kB
import _extends from "@babel/runtime/helpers/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; var _excluded = ["droppableId", "direction", "isDropDisabled", "children", "className", "cloneDraggables", "spacing", "style", "type", "withPanel", "grow", "data-test-subj"]; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ import React, { useContext } from 'react'; import { Droppable } from 'react-beautiful-dnd'; import classNames from 'classnames'; import { EuiDragDropContextContext } from './drag_drop_context'; import { jsx as ___EmotionJSX } from "@emotion/react"; var spacingToClassNameMap = { none: null, s: 'euiDroppable--s', m: 'euiDroppable--m', l: 'euiDroppable--l' }; export var EuiDroppableContext = /*#__PURE__*/React.createContext({ cloneItems: false }); export var EuiDroppable = function EuiDroppable(_ref) { var droppableId = _ref.droppableId, direction = _ref.direction, _ref$isDropDisabled = _ref.isDropDisabled, isDropDisabled = _ref$isDropDisabled === void 0 ? false : _ref$isDropDisabled, children = _ref.children, className = _ref.className, _ref$cloneDraggables = _ref.cloneDraggables, cloneDraggables = _ref$cloneDraggables === void 0 ? false : _ref$cloneDraggables, _ref$spacing = _ref.spacing, spacing = _ref$spacing === void 0 ? 'none' : _ref$spacing, style = _ref.style, _ref$type = _ref.type, type = _ref$type === void 0 ? 'EUI_DEFAULT' : _ref$type, _ref$withPanel = _ref.withPanel, withPanel = _ref$withPanel === void 0 ? false : _ref$withPanel, _ref$grow = _ref.grow, grow = _ref$grow === void 0 ? false : _ref$grow, _ref$dataTestSubj = _ref['data-test-subj'], dataTestSubj = _ref$dataTestSubj === void 0 ? 'droppable' : _ref$dataTestSubj, rest = _objectWithoutProperties(_ref, _excluded); var _useContext = useContext(EuiDragDropContextContext), isDraggingType = _useContext.isDraggingType; var dropIsDisabled = cloneDraggables ? true : isDropDisabled; return ___EmotionJSX(Droppable, _extends({ isDropDisabled: dropIsDisabled, droppableId: droppableId, direction: direction, type: type }, rest), function (provided, snapshot) { var classes = classNames('euiDroppable', { 'euiDroppable--isDisabled': dropIsDisabled, 'euiDroppable--isDraggingOver': snapshot.isDraggingOver, 'euiDroppable--isDraggingType': isDraggingType === type, 'euiDroppable--withPanel': withPanel, 'euiDroppable--grow': grow, 'euiDroppable--noGrow': !grow }, spacingToClassNameMap[spacing], className); var placeholderClasses = classNames('euiDroppable__placeholder', { 'euiDroppable__placeholder--isHidden': cloneDraggables }); var DroppableElement = typeof children === 'function' ? children(provided, snapshot) : children; return ___EmotionJSX("div", _extends({}, provided.droppableProps, { ref: provided.innerRef, style: style, "data-test-subj": dataTestSubj, className: classes }), ___EmotionJSX(EuiDroppableContext.Provider, { value: { cloneItems: cloneDraggables } }, DroppableElement), ___EmotionJSX("div", { className: placeholderClasses }, provided.placeholder)); }); };