@pie-lib/drag 2.18.3-next.2 → 2.19.0-mui-update.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/lib/drag-in-the-blank-dp.js +28 -24
  3. package/lib/drag-in-the-blank-dp.js.map +1 -1
  4. package/lib/drag-provider.js +47 -0
  5. package/lib/drag-provider.js.map +1 -0
  6. package/lib/drag-type.js +2 -3
  7. package/lib/drag-type.js.map +1 -1
  8. package/lib/draggable-choice.js +87 -0
  9. package/lib/draggable-choice.js.map +1 -0
  10. package/lib/droppable-placeholder.js +33 -65
  11. package/lib/droppable-placeholder.js.map +1 -1
  12. package/lib/ica-dp.js +38 -26
  13. package/lib/ica-dp.js.map +1 -1
  14. package/lib/index.js +7 -35
  15. package/lib/index.js.map +1 -1
  16. package/lib/match-list-dp.js +38 -26
  17. package/lib/match-list-dp.js.map +1 -1
  18. package/lib/placeholder.js +77 -102
  19. package/lib/placeholder.js.map +1 -1
  20. package/lib/preview-component.js +67 -107
  21. package/lib/preview-component.js.map +1 -1
  22. package/lib/swap.js +1 -7
  23. package/lib/swap.js.map +1 -1
  24. package/lib/uid-context.js +4 -18
  25. package/lib/uid-context.js.map +1 -1
  26. package/package.json +12 -10
  27. package/src/drag-in-the-blank-dp.jsx +32 -15
  28. package/src/drag-provider.jsx +40 -0
  29. package/src/drag-type.js +1 -1
  30. package/src/draggable-choice.jsx +87 -0
  31. package/src/droppable-placeholder.jsx +38 -28
  32. package/src/ica-dp.jsx +41 -18
  33. package/src/index.js +4 -8
  34. package/src/match-list-dp.jsx +41 -18
  35. package/src/placeholder.jsx +64 -71
  36. package/src/preview-component.jsx +62 -70
  37. package/lib/choice.js +0 -129
  38. package/lib/choice.js.map +0 -1
  39. package/lib/with-drag-context.js +0 -59
  40. package/lib/with-drag-context.js.map +0 -1
  41. package/src/choice.jsx +0 -76
  42. package/src/with-drag-context.js +0 -32
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.19.0-mui-update.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/drag@2.18.2...@pie-lib/drag@2.19.0-mui-update.0) (2025-10-31)
7
+
8
+
9
+ ### Features
10
+
11
+ * drag library update ([fb7a4d0](https://github.com/pie-framework/pie-lib/commit/fb7a4d0ce761f2f4c1a122854cfa306abb8ea7c8))
12
+ * **drag:** update drag package to corresp to material v5 PD-5258 ([7400327](https://github.com/pie-framework/pie-lib/commit/740032735077939f4e05897aaf6b618bfa5b236d))
13
+ * bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
14
+
15
+
16
+
17
+
18
+
6
19
  ## [2.18.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/drag@2.18.1...@pie-lib/drag@2.18.2) (2025-10-14)
7
20
 
8
21
  **Note:** Version bump only for package @pie-lib/drag
@@ -1,35 +1,39 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
- exports.spec = exports["default"] = void 0;
9
-
10
- var _reactDnd = require("react-dnd");
11
-
7
+ exports.DragInTheBlankDroppable = DragInTheBlankDroppable;
8
+ exports["default"] = void 0;
9
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
10
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
11
+ var _react = _interopRequireDefault(require("react"));
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
12
13
  var _droppablePlaceholder = require("./droppable-placeholder");
14
+ var _excluded = ["id", "children", "disabled", "onDrop"];
15
+ // With @dnd-kit, the drop logic is handled in the DragProvider's onDragEnd callback
16
+ // This component now just wraps DroppablePlaceholder with drag-in-the-blank specific logic
13
17
 
14
- var _dragType = _interopRequireDefault(require("./drag-type"));
18
+ function DragInTheBlankDroppable(_ref) {
19
+ var id = _ref.id,
20
+ children = _ref.children,
21
+ disabled = _ref.disabled,
22
+ onDrop = _ref.onDrop,
23
+ rest = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
24
+ // The actual drop handling will be managed by the parent component
25
+ // through the DragProvider's onDragEnd callback
15
26
 
16
- var spec = {
17
- canDrop: function canDrop(props) {
18
- return !props.disabled;
19
- },
20
- drop: function drop() {
21
- return {
22
- dropped: true
23
- };
24
- }
27
+ return /*#__PURE__*/_react["default"].createElement(_droppablePlaceholder.DroppablePlaceholder, (0, _extends2["default"])({
28
+ id: id,
29
+ disabled: disabled
30
+ }, rest), children);
31
+ }
32
+ DragInTheBlankDroppable.propTypes = {
33
+ id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]).isRequired,
34
+ children: _propTypes["default"].node,
35
+ disabled: _propTypes["default"].bool,
36
+ onDrop: _propTypes["default"].func
25
37
  };
26
- exports.spec = spec;
27
- var WithTarget = (0, _reactDnd.DropTarget)(_dragType["default"].types.db, spec, function (connect, monitor) {
28
- return {
29
- connectDropTarget: connect.dropTarget(),
30
- isOver: monitor.isOver()
31
- };
32
- })(_droppablePlaceholder.DroppablePlaceholder);
33
- var _default = WithTarget;
34
- exports["default"] = _default;
38
+ var _default = exports["default"] = DragInTheBlankDroppable;
35
39
  //# sourceMappingURL=drag-in-the-blank-dp.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/drag-in-the-blank-dp.jsx"],"names":["spec","canDrop","props","disabled","drop","dropped","WithTarget","dragType","types","db","connect","monitor","connectDropTarget","dropTarget","isOver","DroppablePlaceholder"],"mappings":";;;;;;;;;AAAA;;AACA;;AACA;;AAEO,IAAMA,IAAI,GAAG;AAClBC,EAAAA,OAAO,EAAE,iBAACC,KAAD,EAAW;AAClB,WAAO,CAACA,KAAK,CAACC,QAAd;AACD,GAHiB;AAIlBC,EAAAA,IAAI,EAAE;AAAA,WAAO;AACXC,MAAAA,OAAO,EAAE;AADE,KAAP;AAAA;AAJY,CAAb;;AASP,IAAMC,UAAU,GAAG,0BAAWC,qBAASC,KAAT,CAAeC,EAA1B,EAA8BT,IAA9B,EAAoC,UAACU,OAAD,EAAUC,OAAV;AAAA,SAAuB;AAC5EC,IAAAA,iBAAiB,EAAEF,OAAO,CAACG,UAAR,EADyD;AAE5EC,IAAAA,MAAM,EAAEH,OAAO,CAACG,MAAR;AAFoE,GAAvB;AAAA,CAApC,EAGfC,0CAHe,CAAnB;eAKeT,U","sourcesContent":["import { DropTarget } from 'react-dnd';\nimport { DroppablePlaceholder } from './droppable-placeholder';\nimport dragType from './drag-type';\n\nexport const spec = {\n canDrop: (props) => {\n return !props.disabled;\n },\n drop: () => ({\n dropped: true,\n }),\n};\n\nconst WithTarget = DropTarget(dragType.types.db, spec, (connect, monitor) => ({\n connectDropTarget: connect.dropTarget(),\n isOver: monitor.isOver(),\n}))(DroppablePlaceholder);\n\nexport default WithTarget;\n"],"file":"drag-in-the-blank-dp.js"}
1
+ {"version":3,"file":"drag-in-the-blank-dp.js","names":["_react","_interopRequireDefault","require","_propTypes","_droppablePlaceholder","_excluded","DragInTheBlankDroppable","_ref","id","children","disabled","onDrop","rest","_objectWithoutProperties2","createElement","DroppablePlaceholder","_extends2","propTypes","PropTypes","oneOfType","string","number","isRequired","node","bool","func","_default","exports"],"sources":["../src/drag-in-the-blank-dp.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { DroppablePlaceholder } from './droppable-placeholder';\n\n// With @dnd-kit, the drop logic is handled in the DragProvider's onDragEnd callback\n// This component now just wraps DroppablePlaceholder with drag-in-the-blank specific logic\n\nexport function DragInTheBlankDroppable({ \n id, \n children, \n disabled, \n onDrop,\n ...rest \n}) {\n // The actual drop handling will be managed by the parent component\n // through the DragProvider's onDragEnd callback\n \n return (\n <DroppablePlaceholder\n id={id}\n disabled={disabled}\n {...rest}\n >\n {children}\n </DroppablePlaceholder>\n );\n}\n\nDragInTheBlankDroppable.propTypes = {\n id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,\n children: PropTypes.node,\n disabled: PropTypes.bool,\n onDrop: PropTypes.func,\n};\n\nexport default DragInTheBlankDroppable;\n"],"mappings":";;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,qBAAA,GAAAF,OAAA;AAA+D,IAAAG,SAAA;AAE/D;AACA;;AAEO,SAASC,uBAAuBA,CAAAC,IAAA,EAMpC;EAAA,IALDC,EAAE,GAAAD,IAAA,CAAFC,EAAE;IACFC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACRC,QAAQ,GAAAH,IAAA,CAARG,QAAQ;IACRC,MAAM,GAAAJ,IAAA,CAANI,MAAM;IACHC,IAAI,OAAAC,yBAAA,aAAAN,IAAA,EAAAF,SAAA;EAEP;EACA;;EAEA,oBACEL,MAAA,YAAAc,aAAA,CAACV,qBAAA,CAAAW,oBAAoB,MAAAC,SAAA;IACnBR,EAAE,EAAEA,EAAG;IACPE,QAAQ,EAAEA;EAAS,GACfE,IAAI,GAEPH,QACmB,CAAC;AAE3B;AAEAH,uBAAuB,CAACW,SAAS,GAAG;EAClCT,EAAE,EAAEU,qBAAS,CAACC,SAAS,CAAC,CAACD,qBAAS,CAACE,MAAM,EAAEF,qBAAS,CAACG,MAAM,CAAC,CAAC,CAACC,UAAU;EACxEb,QAAQ,EAAES,qBAAS,CAACK,IAAI;EACxBb,QAAQ,EAAEQ,qBAAS,CAACM,IAAI;EACxBb,MAAM,EAAEO,qBAAS,CAACO;AACpB,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,cAEarB,uBAAuB","ignoreList":[]}
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ var _typeof = require("@babel/runtime/helpers/typeof");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.DragProvider = DragProvider;
9
+ exports["default"] = void 0;
10
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
11
+ var _react = _interopRequireWildcard(require("react"));
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+ var _core = require("@dnd-kit/core");
14
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
15
+ function DragProvider(_ref) {
16
+ var children = _ref.children,
17
+ onDragEnd = _ref.onDragEnd;
18
+ var _useState = (0, _react.useState)(null),
19
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
20
+ activeId = _useState2[0],
21
+ setActiveId = _useState2[1];
22
+ var sensors = (0, _core.useSensors)((0, _core.useSensor)(_core.PointerSensor, {
23
+ activationConstraint: {
24
+ distance: 8
25
+ }
26
+ }), (0, _core.useSensor)(_core.KeyboardSensor));
27
+ var handleDragStart = function handleDragStart(event) {
28
+ setActiveId(event.active.id);
29
+ };
30
+ var handleDragEnd = function handleDragEnd(event) {
31
+ setActiveId(null);
32
+ if (onDragEnd) {
33
+ onDragEnd(event);
34
+ }
35
+ };
36
+ return /*#__PURE__*/_react["default"].createElement(_core.DndContext, {
37
+ sensors: sensors,
38
+ onDragStart: handleDragStart,
39
+ onDragEnd: handleDragEnd
40
+ }, children);
41
+ }
42
+ DragProvider.propTypes = {
43
+ children: _propTypes["default"].node.isRequired,
44
+ onDragEnd: _propTypes["default"].func
45
+ };
46
+ var _default = exports["default"] = DragProvider;
47
+ //# sourceMappingURL=drag-provider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"drag-provider.js","names":["_react","_interopRequireWildcard","require","_propTypes","_interopRequireDefault","_core","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","_typeof","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","DragProvider","_ref","children","onDragEnd","_useState","useState","_useState2","_slicedToArray2","activeId","setActiveId","sensors","useSensors","useSensor","PointerSensor","activationConstraint","distance","KeyboardSensor","handleDragStart","event","active","id","handleDragEnd","createElement","DndContext","onDragStart","propTypes","PropTypes","node","isRequired","func","_default","exports"],"sources":["../src/drag-provider.jsx"],"sourcesContent":["import React, { useState } from 'react';\nimport PropTypes from 'prop-types';\nimport { DndContext, PointerSensor, KeyboardSensor, useSensor, useSensors } from '@dnd-kit/core';\n\nexport function DragProvider({ children, onDragEnd }) {\n const [activeId, setActiveId] = useState(null);\n \n const sensors = useSensors(\n useSensor(PointerSensor, { activationConstraint: { distance: 8 }}),\n useSensor(KeyboardSensor)\n );\n\n const handleDragStart = (event) => {\n setActiveId(event.active.id);\n };\n\n const handleDragEnd = (event) => {\n setActiveId(null);\n if (onDragEnd) {\n onDragEnd(event);\n }\n };\n\n return (\n <DndContext \n sensors={sensors} \n onDragStart={handleDragStart}\n onDragEnd={handleDragEnd}\n >\n {children}\n </DndContext>\n );\n}\n\nDragProvider.propTypes = {\n children: PropTypes.node.isRequired,\n onDragEnd: PropTypes.func,\n};\n\nexport default DragProvider;"],"mappings":";;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AAAiG,SAAAD,wBAAAK,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAP,uBAAA,YAAAA,wBAAAK,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,mBAAAT,CAAA,iBAAAA,CAAA,gBAAAU,OAAA,CAAAV,CAAA,0BAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,cAAAM,EAAA,IAAAd,CAAA,gBAAAc,EAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,EAAA,OAAAP,CAAA,IAAAD,CAAA,GAAAW,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAnB,CAAA,EAAAc,EAAA,OAAAP,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAM,EAAA,EAAAP,CAAA,IAAAC,CAAA,CAAAM,EAAA,IAAAd,CAAA,CAAAc,EAAA,WAAAN,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAE1F,SAASmB,YAAYA,CAAAC,IAAA,EAA0B;EAAA,IAAvBC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;IAAEC,SAAS,GAAAF,IAAA,CAATE,SAAS;EAChD,IAAAC,SAAA,GAAgC,IAAAC,eAAQ,EAAC,IAAI,CAAC;IAAAC,UAAA,OAAAC,eAAA,aAAAH,SAAA;IAAvCI,QAAQ,GAAAF,UAAA;IAAEG,WAAW,GAAAH,UAAA;EAE5B,IAAMI,OAAO,GAAG,IAAAC,gBAAU,EACxB,IAAAC,eAAS,EAACC,mBAAa,EAAE;IAAEC,oBAAoB,EAAE;MAAEC,QAAQ,EAAE;IAAE;EAAC,CAAC,CAAC,EAClE,IAAAH,eAAS,EAACI,oBAAc,CAC1B,CAAC;EAED,IAAMC,eAAe,GAAG,SAAlBA,eAAeA,CAAIC,KAAK,EAAK;IACjCT,WAAW,CAACS,KAAK,CAACC,MAAM,CAACC,EAAE,CAAC;EAC9B,CAAC;EAED,IAAMC,aAAa,GAAG,SAAhBA,aAAaA,CAAIH,KAAK,EAAK;IAC/BT,WAAW,CAAC,IAAI,CAAC;IACjB,IAAIN,SAAS,EAAE;MACbA,SAAS,CAACe,KAAK,CAAC;IAClB;EACF,CAAC;EAED,oBACE5C,MAAA,YAAAgD,aAAA,CAAC3C,KAAA,CAAA4C,UAAU;IACTb,OAAO,EAAEA,OAAQ;IACjBc,WAAW,EAAEP,eAAgB;IAC7Bd,SAAS,EAAEkB;EAAc,GAExBnB,QACS,CAAC;AAEjB;AAEAF,YAAY,CAACyB,SAAS,GAAG;EACvBvB,QAAQ,EAAEwB,qBAAS,CAACC,IAAI,CAACC,UAAU;EACnCzB,SAAS,EAAEuB,qBAAS,CAACG;AACvB,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,cAEa/B,YAAY","ignoreList":[]}
package/lib/drag-type.js CHANGED
@@ -4,12 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
- var _default = {
7
+ var _default = exports["default"] = {
8
8
  types: {
9
- ica: 'react-dnd-response',
9
+ ica: 'dnd-kit-response',
10
10
  ml: 'Answer',
11
11
  db: 'MaskBlank'
12
12
  }
13
13
  };
14
- exports["default"] = _default;
15
14
  //# sourceMappingURL=drag-type.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/drag-type.js"],"names":["types","ica","ml","db"],"mappings":";;;;;;eAAe;AACbA,EAAAA,KAAK,EAAE;AACLC,IAAAA,GAAG,EAAE,oBADA;AAELC,IAAAA,EAAE,EAAE,QAFC;AAGLC,IAAAA,EAAE,EAAE;AAHC;AADM,C","sourcesContent":["export default {\n types: {\n ica: 'react-dnd-response',\n ml: 'Answer',\n db: 'MaskBlank',\n },\n};\n"],"file":"drag-type.js"}
1
+ {"version":3,"file":"drag-type.js","names":["types","ica","ml","db"],"sources":["../src/drag-type.js"],"sourcesContent":["export default {\n types: {\n ica: 'dnd-kit-response',\n ml: 'Answer',\n db: 'MaskBlank',\n },\n};\n"],"mappings":";;;;;;oCAAe;EACbA,KAAK,EAAE;IACLC,GAAG,EAAE,kBAAkB;IACvBC,EAAE,EAAE,QAAQ;IACZC,EAAE,EAAE;EACN;AACF,CAAC","ignoreList":[]}
@@ -0,0 +1,87 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.DRAG_TYPE = void 0;
8
+ exports.DraggableChoice = DraggableChoice;
9
+ exports["default"] = void 0;
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+ var _react = _interopRequireDefault(require("react"));
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+ var _styles = require("@mui/material/styles");
14
+ var _core = require("@dnd-kit/core");
15
+ var _utilities = require("@dnd-kit/utilities");
16
+ var _colors = require("@mui/material/colors");
17
+ var DRAG_TYPE = exports.DRAG_TYPE = 'CHOICE';
18
+ var StyledChoice = (0, _styles.styled)('div')(function (_ref) {
19
+ var theme = _ref.theme,
20
+ isDragging = _ref.isDragging;
21
+ return {
22
+ backgroundColor: theme.palette.background.paper,
23
+ border: "solid 1px ".concat(_colors.grey[400]),
24
+ padding: theme.spacing(1),
25
+ minHeight: '30px',
26
+ minWidth: theme.spacing(20),
27
+ maxWidth: theme.spacing(75),
28
+ cursor: 'grab',
29
+ opacity: isDragging ? 0.5 : 1,
30
+ '&:active': {
31
+ cursor: 'grabbing'
32
+ }
33
+ };
34
+ });
35
+ function DraggableChoice(_ref2) {
36
+ var choice = _ref2.choice,
37
+ children = _ref2.children,
38
+ className = _ref2.className,
39
+ disabled = _ref2.disabled,
40
+ category = _ref2.category,
41
+ alternateResponseIndex = _ref2.alternateResponseIndex,
42
+ choiceIndex = _ref2.choiceIndex,
43
+ onRemoveChoice = _ref2.onRemoveChoice;
44
+ var _useDraggable = (0, _core.useDraggable)({
45
+ id: choice.id,
46
+ disabled: disabled,
47
+ data: {
48
+ value: choice.value,
49
+ choiceId: choice.id,
50
+ from: category === null || category === void 0 ? void 0 : category.id,
51
+ alternateResponseIndex: alternateResponseIndex,
52
+ choiceIndex: choiceIndex,
53
+ onRemoveChoice: onRemoveChoice
54
+ }
55
+ }),
56
+ attributes = _useDraggable.attributes,
57
+ listeners = _useDraggable.listeners,
58
+ setNodeRef = _useDraggable.setNodeRef,
59
+ transform = _useDraggable.transform,
60
+ isDragging = _useDraggable.isDragging;
61
+ var style = {
62
+ transform: _utilities.CSS.Translate.toString(transform)
63
+ };
64
+ return /*#__PURE__*/_react["default"].createElement(StyledChoice, (0, _extends2["default"])({
65
+ ref: setNodeRef,
66
+ style: style,
67
+ className: className,
68
+ isDragging: isDragging
69
+ }, attributes, listeners), children);
70
+ }
71
+ DraggableChoice.propTypes = {
72
+ choice: _propTypes["default"].shape({
73
+ id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]).isRequired,
74
+ value: _propTypes["default"].any
75
+ }).isRequired,
76
+ children: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].node), _propTypes["default"].node]),
77
+ className: _propTypes["default"].string,
78
+ disabled: _propTypes["default"].bool,
79
+ category: _propTypes["default"].shape({
80
+ id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number])
81
+ }),
82
+ alternateResponseIndex: _propTypes["default"].number,
83
+ choiceIndex: _propTypes["default"].number,
84
+ onRemoveChoice: _propTypes["default"].func
85
+ };
86
+ var _default = exports["default"] = DraggableChoice;
87
+ //# sourceMappingURL=draggable-choice.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draggable-choice.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_core","_utilities","_colors","DRAG_TYPE","exports","StyledChoice","styled","_ref","theme","isDragging","backgroundColor","palette","background","paper","border","concat","grey","padding","spacing","minHeight","minWidth","maxWidth","cursor","opacity","DraggableChoice","_ref2","choice","children","className","disabled","category","alternateResponseIndex","choiceIndex","onRemoveChoice","_useDraggable","useDraggable","id","data","value","choiceId","from","attributes","listeners","setNodeRef","transform","style","CSS","Translate","toString","createElement","_extends2","ref","propTypes","PropTypes","shape","oneOfType","string","number","isRequired","any","arrayOf","node","bool","func","_default"],"sources":["../src/draggable-choice.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { styled } from '@mui/material/styles';\nimport { useDraggable } from '@dnd-kit/core';\nimport { CSS } from '@dnd-kit/utilities';\nimport { grey } from '@mui/material/colors';\n\nexport const DRAG_TYPE = 'CHOICE';\n\nconst StyledChoice = styled('div')(({ theme, isDragging }) => ({\n backgroundColor: theme.palette.background.paper,\n border: `solid 1px ${grey[400]}`,\n padding: theme.spacing(1),\n minHeight: '30px',\n minWidth: theme.spacing(20),\n maxWidth: theme.spacing(75),\n cursor: 'grab',\n opacity: isDragging ? 0.5 : 1,\n '&:active': {\n cursor: 'grabbing',\n },\n}));\n\nexport function DraggableChoice({ \n choice, \n children, \n className,\n disabled,\n category,\n alternateResponseIndex,\n choiceIndex,\n onRemoveChoice\n}) {\n const { \n attributes, \n listeners, \n setNodeRef, \n transform, \n isDragging \n } = useDraggable({\n id: choice.id,\n disabled: disabled,\n data: { \n value: choice.value,\n choiceId: choice.id,\n from: category?.id,\n alternateResponseIndex,\n choiceIndex,\n onRemoveChoice\n }\n });\n\n const style = {\n transform: CSS.Translate.toString(transform),\n };\n\n return (\n <StyledChoice \n ref={setNodeRef}\n style={style}\n className={className}\n isDragging={isDragging}\n {...attributes}\n {...listeners}\n >\n {children}\n </StyledChoice>\n );\n}\n\nDraggableChoice.propTypes = {\n choice: PropTypes.shape({\n id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,\n value: PropTypes.any,\n }).isRequired,\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]),\n className: PropTypes.string,\n disabled: PropTypes.bool,\n category: PropTypes.shape({\n id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n }),\n alternateResponseIndex: PropTypes.number,\n choiceIndex: PropTypes.number,\n onRemoveChoice: PropTypes.func,\n};\n\nexport default DraggableChoice;\n"],"mappings":"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","ignoreList":[]}
@@ -1,82 +1,50 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
- exports.DroppablePlaceholder = void 0;
9
-
10
- var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
11
-
12
- var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
13
-
14
- var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
15
-
16
- var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
17
-
18
- var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
19
-
20
- var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
21
-
7
+ exports.DroppablePlaceholder = DroppablePlaceholder;
8
+ exports["default"] = void 0;
22
9
  var _react = _interopRequireDefault(require("react"));
