easy-file-system 2.1.8 → 2.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/explorer.js CHANGED
@@ -4,7 +4,7 @@ import withStyle from "easy-with-style"; ///
4
4
 
5
5
  import { Element } from "easy";
6
6
  import { dropMixins } from "easy-drag-and-drop";
7
- import { pathUtilities } from "necessary";
7
+ import { pathUtilities, arrayUtilities } from "necessary";
8
8
 
9
9
  import EntriesList from "./list/entries";
10
10
  import DragEntryItem from "./item/entry/drag";
@@ -22,7 +22,8 @@ import { nonNullPathWithoutBottommostNameFromPath } from "./utilities/path";
22
22
  import { FILE_NAME_DRAG_ENTRY_TYPE, DIRECTORY_NAME_DRAG_ENTRY_TYPE } from "./entryTypes";
23
23
  import { sourceEntryPathFromEntryItem, targetEntryPathFromEntryItem } from "./utilities/pathMap";
24
24
 
25
- const { concatenatePaths } = pathUtilities;
25
+ const { last } = arrayUtilities,
26
+ { concatenatePaths } = pathUtilities;
26
27
 
27
28
  class Explorer extends Element {
28
29
  constructor(selector, mounted) {
@@ -377,17 +378,27 @@ class Explorer extends Element {
377
378
  explorer = dragEntryItemExplorer; ///
378
379
 
379
380
  this.moveDragEntryItems(pathMaps, explorer, () => {
381
+ const lastPathMap = last(pathMaps),
382
+ { targetEntryPath } = lastPathMap,
383
+ path = targetEntryPath;
384
+
380
385
  this.removeMarker();
381
386
 
387
+ this.selectPath(path);
388
+
382
389
  done();
383
390
  });
384
391
  }
385
392
 
386
393
  moveDragEntryItems(pathMaps, explorer, done) {
387
394
  this.callMoveHandlersAsync(pathMaps, explorer, () => {
388
- pathMaps.forEach((pathMap) => this.removeDragEntryItem(pathMap, explorer));
395
+ pathMaps.forEach((pathMap) => {
396
+ this.removeDragEntryItem(pathMap, explorer);
397
+ });
389
398
 
390
- pathMaps.forEach((pathMap) => this.addDragEntryItem(pathMap, explorer));
399
+ pathMaps.forEach((pathMap) => {
400
+ this.addDragEntryItem(pathMap, explorer);
401
+ });
391
402
 
392
403
  done();
393
404
  });
@@ -395,9 +406,13 @@ class Explorer extends Element {
395
406
 
396
407
  removeDragEntryItems(pathMaps, explorer, done) {
397
408
  this.callRemoveHandlersAsync(pathMaps, explorer, () => {
398
- pathMaps.forEach((pathMap) => this.removeDragEntryItem(pathMap, explorer));
409
+ pathMaps.forEach((pathMap) => {
410
+ this.removeDragEntryItem(pathMap, explorer);
411
+ });
399
412
 
400
- pathMaps.forEach((pathMap) => this.addDragEntryItem(pathMap, explorer));
413
+ pathMaps.forEach((pathMap) => {
414
+ this.addDragEntryItem(pathMap, explorer);
415
+ });
401
416
 
402
417
  done();
403
418
  });
@@ -405,9 +420,13 @@ class Explorer extends Element {
405
420
 
406
421
  renameDragEntryItems(pathMaps, explorer, done) {
407
422
  this.callRenameHandlersAsync(pathMaps, explorer, () => {
408
- pathMaps.forEach((pathMap) => this.removeDragEntryItem(pathMap, explorer));
423
+ pathMaps.forEach((pathMap) => {
424
+ this.removeDragEntryItem(pathMap, explorer);
425
+ });
409
426
 
410
- pathMaps.forEach((pathMap) => this.addDragEntryItem(pathMap, explorer));
427
+ pathMaps.forEach((pathMap) => {
428
+ this.addDragEntryItem(pathMap, explorer);
429
+ });
411
430
 
412
431
  done();
413
432
  });
@@ -415,9 +434,13 @@ class Explorer extends Element {
415
434
 
416
435
  createDragEntryItems(pathMaps, explorer, done) {
417
436
  this.callCreateHandlersAsync(pathMaps, explorer, () => {
418
- pathMaps.forEach((pathMap) => this.removeDragEntryItem(pathMap, explorer));
437
+ pathMaps.forEach((pathMap) => {
438
+ this.removeDragEntryItem(pathMap, explorer);
439
+ });
419
440
 
420
- pathMaps.forEach((pathMap) => this.addDragEntryItem(pathMap, explorer));
441
+ pathMaps.forEach((pathMap) => {
442
+ this.addDragEntryItem(pathMap, explorer);
443
+ });
421
444
 
422
445
  done();
423
446
  });
package/src/index.js CHANGED
@@ -9,10 +9,6 @@ export { default as NameInput } from "./input/name";
9
9
  export { default as NameButton } from "./button/name";
10
10
  export { default as EntriesList } from "./list/entries";
11
11
  export { default as ToggleButton } from "./button/toggle";
12
- export { default as FileNameDragEntryItem } from "./item/entry/drag/fileName";
13
- export { default as FileNameMarkerEntryItem } from "./item/entry/marker/fileName";
14
- export { default as DirectoryNameDragEntryItem } from "./item/entry/drag/directoryName";
15
- export { default as DirectoryNameMarkerEntryItem } from "./item/entry/marker/directoryName";
16
12
 
17
13
  export { default as MarkerSVG } from "./svg/marker";
18
14
  export { default as FileNameSVG } from "./svg/fileName";
@@ -21,3 +17,8 @@ export { default as DownToggleSVG } from "./svg/toggle/down";
21
17
  export { default as DirectoryNameSVG } from "./svg/directoryName";
22
18
  export { default as OpenRubbishBinSVG } from "./svg/rubbishBin/open";
23
19
  export { default as ClosedRubbishBinSVG } from "./svg/rubbishBin/closed";
20
+
21
+ export { default as FileNameDragEntryItem } from "./item/entry/drag/fileName";
22
+ export { default as FileNameMarkerEntryItem } from "./item/entry/marker/fileName";
23
+ export { default as DirectoryNameDragEntryItem } from "./item/entry/drag/directoryName";
24
+ export { default as DirectoryNameMarkerEntryItem } from "./item/entry/marker/directoryName";
@@ -6,7 +6,7 @@ import { pathUtilities } from "necessary";
6
6
  import ToggleButton from "../../../button/toggle";
7
7
  import DragEntryItem from "../../../item/entry/drag";
8
8
  import DirectoryNameSVG from "../../../svg/directoryName";
9
- import DirectoryNameEntryItemDiv from "../../../div/item/entry/directoryName";
9
+ import DirectoryNameDragEntryItemDiv from "../../../div/item/entry/drag/directoryName";
10
10
 
11
11
  import { adjustSourceEntryPath, adjustTargetEntryPath } from "../../../utilities/pathMap";
12
12
  import { FILE_NAME_DRAG_ENTRY_TYPE, FILE_NAME_MARKER_ENTRY_TYPE, DIRECTORY_NAME_DRAG_ENTRY_TYPE, DIRECTORY_NAME_MARKER_ENTRY_TYPE } from "../../../entryTypes";
@@ -186,12 +186,12 @@ export default class DirectoryNameDragEntryItem extends DragEntryItem {
186
186
 
187
187
  return ([
188
188
 
189
- <DirectoryNameEntryItemDiv name={name}
190
- explorer={explorer}
191
- NameInput={NameInput}
192
- NameButton={NameButton}
193
- ToggleButton={ToggleButton}
194
- DirectoryNameSVG={DirectoryNameSVG}
189
+ <DirectoryNameDragEntryItemDiv name={name}
190
+ explorer={explorer}
191
+ NameInput={NameInput}
192
+ NameButton={NameButton}
193
+ ToggleButton={ToggleButton}
194
+ DirectoryNameSVG={DirectoryNameSVG}
195
195
  />,
196
196
  <EntriesList explorer={explorer} />
197
197
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  import FileNameSVG from "../../../svg/fileName";
4
4
  import DragEntryItem from "../../../item/entry/drag";
5
- import FileNameEntryItemDiv from "../../../div/item/entry/fileName";
5
+ import FileNameDragEntryItemDiv from "../../../div/item/entry/drag/fileName";
6
6
 
7
7
  import { nameIsBeforeEntryItemName } from "../../../utilities/name";
8
8
  import { FILE_NAME_DRAG_ENTRY_TYPE, DIRECTORY_NAME_DRAG_ENTRY_TYPE, FILE_NAME_MARKER_ENTRY_TYPE, DIRECTORY_NAME_MARKER_ENTRY_TYPE } from "../../../entryTypes";
@@ -59,11 +59,11 @@ export default class FileNameDragEntryItem extends DragEntryItem {
59
59
 
60
60
  return (
61
61
 
62
- <FileNameEntryItemDiv name={name}
63
- explorer={explorer}
64
- NameInput={NameInput}
65
- NameButton={NameButton}
66
- FileNameSVG={FileNameSVG}
62
+ <FileNameDragEntryItemDiv name={name}
63
+ explorer={explorer}
64
+ NameInput={NameInput}
65
+ NameButton={NameButton}
66
+ FileNameSVG={FileNameSVG}
67
67
  />
68
68
  );
69
69
  }
@@ -13,18 +13,6 @@ import { DIRECTORY_NAME_DRAG_ENTRY_TYPE } from "../../entryTypes";
13
13
  import { adjustSourceEntryPath, adjustTargetEntryPath } from "../../utilities/pathMap";
14
14
 
15
15
  class DragEntryItem extends EntryItem {
16
- svgButtonClickHandler = (event, element) => {
17
- const explorer = this.getExplorer(),
18
- dragEntryItem = this, ///
19
- selected = dragEntryItem.isSelected();
20
-
21
- selected ?
22
- explorer.deselectDragEntryItem(dragEntryItem) :
23
- explorer.selectDragEntryItem(dragEntryItem);
24
-
25
- event.stopPropagation();
26
- }
27
-
28
16
  nameInputChangeHandler = () => {
29
17
  const created = this.isCreated(),
30
18
  explorer = this.getExplorer(),
@@ -213,8 +201,6 @@ class DragEntryItem extends EntryItem {
213
201
 
214
202
  this.onStartDrag(this.startDragHandler);
215
203
 
216
- this.onSVGButtonClick(this.svgButtonClickHandler);
217
-
218
204
  this.onNameInputChange(this.nameInputChangeHandler);
219
205
 
220
206
  this.onNameInputCancel(this.nameInputCancelHandler);
@@ -227,8 +213,6 @@ class DragEntryItem extends EntryItem {
227
213
 
228
214
  this.offStartDrag(this.startDragHandler);
229
215
 
230
- this.offSVGButtonClick(this.svgButtonClickHandler);
231
-
232
216
  this.offNameInputChange(this.nameInputChangeHandler);
233
217
 
234
218
  this.offNameInputCancel(this.nameInputCancelHandler);
@@ -307,7 +307,9 @@ class EntriesList extends Element {
307
307
  removeEntryItems() {
308
308
  const entryItems = this.getEntryItems();
309
309
 
310
- entryItems.forEach((entryItem) => this.removeEntryItem(entryItem));
310
+ entryItems.forEach((entryItem) => {
311
+ this.removeEntryItem(entryItem);
312
+ });
311
313
  }
312
314
 
313
315
  addMarkerEntryItem(markerEntryItemName, dragEntryItemType) {
package/src/rubbishBin.js CHANGED
@@ -174,9 +174,13 @@ class RubbishBin extends Element {
174
174
 
175
175
  removeDragEntryItems(pathMaps, explorer, done) {
176
176
  this.callRemoveHandlersAsync(pathMaps, explorer, () => {
177
- pathMaps.forEach((pathMap) => this.removeDragEntryItem(pathMap, explorer));
177
+ pathMaps.forEach((pathMap) => {
178
+ this.removeDragEntryItem(pathMap, explorer)
179
+ });
178
180
 
179
- pathMaps.forEach((pathMap) => this.addDragEntryItem(pathMap, explorer));
181
+ pathMaps.forEach((pathMap) => {
182
+ this.addDragEntryItem(pathMap, explorer);
183
+ });
180
184
 
181
185
  done();
182
186
  });
package/lib/button/svg.js DELETED
@@ -1,161 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return _default;
9
- }
10
- });
11
- var _easyWithStyle = /*#__PURE__*/ _interopRequireDefault(require("easy-with-style"));
12
- var _easy = require("easy");
13
- function _assertThisInitialized(self) {
14
- if (self === void 0) {
15
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
16
- }
17
- return self;
18
- }
19
- function _classCallCheck(instance, Constructor) {
20
- if (!(instance instanceof Constructor)) {
21
- throw new TypeError("Cannot call a class as a function");
22
- }
23
- }
24
- function _defineProperties(target, props) {
25
- for(var i = 0; i < props.length; i++){
26
- var descriptor = props[i];
27
- descriptor.enumerable = descriptor.enumerable || false;
28
- descriptor.configurable = true;
29
- if ("value" in descriptor) descriptor.writable = true;
30
- Object.defineProperty(target, descriptor.key, descriptor);
31
- }
32
- }
33
- function _createClass(Constructor, protoProps, staticProps) {
34
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
35
- if (staticProps) _defineProperties(Constructor, staticProps);
36
- return Constructor;
37
- }
38
- function _defineProperty(obj, key, value) {
39
- if (key in obj) {
40
- Object.defineProperty(obj, key, {
41
- value: value,
42
- enumerable: true,
43
- configurable: true,
44
- writable: true
45
- });
46
- } else {
47
- obj[key] = value;
48
- }
49
- return obj;
50
- }
51
- function _getPrototypeOf(o) {
52
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
53
- return o.__proto__ || Object.getPrototypeOf(o);
54
- };
55
- return _getPrototypeOf(o);
56
- }
57
- function _inherits(subClass, superClass) {
58
- if (typeof superClass !== "function" && superClass !== null) {
59
- throw new TypeError("Super expression must either be null or a function");
60
- }
61
- subClass.prototype = Object.create(superClass && superClass.prototype, {
62
- constructor: {
63
- value: subClass,
64
- writable: true,
65
- configurable: true
66
- }
67
- });
68
- if (superClass) _setPrototypeOf(subClass, superClass);
69
- }
70
- function _interopRequireDefault(obj) {
71
- return obj && obj.__esModule ? obj : {
72
- default: obj
73
- };
74
- }
75
- function _possibleConstructorReturn(self, call) {
76
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
77
- return call;
78
- }
79
- return _assertThisInitialized(self);
80
- }
81
- function _setPrototypeOf(o, p) {
82
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
83
- o.__proto__ = p;
84
- return o;
85
- };
86
- return _setPrototypeOf(o, p);
87
- }
88
- function _taggedTemplateLiteral(strings, raw) {
89
- if (!raw) {
90
- raw = strings.slice(0);
91
- }
92
- return Object.freeze(Object.defineProperties(strings, {
93
- raw: {
94
- value: Object.freeze(raw)
95
- }
96
- }));
97
- }
98
- var _typeof = function(obj) {
99
- "@swc/helpers - typeof";
100
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
101
- };
102
- function _isNativeReflectConstruct() {
103
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
104
- if (Reflect.construct.sham) return false;
105
- if (typeof Proxy === "function") return true;
106
- try {
107
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
108
- return true;
109
- } catch (e) {
110
- return false;
111
- }
112
- }
113
- function _createSuper(Derived) {
114
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
115
- return function _createSuperInternal() {
116
- var Super = _getPrototypeOf(Derived), result;
117
- if (hasNativeReflectConstruct) {
118
- var NewTarget = _getPrototypeOf(this).constructor;
119
- result = Reflect.construct(Super, arguments, NewTarget);
120
- } else {
121
- result = Super.apply(this, arguments);
122
- }
123
- return _possibleConstructorReturn(this, result);
124
- };
125
- }
126
- function _templateObject() {
127
- var data = _taggedTemplateLiteral([
128
- "\n\n outline: none;\n background: transparent;\n \n"
129
- ]);
130
- _templateObject = function _templateObject() {
131
- return data;
132
- };
133
- return data;
134
- }
135
- var SVGButton = /*#__PURE__*/ function(Button) {
136
- _inherits(SVGButton, Button);
137
- var _super = _createSuper(SVGButton);
138
- function SVGButton() {
139
- _classCallCheck(this, SVGButton);
140
- return _super.apply(this, arguments);
141
- }
142
- _createClass(SVGButton, [
143
- {
144
- key: "parentContext",
145
- value: function parentContext() {
146
- var onSVGButtonClick = this.onClick.bind(this), offSVGButtonClick = this.onClick.bind(this); ///
147
- return {
148
- onSVGButtonClick: onSVGButtonClick,
149
- offSVGButtonClick: offSVGButtonClick
150
- };
151
- }
152
- }
153
- ]);
154
- return SVGButton;
155
- }(_easy.Button);
156
- _defineProperty(SVGButton, "defaultProperties", {
157
- className: "svg"
158
- });
159
- var _default = (0, _easyWithStyle.default)(SVGButton)(_templateObject());
160
-
161
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9idXR0b24vc3ZnLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgd2l0aFN0eWxlIGZyb20gXCJlYXN5LXdpdGgtc3R5bGVcIjsgIC8vL1xuXG5pbXBvcnQgeyBCdXR0b24gfSBmcm9tIFwiZWFzeVwiO1xuXG5jbGFzcyBTVkdCdXR0b24gZXh0ZW5kcyBCdXR0b24ge1xuICBwYXJlbnRDb250ZXh0KCkge1xuICAgIGNvbnN0IG9uU1ZHQnV0dG9uQ2xpY2sgPSB0aGlzLm9uQ2xpY2suYmluZCh0aGlzKSwgLy8vXG4gICAgICAgICAgb2ZmU1ZHQnV0dG9uQ2xpY2sgPSB0aGlzLm9uQ2xpY2suYmluZCh0aGlzKTsgLy8vXG5cbiAgICByZXR1cm4gKHtcbiAgICAgIG9uU1ZHQnV0dG9uQ2xpY2ssXG4gICAgICBvZmZTVkdCdXR0b25DbGlja1xuICAgIH0pO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJzdmdcIlxuICB9O1xufVxuXG5leHBvcnQgZGVmYXVsdCB3aXRoU3R5bGUoU1ZHQnV0dG9uKWBcblxuICBvdXRsaW5lOiBub25lO1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbiAgXG5gO1xuIl0sIm5hbWVzIjpbIlNWR0J1dHRvbiIsInBhcmVudENvbnRleHQiLCJvblNWR0J1dHRvbkNsaWNrIiwib25DbGljayIsImJpbmQiLCJvZmZTVkdCdXR0b25DbGljayIsIkJ1dHRvbiIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIiwid2l0aFN0eWxlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFzQkE7OztlQUFBOzs7a0VBcEJzQjtvQkFFQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXZCLElBQUEsQUFBTUEsMEJBZ0JILEFBaEJIO2NBQU1BOzhCQUFBQTthQUFBQTs4QkFBQUE7OztpQkFBQUE7O1lBQ0pDLEtBQUFBO21CQUFBQSxTQUFBQSxnQkFBZ0I7Z0JBQ2QsSUFBTUMsbUJBQW1CLElBQUksQ0FBQ0MsT0FBTyxDQUFDQyxJQUFJLENBQUMsSUFBSSxHQUN6Q0Msb0JBQW9CLElBQUksQ0FBQ0YsT0FBTyxDQUFDQyxJQUFJLENBQUMsSUFBSSxHQUFHLEdBQUc7Z0JBRXRELE9BQVE7b0JBQ05GLGtCQUFBQTtvQkFDQUcsbUJBQUFBO2dCQUNGO1lBQ0Y7OztXQVRJTDtFQUFrQk0sWUFBTTtBQVc1QixnQkFYSU4sV0FXR08scUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2I7SUFHRixXQUFlQyxJQUFBQSxzQkFBUyxFQUFDVCJ9
@@ -1,39 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return _default;
9
- }
10
- });
11
- var _easyWithStyle = /*#__PURE__*/ _interopRequireDefault(require("easy-with-style"));
12
- function _interopRequireDefault(obj) {
13
- return obj && obj.__esModule ? obj : {
14
- default: obj
15
- };
16
- }
17
- function _taggedTemplateLiteral(strings, raw) {
18
- if (!raw) {
19
- raw = strings.slice(0);
20
- }
21
- return Object.freeze(Object.defineProperties(strings, {
22
- raw: {
23
- value: Object.freeze(raw)
24
- }
25
- }));
26
- }
27
- function _templateObject() {
28
- var data = _taggedTemplateLiteral([
29
- "\n\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: -1;\n position: absolute;\n \n"
30
- ]);
31
- _templateObject = function _templateObject() {
32
- return data;
33
- };
34
- return data;
35
- }
36
- var BackgroundDiv = _easyWithStyle.default.div(_templateObject());
37
- var _default = BackgroundDiv;
38
-
39
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaXYvYmFja2dyb3VuZC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7ICAvLy9cblxuY29uc3QgQmFja2dyb3VuZERpdiA9IHdpdGhTdHlsZS5kaXZgXG5cbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xuICB6LWluZGV4OiAtMTtcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgXG5gO1xuXG5leHBvcnQgZGVmYXVsdCBCYWNrZ3JvdW5kRGl2O1xuIl0sIm5hbWVzIjpbIkJhY2tncm91bmREaXYiLCJ3aXRoU3R5bGUiLCJkaXYiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQWVBOzs7ZUFBQTs7O2tFQWJzQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUV0QixJQUFNQSxnQkFBZ0JDLHNCQUFTLENBQUNDLEdBQUc7SUFXbkMsV0FBZUYifQ==
@@ -1,168 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return DirectoryNameEntryItemDiv;
9
- }
10
- });
11
- var _svg = /*#__PURE__*/ _interopRequireDefault(require("../../../button/svg"));
12
- var _entry = /*#__PURE__*/ _interopRequireDefault(require("../../../div/item/entry"));
13
- var _background = /*#__PURE__*/ _interopRequireDefault(require("../../../div/background"));
14
- function _assertThisInitialized(self) {
15
- if (self === void 0) {
16
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
17
- }
18
- return self;
19
- }
20
- function _classCallCheck(instance, Constructor) {
21
- if (!(instance instanceof Constructor)) {
22
- throw new TypeError("Cannot call a class as a function");
23
- }
24
- }
25
- function _defineProperties(target, props) {
26
- for(var i = 0; i < props.length; i++){
27
- var descriptor = props[i];
28
- descriptor.enumerable = descriptor.enumerable || false;
29
- descriptor.configurable = true;
30
- if ("value" in descriptor) descriptor.writable = true;
31
- Object.defineProperty(target, descriptor.key, descriptor);
32
- }
33
- }
34
- function _createClass(Constructor, protoProps, staticProps) {
35
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
36
- if (staticProps) _defineProperties(Constructor, staticProps);
37
- return Constructor;
38
- }
39
- function _defineProperty(obj, key, value) {
40
- if (key in obj) {
41
- Object.defineProperty(obj, key, {
42
- value: value,
43
- enumerable: true,
44
- configurable: true,
45
- writable: true
46
- });
47
- } else {
48
- obj[key] = value;
49
- }
50
- return obj;
51
- }
52
- function _getPrototypeOf(o) {
53
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
54
- return o.__proto__ || Object.getPrototypeOf(o);
55
- };
56
- return _getPrototypeOf(o);
57
- }
58
- function _inherits(subClass, superClass) {
59
- if (typeof superClass !== "function" && superClass !== null) {
60
- throw new TypeError("Super expression must either be null or a function");
61
- }
62
- subClass.prototype = Object.create(superClass && superClass.prototype, {
63
- constructor: {
64
- value: subClass,
65
- writable: true,
66
- configurable: true
67
- }
68
- });
69
- if (superClass) _setPrototypeOf(subClass, superClass);
70
- }
71
- function _interopRequireDefault(obj) {
72
- return obj && obj.__esModule ? obj : {
73
- default: obj
74
- };
75
- }
76
- function _possibleConstructorReturn(self, call) {
77
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
78
- return call;
79
- }
80
- return _assertThisInitialized(self);
81
- }
82
- function _setPrototypeOf(o, p) {
83
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
84
- o.__proto__ = p;
85
- return o;
86
- };
87
- return _setPrototypeOf(o, p);
88
- }
89
- var _typeof = function(obj) {
90
- "@swc/helpers - typeof";
91
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
92
- };
93
- function _isNativeReflectConstruct() {
94
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
95
- if (Reflect.construct.sham) return false;
96
- if (typeof Proxy === "function") return true;
97
- try {
98
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
99
- return true;
100
- } catch (e) {
101
- return false;
102
- }
103
- }
104
- function _createSuper(Derived) {
105
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
106
- return function _createSuperInternal() {
107
- var Super = _getPrototypeOf(Derived), result;
108
- if (hasNativeReflectConstruct) {
109
- var NewTarget = _getPrototypeOf(this).constructor;
110
- result = Reflect.construct(Super, arguments, NewTarget);
111
- } else {
112
- result = Super.apply(this, arguments);
113
- }
114
- return _possibleConstructorReturn(this, result);
115
- };
116
- }
117
- var DirectoryNameEntryItemDiv = /*#__PURE__*/ function(EntryItemDiv) {
118
- _inherits(DirectoryNameEntryItemDiv, EntryItemDiv);
119
- var _super = _createSuper(DirectoryNameEntryItemDiv);
120
- function DirectoryNameEntryItemDiv() {
121
- _classCallCheck(this, DirectoryNameEntryItemDiv);
122
- var _this;
123
- _this = _super.apply(this, arguments);
124
- _defineProperty(_assertThisInitialized(_this), "toggleButtonMouseDownHandler", function(event, element) {
125
- var dragEntryItem = _this.getDragEntryItem(), directoryNameDragEntryItem = dragEntryItem; ///
126
- directoryNameDragEntryItem.toggle();
127
- event.stopPropagation();
128
- });
129
- _defineProperty(_assertThisInitialized(_this), "nameButtonDoubleClickHandler", function(event, element) {
130
- var dragEntryItem = _this.getDragEntryItem(), directoryNameDragEntryItem = dragEntryItem; ///
131
- directoryNameDragEntryItem.toggle();
132
- event.stopPropagation();
133
- });
134
- return _this;
135
- }
136
- _createClass(DirectoryNameEntryItemDiv, [
137
- {
138
- key: "childElements",
139
- value: function childElements() {
140
- var _this_properties = this.properties, name = _this_properties.name, NameInput = _this_properties.NameInput, NameButton = _this_properties.NameButton, ToggleButton = _this_properties.ToggleButton, DirectoryNameSVG = _this_properties.DirectoryNameSVG;
141
- return [
142
- /*#__PURE__*/ React.createElement(ToggleButton, {
143
- onMouseDown: this.toggleButtonMouseDownHandler
144
- }),
145
- /*#__PURE__*/ React.createElement(_svg.default, null, /*#__PURE__*/ React.createElement(DirectoryNameSVG, null)),
146
- /*#__PURE__*/ React.createElement(NameButton, {
147
- onDoubleClick: this.nameButtonDoubleClickHandler
148
- }, name),
149
- /*#__PURE__*/ React.createElement(NameInput, null, name),
150
- /*#__PURE__*/ React.createElement(_background.default, null)
151
- ];
152
- }
153
- }
154
- ]);
155
- return DirectoryNameEntryItemDiv;
156
- }(_entry.default);
157
- _defineProperty(DirectoryNameEntryItemDiv, "ignoredProperties", [
158
- "name",
159
- "NameInput",
160
- "NameButton",
161
- "ToggleButton",
162
- "DirectoryNameSVG"
163
- ]);
164
- _defineProperty(DirectoryNameEntryItemDiv, "defaultProperties", {
165
- className: "directory-name"
166
- });
167
-
168
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9kaXYvaXRlbS9lbnRyeS9kaXJlY3RvcnlOYW1lLmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+Il0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgU1ZHQnV0dG9uIGZyb20gXCIuLi8uLi8uLi9idXR0b24vc3ZnXCI7XG5pbXBvcnQgRW50cnlJdGVtRGl2IGZyb20gXCIuLi8uLi8uLi9kaXYvaXRlbS9lbnRyeVwiO1xuaW1wb3J0IEJhY2tncm91bmREaXYgZnJvbSBcIi4uLy4uLy4uL2Rpdi9iYWNrZ3JvdW5kXCI7XG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIERpcmVjdG9yeU5hbWVFbnRyeUl0ZW1EaXYgZXh0ZW5kcyBFbnRyeUl0ZW1EaXYge1xuICB0b2dnbGVCdXR0b25Nb3VzZURvd25IYW5kbGVyID0gKGV2ZW50LCBlbGVtZW50KSA9PiB7XG4gICAgY29uc3QgZHJhZ0VudHJ5SXRlbSA9IHRoaXMuZ2V0RHJhZ0VudHJ5SXRlbSgpLFxuICAgICAgICAgIGRpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtID0gZHJhZ0VudHJ5SXRlbTsgLy8vXG5cbiAgICBkaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbS50b2dnbGUoKTtcblxuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuICB9XG5cbiAgbmFtZUJ1dHRvbkRvdWJsZUNsaWNrSGFuZGxlciA9IChldmVudCwgZWxlbWVudCkgPT4ge1xuICAgIGNvbnN0IGRyYWdFbnRyeUl0ZW0gPSB0aGlzLmdldERyYWdFbnRyeUl0ZW0oKSxcbiAgICAgICAgICBkaXJlY3RvcnlOYW1lRHJhZ0VudHJ5SXRlbSA9IGRyYWdFbnRyeUl0ZW07IC8vL1xuXG4gICAgZGlyZWN0b3J5TmFtZURyYWdFbnRyeUl0ZW0udG9nZ2xlKCk7XG5cbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcbiAgfVxuXG4gIGNoaWxkRWxlbWVudHMoKSB7XG4gICAgY29uc3QgeyBuYW1lLCBOYW1lSW5wdXQsIE5hbWVCdXR0b24sIFRvZ2dsZUJ1dHRvbiwgRGlyZWN0b3J5TmFtZVNWRyB9ID0gdGhpcy5wcm9wZXJ0aWVzO1xuXG4gICAgcmV0dXJuIChbXG5cbiAgICAgIDxUb2dnbGVCdXR0b24gb25Nb3VzZURvd249e3RoaXMudG9nZ2xlQnV0dG9uTW91c2VEb3duSGFuZGxlcn0gLz4sXG4gICAgICA8U1ZHQnV0dG9uPlxuICAgICAgICA8RGlyZWN0b3J5TmFtZVNWRy8+XG4gICAgICA8L1NWR0J1dHRvbj4sXG4gICAgICA8TmFtZUJ1dHRvbiBvbkRvdWJsZUNsaWNrPXt0aGlzLm5hbWVCdXR0b25Eb3VibGVDbGlja0hhbmRsZXJ9ID5cbiAgICAgICAge25hbWV9XG4gICAgICA8L05hbWVCdXR0b24+LFxuICAgICAgPE5hbWVJbnB1dD5cbiAgICAgICAge25hbWV9XG4gICAgICA8L05hbWVJbnB1dD4sXG4gICAgICA8QmFja2dyb3VuZERpdi8+XG5cbiAgICBdKTtcbiAgfVxuXG4gIHN0YXRpYyBpZ25vcmVkUHJvcGVydGllcyA9IFtcbiAgICBcIm5hbWVcIixcbiAgICBcIk5hbWVJbnB1dFwiLFxuICAgIFwiTmFtZUJ1dHRvblwiLFxuICAgIFwiVG9nZ2xlQnV0dG9uXCIsXG4gICAgXCJEaXJlY3RvcnlOYW1lU1ZHXCJcbiAgXTtcblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImRpcmVjdG9yeS1uYW1lXCJcbiAgfTtcbn1cbiIsIlJlYWN0LmNyZWF0ZUVsZW1lbnQiXSwibmFtZXMiOlsiRGlyZWN0b3J5TmFtZUVudHJ5SXRlbURpdiIsInRvZ2dsZUJ1dHRvbk1vdXNlRG93bkhhbmRsZXIiLCJldmVudCIsImVsZW1lbnQiLCJkcmFnRW50cnlJdGVtIiwiZ2V0RHJhZ0VudHJ5SXRlbSIsImRpcmVjdG9yeU5hbWVEcmFnRW50cnlJdGVtIiwidG9nZ2xlIiwic3RvcFByb3BhZ2F0aW9uIiwibmFtZUJ1dHRvbkRvdWJsZUNsaWNrSGFuZGxlciIsImNoaWxkRWxlbWVudHMiLCJwcm9wZXJ0aWVzIiwibmFtZSIsIk5hbWVJbnB1dCIsIk5hbWVCdXR0b24iLCJUb2dnbGVCdXR0b24iLCJEaXJlY3RvcnlOYW1lU1ZHIiwib25Nb3VzZURvd24iLCJTVkdCdXR0b24iLCJvbkRvdWJsZUNsaWNrIiwiQmFja2dyb3VuZERpdiIsIkVudHJ5SXRlbURpdiIsImlnbm9yZWRQcm9wZXJ0aWVzIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O2VBTXFCQTs7O3dEQUpDOzBEQUNHOytEQUNDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVYLElBQUEsQUFBTUEsMENBQU47Y0FBTUE7OEJBQUFBO2FBQUFBOzhCQUFBQTs7O1FBQ25CQywrQ0FBQUEsZ0NBQStCLFNBQUNDLE9BQU9DLFNBQVk7WUFDakQsSUFBTUMsZ0JBQWdCLE1BQUtDLGdCQUFnQixJQUNyQ0MsNkJBQTZCRixlQUFlLEdBQUc7WUFFckRFLDJCQUEyQkMsTUFBTTtZQUVqQ0wsTUFBTU0sZUFBZTtRQUN2QjtRQUVBQywrQ0FBQUEsZ0NBQStCLFNBQUNQLE9BQU9DLFNBQVk7WUFDakQsSUFBTUMsZ0JBQWdCLE1BQUtDLGdCQUFnQixJQUNyQ0MsNkJBQTZCRixlQUFlLEdBQUc7WUFFckRFLDJCQUEyQkMsTUFBTTtZQUVqQ0wsTUFBTU0sZUFBZTtRQUN2Qjs7O2lCQWpCbUJSOztZQW1CbkJVLEtBQUFBO21CQUFBQSxTQUFBQSxnQkFBZ0I7Z0JBQ2QsSUFBd0UsbUJBQUEsSUFBSSxDQUFDQyxVQUFVLEVBQS9FQyxPQUFnRSxpQkFBaEVBLE1BQU1DLFlBQTBELGlCQUExREEsV0FBV0MsYUFBK0MsaUJBQS9DQSxZQUFZQyxlQUFtQyxpQkFBbkNBLGNBQWNDLG1CQUFxQixpQkFBckJBO2dCQUVuRCxPQUFRO2tDQUVOLG9CQUFDRDt3QkFBYUUsYUFBYSxJQUFJLENBQUNoQiw0QkFBNEI7O2tDQUM1RCxvQkFBQ2lCLFlBQVMsc0JBQ1Isb0JBQUNGO2tDQUVILG9CQUFDRjt3QkFBV0ssZUFBZSxJQUFJLENBQUNWLDRCQUE0Qjt1QkFDekRHO2tDQUVILG9CQUFDQyxpQkFDRUQ7a0NBRUgsb0JBQUNRLG1CQUFhO2lCQUVmO1lBQ0g7OztXQXJDbUJwQjtFQUFrQ3FCLGNBQVk7QUF1Q2pFLGdCQXZDbUJyQiwyQkF1Q1pzQixxQkFBb0I7SUFDekI7SUFDQTtJQUNBO0lBQ0E7SUFDQTtDQUNEO0FBRUQsZ0JBL0NtQnRCLDJCQStDWnVCLHFCQUFvQjtJQUN6QkMsV0FBVztBQUNiIn0=
package/src/button/svg.js DELETED
@@ -1,28 +0,0 @@
1
- "use strict";
2
-
3
- import withStyle from "easy-with-style"; ///
4
-
5
- import { Button } from "easy";
6
-
7
- class SVGButton extends Button {
8
- parentContext() {
9
- const onSVGButtonClick = this.onClick.bind(this), ///
10
- offSVGButtonClick = this.onClick.bind(this); ///
11
-
12
- return ({
13
- onSVGButtonClick,
14
- offSVGButtonClick
15
- });
16
- }
17
-
18
- static defaultProperties = {
19
- className: "svg"
20
- };
21
- }
22
-
23
- export default withStyle(SVGButton)`
24
-
25
- outline: none;
26
- background: transparent;
27
-
28
- `;
@@ -1,16 +0,0 @@
1
- "use strict";
2
-
3
- import withStyle from "easy-with-style"; ///
4
-
5
- const BackgroundDiv = withStyle.div`
6
-
7
- top: 0;
8
- left: 0;
9
- width: 100%;
10
- height: 100%;
11
- z-index: -1;
12
- position: absolute;
13
-
14
- `;
15
-
16
- export default BackgroundDiv;