23
-
24
10
  var _placeholder = _interopRequireDefault(require("./placeholder"));
25
-
26
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
27
-
28
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
29
-
30
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
31
-
12
+ var _core = require("@dnd-kit/core");
32
13
  var preventInteractionStyle = {
33
14
  flex: 1
34
15
  };
35
-
36
- var DroppablePlaceholder = /*#__PURE__*/function (_React$Component) {
37
- (0, _inherits2["default"])(DroppablePlaceholder, _React$Component);
38
-
39
- var _super = _createSuper(DroppablePlaceholder);
40
-
41
- function DroppablePlaceholder() {
42
- (0, _classCallCheck2["default"])(this, DroppablePlaceholder);
43
- return _super.apply(this, arguments);
44
- }
45
-
46
- (0, _createClass2["default"])(DroppablePlaceholder, [{
47
- key: "render",
48
- value: function render() {
49
- var _this$props = this.props,
50
- children = _this$props.children,
51
- connectDropTarget = _this$props.connectDropTarget,
52
- isOver = _this$props.isOver,
53
- disabled = _this$props.disabled,
54
- classes = _this$props.classes,
55
- isVerticalPool = _this$props.isVerticalPool,
56
- minHeight = _this$props.minHeight;
57
- return connectDropTarget( /*#__PURE__*/_react["default"].createElement("div", {
58
- style: preventInteractionStyle
59
- }, /*#__PURE__*/_react["default"].createElement(_placeholder["default"], {
60
- disabled: disabled,
61
- isOver: isOver,
62
- choiceBoard: true,
63
- className: classes,
64
- isVerticalPool: isVerticalPool,
65
- minHeight: minHeight
66
- }, children)));
67
- }
68
- }]);
69
- return DroppablePlaceholder;
70
- }(_react["default"].Component);
71
-
72
- exports.DroppablePlaceholder = DroppablePlaceholder;
73
- (0, _defineProperty2["default"])(DroppablePlaceholder, "propTypes", {
74
- classes: _propTypes["default"].object,
75
- connectDropTarget: _propTypes["default"].func.isRequired,
76
- isOver: _propTypes["default"].bool,
16
+ function DroppablePlaceholder(_ref) {
17
+ var id = _ref.id,
18
+ children = _ref.children,
19
+ disabled = _ref.disabled,
20
+ classes = _ref.classes,
21
+ isVerticalPool = _ref.isVerticalPool,
22
+ minHeight = _ref.minHeight;
23
+ var _useDroppable = (0, _core.useDroppable)({
24
+ id: id,
25
+ disabled: disabled
26
+ }),
27
+ setNodeRef = _useDroppable.setNodeRef,
28
+ isOver = _useDroppable.isOver;
29
+ return /*#__PURE__*/_react["default"].createElement("div", {
30
+ ref: setNodeRef,
31
+ style: preventInteractionStyle
32
+ }, /*#__PURE__*/_react["default"].createElement(_placeholder["default"], {
33
+ disabled: disabled,
34
+ isOver: isOver,
35
+ choiceBoard: true,
36
+ className: classes,
37
+ isVerticalPool: isVerticalPool,
38
+ minHeight: minHeight
39
+ }, children));
40
+ }
41
+ DroppablePlaceholder.propTypes = {
42
+ id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]).isRequired,
77
43
  children: _propTypes["default"].oneOfType([_propTypes["default"].arrayOf(_propTypes["default"].node), _propTypes["default"].node]).isRequired,
78
44
  disabled: _propTypes["default"].bool,
45
+ classes: _propTypes["default"].object,
79
46
  isVerticalPool: _propTypes["default"].bool,
80
47
  minHeight: _propTypes["default"].number
81
- });
48
+ };
49
+ var _default = exports["default"] = DroppablePlaceholder;
82
50
  //# sourceMappingURL=droppable-placeholder.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/droppable-placeholder.jsx"],"names":["preventInteractionStyle","flex","DroppablePlaceholder","props","children","connectDropTarget","isOver","disabled","classes","isVerticalPool","minHeight","React","Component","PropTypes","object","func","isRequired","bool","oneOfType","arrayOf","node","number"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;;;;;AAEA,IAAMA,uBAAuB,GAAG;AAC9BC,EAAAA,IAAI,EAAE;AADwB,CAAhC;;IAIaC,oB;;;;;;;;;;;;WAWX,kBAAS;AACP,wBAA8F,KAAKC,KAAnG;AAAA,UAAQC,QAAR,eAAQA,QAAR;AAAA,UAAkBC,iBAAlB,eAAkBA,iBAAlB;AAAA,UAAqCC,MAArC,eAAqCA,MAArC;AAAA,UAA6CC,QAA7C,eAA6CA,QAA7C;AAAA,UAAuDC,OAAvD,eAAuDA,OAAvD;AAAA,UAAgEC,cAAhE,eAAgEA,cAAhE;AAAA,UAAgFC,SAAhF,eAAgFA,SAAhF;AAEA,aAAOL,iBAAiB,eACtB;AAAK,QAAA,KAAK,EAAEL;AAAZ,sBACE,gCAAC,uBAAD;AACE,QAAA,QAAQ,EAAEO,QADZ;AAEE,QAAA,MAAM,EAAED,MAFV;AAGE,QAAA,WAAW,EAAE,IAHf;AAIE,QAAA,SAAS,EAAEE,OAJb;AAKE,QAAA,cAAc,EAAEC,cALlB;AAME,QAAA,SAAS,EAAEC;AANb,SAQGN,QARH,CADF,CADsB,CAAxB;AAcD;;;EA5BuCO,kBAAMC,S;;;iCAAnCV,oB,eACQ;AACjBM,EAAAA,OAAO,EAAEK,sBAAUC,MADF;AAEjBT,EAAAA,iBAAiB,EAAEQ,sBAAUE,IAAV,CAAeC,UAFjB;AAGjBV,EAAAA,MAAM,EAAEO,sBAAUI,IAHD;AAIjBb,EAAAA,QAAQ,EAAES,sBAAUK,SAAV,CAAoB,CAACL,sBAAUM,OAAV,CAAkBN,sBAAUO,IAA5B,CAAD,EAAoCP,sBAAUO,IAA9C,CAApB,EAAyEJ,UAJlE;AAKjBT,EAAAA,QAAQ,EAAEM,sBAAUI,IALH;AAMjBR,EAAAA,cAAc,EAAEI,sBAAUI,IANT;AAOjBP,EAAAA,SAAS,EAAEG,sBAAUQ;AAPJ,C","sourcesContent":["import React from 'react';\nimport PlaceHolder from './placeholder';\nimport PropTypes from 'prop-types';\n\nconst preventInteractionStyle = {\n flex: 1,\n};\n\nexport class DroppablePlaceholder extends React.Component {\n static propTypes = {\n classes: PropTypes.object,\n connectDropTarget: PropTypes.func.isRequired,\n isOver: PropTypes.bool,\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired,\n disabled: PropTypes.bool,\n isVerticalPool: PropTypes.bool,\n minHeight: PropTypes.number,\n };\n\n render() {\n const { children, connectDropTarget, isOver, disabled, classes, isVerticalPool, minHeight } = this.props;\n\n return connectDropTarget(\n <div style={preventInteractionStyle}>\n <PlaceHolder\n disabled={disabled}\n isOver={isOver}\n choiceBoard={true}\n className={classes}\n isVerticalPool={isVerticalPool}\n minHeight={minHeight}\n >\n {children}\n </PlaceHolder>\n </div>,\n );\n }\n}\n"],"file":"droppable-placeholder.js"}
1
+ {"version":3,"file":"droppable-placeholder.js","names":["_react","_interopRequireDefault","require","_placeholder","_propTypes","_core","preventInteractionStyle","flex","DroppablePlaceholder","_ref","id","children","disabled","classes","isVerticalPool","minHeight","_useDroppable","useDroppable","setNodeRef","isOver","createElement","ref","style","choiceBoard","className","propTypes","PropTypes","oneOfType","string","number","isRequired","arrayOf","node","bool","object","_default","exports"],"sources":["../src/droppable-placeholder.jsx"],"sourcesContent":["import React from 'react';\nimport PlaceHolder from './placeholder';\nimport PropTypes from 'prop-types';\nimport { useDroppable } from '@dnd-kit/core';\n\nconst preventInteractionStyle = {\n flex: 1,\n};\n\nexport function DroppablePlaceholder({ \n id,\n children, \n disabled, \n classes, \n isVerticalPool, \n minHeight \n}) {\n const { setNodeRef, isOver } = useDroppable({ \n id,\n disabled \n });\n\n return (\n <div ref={setNodeRef} style={preventInteractionStyle}>\n <PlaceHolder\n disabled={disabled}\n isOver={isOver}\n choiceBoard={true}\n className={classes}\n isVerticalPool={isVerticalPool}\n minHeight={minHeight}\n >\n {children}\n </PlaceHolder>\n </div>\n );\n}\n\nDroppablePlaceholder.propTypes = {\n id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired,\n disabled: PropTypes.bool,\n classes: PropTypes.object,\n isVerticalPool: PropTypes.bool,\n minHeight: PropTypes.number,\n};\n\nexport default DroppablePlaceholder;\n"],"mappings":";;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,UAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AAEA,IAAMI,uBAAuB,GAAG;EAC9BC,IAAI,EAAE;AACR,CAAC;AAEM,SAASC,oBAAoBA,CAAAC,IAAA,EAOjC;EAAA,IANDC,EAAE,GAAAD,IAAA,CAAFC,EAAE;IACFC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACRC,QAAQ,GAAAH,IAAA,CAARG,QAAQ;IACRC,OAAO,GAAAJ,IAAA,CAAPI,OAAO;IACPC,cAAc,GAAAL,IAAA,CAAdK,cAAc;IACdC,SAAS,GAAAN,IAAA,CAATM,SAAS;EAET,IAAAC,aAAA,GAA+B,IAAAC,kBAAY,EAAC;MAC1CP,EAAE,EAAFA,EAAE;MACFE,QAAQ,EAARA;IACF,CAAC,CAAC;IAHMM,UAAU,GAAAF,aAAA,CAAVE,UAAU;IAAEC,MAAM,GAAAH,aAAA,CAANG,MAAM;EAK1B,oBACEnB,MAAA,YAAAoB,aAAA;IAAKC,GAAG,EAAEH,UAAW;IAACI,KAAK,EAAEhB;EAAwB,gBACnDN,MAAA,YAAAoB,aAAA,CAACjB,YAAA,WAAW;IACVS,QAAQ,EAAEA,QAAS;IACnBO,MAAM,EAAEA,MAAO;IACfI,WAAW,EAAE,IAAK;IAClBC,SAAS,EAAEX,OAAQ;IACnBC,cAAc,EAAEA,cAAe;IAC/BC,SAAS,EAAEA;EAAU,GAEpBJ,QACU,CACV,CAAC;AAEV;AAEAH,oBAAoB,CAACiB,SAAS,GAAG;EAC/Bf,EAAE,EAAEgB,qBAAS,CAACC,SAAS,CAAC,CAACD,qBAAS,CAACE,MAAM,EAAEF,qBAAS,CAACG,MAAM,CAAC,CAAC,CAACC,UAAU;EACxEnB,QAAQ,EAAEe,qBAAS,CAACC,SAAS,CAAC,CAACD,qBAAS,CAACK,OAAO,CAACL,qBAAS,CAACM,IAAI,CAAC,EAAEN,qBAAS,CAACM,IAAI,CAAC,CAAC,CAACF,UAAU;EAC7FlB,QAAQ,EAAEc,qBAAS,CAACO,IAAI;EACxBpB,OAAO,EAAEa,qBAAS,CAACQ,MAAM;EACzBpB,cAAc,EAAEY,qBAAS,CAACO,IAAI;EAC9BlB,SAAS,EAAEW,qBAAS,CAACG;AACvB,CAAC;AAAC,IAAAM,QAAA,GAAAC,OAAA,cAEa5B,oBAAoB","ignoreList":[]}
package/lib/ica-dp.js CHANGED
@@ -1,37 +1,49 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
4
  Object.defineProperty(exports, "__esModule", {
6
5
  value: true
7
6
  });
8
- exports.spec = exports["default"] = void 0;
9
-
10
- var _reactDnd = require("react-dnd");
11
-
7
+ exports.ICADroppable = ICADroppable;
8
+ exports["default"] = void 0;
9
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
10
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
11
+ var _react = _interopRequireDefault(require("react"));
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
12
13
  var _droppablePlaceholder = require("./droppable-placeholder");
14
+ var _excluded = ["id", "children", "disabled", "onRemoveAnswer"];
15
+ // With @dnd-kit, the drop logic is handled in the DragProvider's onDragEnd callback
16
+ // This component now just wraps DroppablePlaceholder with ICA specific logic
13
17
 
14
- var _dragType = _interopRequireDefault(require("./drag-type"));
15
-
16
- var spec = {
17
- canDrop: function canDrop(props) {
18
- return !props.disabled;
19
- },
20
- drop: function drop(props, monitor) {
21
- var item = monitor.getItem();
18
+ function ICADroppable(_ref) {
19
+ var id = _ref.id,
20
+ children = _ref.children,
21
+ disabled = _ref.disabled,
22
+ onRemoveAnswer = _ref.onRemoveAnswer,
23
+ rest = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
24
+ // The actual drop handling will be managed by the parent component
25
+ // through the DragProvider's onDragEnd callback
26
+ // The onRemoveAnswer logic should be handled in the parent's onDragEnd:
27
+ //
28
+ // const handleDragEnd = (event) => {
29
+ // if (event.over && event.active) {
30
+ // const item = event.active.data.current;
31
+ // if (onRemoveAnswer) {
32
+ // onRemoveAnswer(item);
33
+ // }
34
+ // }
35
+ // };
22
36
 
23
- if (props.onRemoveAnswer) {
24
- props.onRemoveAnswer(item);
25
- }
26
- }
37
+ return /*#__PURE__*/_react["default"].createElement(_droppablePlaceholder.DroppablePlaceholder, (0, _extends2["default"])({
38
+ id: id,
39
+ disabled: disabled
40
+ }, rest), children);
41
+ }
42
+ ICADroppable.propTypes = {
43
+ id: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].number]).isRequired,
44
+ children: _propTypes["default"].node,
45
+ disabled: _propTypes["default"].bool,
46
+ onRemoveAnswer: _propTypes["default"].func
27
47
  };
28
- exports.spec = spec;
29
- var WithTarget = (0, _reactDnd.DropTarget)(_dragType["default"].types.ica, spec, function (connect, monitor) {
30
- return {
31
- connectDropTarget: connect.dropTarget(),
32
- isOver: monitor.isOver()
33
- };
34
- })(_droppablePlaceholder.DroppablePlaceholder);
35
- var _default = WithTarget;
36
- exports["default"] = _default;
48
+ var _default = exports["default"] = ICADroppable;
37
49
  //# sourceMappingURL=ica-dp.js.map
package/lib/ica-dp.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/ica-dp.jsx"],"names":["spec","canDrop","props","disabled","drop","monitor","item","getItem","onRemoveAnswer","WithTarget","dragType","types","ica","connect","connectDropTarget","dropTarget","isOver","DroppablePlaceholder"],"mappings":";;;;;;;;;AAAA;;AACA;;AACA;;AAEO,IAAMA,IAAI,GAAG;AAClBC,EAAAA,OAAO,EAAE,iBAACC,KAAD,EAAW;AAClB,WAAO,CAACA,KAAK,CAACC,QAAd;AACD,GAHiB;AAIlBC,EAAAA,IAAI,EAAE,cAACF,KAAD,EAAQG,OAAR,EAAoB;AACxB,QAAMC,IAAI,GAAGD,OAAO,CAACE,OAAR,EAAb;;AAEA,QAAIL,KAAK,CAACM,cAAV,EAA0B;AACxBN,MAAAA,KAAK,CAACM,cAAN,CAAqBF,IAArB;AACD;AACF;AAViB,CAAb;;AAaP,IAAMG,UAAU,GAAG,0BAAWC,qBAASC,KAAT,CAAeC,GAA1B,EAA+BZ,IAA/B,EAAqC,UAACa,OAAD,EAAUR,OAAV;AAAA,SAAuB;AAC7ES,IAAAA,iBAAiB,EAAED,OAAO,CAACE,UAAR,EAD0D;AAE7EC,IAAAA,MAAM,EAAEX,OAAO,CAACW,MAAR;AAFqE,GAAvB;AAAA,CAArC,EAGfC,0CAHe,CAAnB;eAKeR,U","sourcesContent":["import { DropTarget } from 'react-dnd';\nimport { DroppablePlaceholder } from './droppable-placeholder';\nimport dragType from './drag-type';\n\nexport const spec = {\n canDrop: (props) => {\n return !props.disabled;\n },\n drop: (props, monitor) => {\n const item = monitor.getItem();\n\n if (props.onRemoveAnswer) {\n props.onRemoveAnswer(item);\n }\n },\n};\n\nconst WithTarget = DropTarget(dragType.types.ica, spec, (connect, monitor) => ({\n connectDropTarget: connect.dropTarget(),\n isOver: monitor.isOver(),\n}))(DroppablePlaceholder);\n\nexport default WithTarget;\n"],"file":"ica-dp.js"}
1
+ {"version":3,"file":"ica-dp.js","names":["_react","_interopRequireDefault","require","_propTypes","_droppablePlaceholder","_excluded","ICADroppable","_ref","id","children","disabled","onRemoveAnswer","rest","_objectWithoutProperties2","createElement","DroppablePlaceholder","_extends2","propTypes","PropTypes","oneOfType","string","number","isRequired","node","bool","func","_default","exports"],"sources":["../src/ica-dp.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { DroppablePlaceholder } from './droppable-placeholder';\n\n// With @dnd-kit, the drop logic is handled in the DragProvider's onDragEnd callback\n// This component now just wraps DroppablePlaceholder with ICA specific logic\n\nexport function ICADroppable({ \n id, \n children, \n disabled, \n onRemoveAnswer,\n ...rest \n}) {\n // The actual drop handling will be managed by the parent component\n // through the DragProvider's onDragEnd callback\n // The onRemoveAnswer logic should be handled in the parent's onDragEnd:\n // \n // const handleDragEnd = (event) => {\n // if (event.over && event.active) {\n // const item = event.active.data.current;\n // if (onRemoveAnswer) {\n // onRemoveAnswer(item);\n // }\n // }\n // };\n \n return (\n <DroppablePlaceholder\n id={id}\n disabled={disabled}\n {...rest}\n >\n {children}\n </DroppablePlaceholder>\n );\n}\n\nICADroppable.propTypes = {\n id: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,\n children: PropTypes.node,\n disabled: PropTypes.bool,\n onRemoveAnswer: PropTypes.func,\n};\n\nexport default ICADroppable;\n"],"mappings":";;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,qBAAA,GAAAF,OAAA;AAA+D,IAAAG,SAAA;AAE/D;AACA;;AAEO,SAASC,YAAYA,CAAAC,IAAA,EAMzB;EAAA,IALDC,EAAE,GAAAD,IAAA,CAAFC,EAAE;IACFC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACRC,QAAQ,GAAAH,IAAA,CAARG,QAAQ;IACRC,cAAc,GAAAJ,IAAA,CAAdI,cAAc;IACXC,IAAI,OAAAC,yBAAA,aAAAN,IAAA,EAAAF,SAAA;EAEP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;EAEA,oBACEL,MAAA,YAAAc,aAAA,CAACV,qBAAA,CAAAW,oBAAoB,MAAAC,SAAA;IACnBR,EAAE,EAAEA,EAAG;IACPE,QAAQ,EAAEA;EAAS,GACfE,IAAI,GAEPH,QACmB,CAAC;AAE3B;AAEAH,YAAY,CAACW,SAAS,GAAG;EACvBT,EAAE,EAAEU,qBAAS,CAACC,SAAS,CAAC,CAACD,qBAAS,CAACE,MAAM,EAAEF,qBAAS,CAACG,MAAM,CAAC,CAAC,CAACC,UAAU;EACxEb,QAAQ,EAAES,qBAAS,CAACK,IAAI;EACxBb,QAAQ,EAAEQ,qBAAS,CAACM,IAAI;EACxBb,cAAc,EAAEO,qBAAS,CAACO;AAC5B,CAAC;AAAC,IAAAC,QAAA,GAAAC,OAAA,cAEarB,YAAY","ignoreList":[]}
package/lib/index.js CHANGED
@@ -1,34 +1,26 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
4
  var _typeof = require("@babel/runtime/helpers/typeof");
6
-
7
5
  Object.defineProperty(exports, "__esModule", {
8
6
  value: true
9
7
  });
10
- Object.defineProperty(exports, "Choice", {
11
- enumerable: true,
12
- get: function get() {
13
- return _choice["default"];
14
- }
15
- });
16
8
  Object.defineProperty(exports, "DragDroppablePlaceholder", {
17
9
  enumerable: true,
18
10
  get: function get() {
19
11
  return _dragInTheBlankDp["default"];
20
12
  }
21
13
  });
22
- Object.defineProperty(exports, "DragSource", {
14
+ Object.defineProperty(exports, "DragProvider", {
23
15
  enumerable: true,
24
16
  get: function get() {
25
- return _reactDnd.DragSource;
17
+ return _dragProvider["default"];
26
18
  }
27
19
  });
28
- Object.defineProperty(exports, "DropTarget", {
20
+ Object.defineProperty(exports, "DraggableChoice", {
29
21
  enumerable: true,
30
22
  get: function get() {
31
- return _reactDnd.DropTarget;
23
+ return _draggableChoice["default"];
32
24
  }
33
25
  });
34
26
  Object.defineProperty(exports, "ICADroppablePlaceholder", {
@@ -56,34 +48,14 @@ Object.defineProperty(exports, "swap", {
56
48
  }
57
49
  });
58
50
  exports.uid = void 0;
59
- Object.defineProperty(exports, "withDragContext", {
60
- enumerable: true,
61
- get: function get() {
62
- return _withDragContext["default"];
63
- }
64
- });
65
-
66
- var _reactDnd = require("react-dnd");
67
-
68
51
  var _placeholder = _interopRequireDefault(require("./placeholder"));
69
-
70
- var _choice = _interopRequireDefault(require("./choice"));
71
-
72
- var _withDragContext = _interopRequireDefault(require("./with-drag-context"));
73
-
52
+ var _draggableChoice = _interopRequireDefault(require("./draggable-choice"));
53
+ var _dragProvider = _interopRequireDefault(require("./drag-provider"));
74
54
  var _swap = _interopRequireDefault(require("./swap"));
75
-
76
55
  var uid = _interopRequireWildcard(require("./uid-context"));
77
-
78
56
  exports.uid = uid;
79
-
80
57
  var _matchListDp = _interopRequireDefault(require("./match-list-dp"));
81
-
82
58
  var _dragInTheBlankDp = _interopRequireDefault(require("./drag-in-the-blank-dp"));
83
-
84
59
  var _icaDp = _interopRequireDefault(require("./ica-dp"));
85
-
86
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
87
-
88
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
60
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
89
61
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;;;AACA;;AACA;;AACA","sourcesContent":["import { DragSource, DropTarget } from 'react-dnd';\n\nimport PlaceHolder from './placeholder';\nimport Choice from './choice';\nimport withDragContext from './with-drag-context';\nimport swap from './swap';\nimport * as uid from './uid-context';\nimport MatchDroppablePlaceholder from './match-list-dp';\nimport DragDroppablePlaceholder from './drag-in-the-blank-dp';\nimport ICADroppablePlaceholder from './ica-dp';\n\nexport {\n PlaceHolder,\n MatchDroppablePlaceholder,\n DragDroppablePlaceholder,\n ICADroppablePlaceholder,\n withDragContext,\n Choice,\n swap,\n uid,\n DragSource,\n DropTarget,\n};\n"],"file":"index.js"}
1
+ {"version":3,"file":"index.js","names":["_placeholder","_interopRequireDefault","require","_draggableChoice","_dragProvider","_swap","uid","_interopRequireWildcard","exports","_matchListDp","_dragInTheBlankDp","_icaDp","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","_typeof","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor"],"sources":["../src/index.js"],"sourcesContent":["import PlaceHolder from './placeholder';\nimport DraggableChoice from './draggable-choice';\nimport DragProvider from './drag-provider';\nimport swap from './swap';\nimport * as uid from './uid-context';\nimport MatchDroppablePlaceholder from './match-list-dp';\nimport DragDroppablePlaceholder from './drag-in-the-blank-dp';\nimport ICADroppablePlaceholder from './ica-dp';\n\nexport {\n PlaceHolder,\n MatchDroppablePlaceholder,\n DragDroppablePlaceholder,\n ICADroppablePlaceholder,\n DragProvider,\n DraggableChoice,\n swap,\n uid,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,gBAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,aAAA,GAAAH,sBAAA,CAAAC,OAAA;AACA,IAAAG,KAAA,GAAAJ,sBAAA,CAAAC,OAAA;AACA,IAAAI,GAAA,GAAAC,uBAAA,CAAAL,OAAA;AAAqCM,OAAA,CAAAF,GAAA,GAAAA,GAAA;AACrC,IAAAG,YAAA,GAAAR,sBAAA,CAAAC,OAAA;AACA,IAAAQ,iBAAA,GAAAT,sBAAA,CAAAC,OAAA;AACA,IAAAS,MAAA,GAAAV,sBAAA,CAAAC,OAAA;AAA+C,SAAAK,wBAAAK,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAP,uBAAA,YAAAA,wBAAAK,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,mBAAAT,CAAA,iBAAAA,CAAA,gBAAAU,OAAA,CAAAV,CAAA,0BAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,cAAAM,EAAA,IAAAd,CAAA,gBAAAc,EAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,EAAA,OAAAP,CAAA,IAAAD,CAAA,GAAAW,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAnB,CAAA,EAAAc,EAAA,OAAAP,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAM,EAAA,EAAAP,CAAA,IAAAC,CAAA,CAAAM,EAAA,IAAAd,CAAA,CAAAc,EAAA,WAAAN,CAAA,KAAAR,CAAA,EAAAC,CAAA","ignoreList":[]}