[React] DragAndDrop(DND) 와 Resizing 사용하기 #1 (Typescript)

React DND


시작하기 전에

이전 챕터에서는 DND 를 이용해 모달을 이동시키는 방법을 알어봤으며,
이번에는 DND 와 함께 모달의 크기도 자유자재로 변경하는 방법을 알아보자.

프로젝트 구조

1
2
3
4
5
6
7
8
9
10
11
12
13
src
 ┣ constants
 ┃ ┣ dnd.ts
 ┣ components
 ┃ ┣ DragAndResize
 ┃   ┣ Boundary.tsx
 ┃   ┣ BoundaryLayout.tsx
 ┃   ┣ DragLayout.tsx
 ┃   ┣ DragMenu.tsx
 ┃   ┣ ResizeModal.tsx
 ┣ utils
 ┃ ┣ Resize.ts
 ┃ ┣ registDragEvent.ts


css 추가

resize.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
/*
! tailwindcss v3.1.8 | MIT License | https://tailwindcss.com
*/
*,


:-moz-focusring {
  outline: auto
}

:-moz-ui-invalid {
  box-shadow: none
}

progress {
  vertical-align: baseline
}


.visible {
  visibility: visible
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.top-16 {
  top: 4rem
}

.-top-1 {
  top: -.25rem
}

.-left-1 {
  left: -.25rem
}

.-right-1 {
  right: -.25rem
}

.-bottom-1 {
  bottom: -.25rem
}

.-top-0\.5 {
  top: -.125rem
}

.left-3 {
  left: .75rem
}

.right-3 {
  right: .75rem
}

.-top-0 {
  top: 0
}

.-bottom-0\.5 {
  bottom: -.125rem
}

.-bottom-0 {
  bottom: 0
}

.bottom-3 {
  bottom: .75rem
}

.top-3 {
  top: .75rem
}

.-right-0\.5 {
  right: -.125rem
}

.-right-0 {
  right: 0
}

.-left-0\.5 {
  left: -.125rem
}

.-left-0 {
  left: 0
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.mb-2 {
  margin-bottom: .5rem
}

.ml-4 {
  margin-left: 1rem
}

.mt-16 {
  margin-top: 4rem
}

.mt-4 {
  margin-top: 1rem
}

.flex {
  display: flex
}

.grid {
  display: grid
}

.hidden {
  display: none
}

.h-12 {
  height: 3rem
}

.h-64 {
  height: 16rem
}

.h-full {
  height: 100%
}

.h-24 {
  height: 6rem
}

.h-4 {
  height: 1rem
}

.h-2 {
  height: .5rem
}

.min-h-\[700px\] {
  min-height: 700px
}

.w-full {
  width: 100%
}

.w-24 {
  width: 6rem
}

.w-4 {
  width: 1rem
}

.w-2 {
  width: .5rem
}

.max-w-3xl {
  max-width: 48rem
}

.max-w-lg {
  max-width: 32rem
}

.flex-1 {
  flex: 1 1 0%
}

.flex-shrink-0 {
  flex-shrink: 0
}

.-rotate-12 {
  --tw-rotate: -12deg
}

.-rotate-12,
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-move {
  cursor: move
}

.cursor-grab {
  cursor: -webkit-grab;
  cursor: grab
}

.cursor-pointer {
  cursor: pointer
}

.cursor-nw-resize {
  cursor: nw-resize
}

.cursor-ne-resize {
  cursor: ne-resize
}

.cursor-se-resize {
  cursor: se-resize
}

.cursor-n-resize {
  cursor: n-resize
}

.cursor-s-resize {
  cursor: s-resize
}

.cursor-e-resize {
  cursor: e-resize
}

.cursor-w-resize {
  cursor: w-resize
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.resize {
  resize: both
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.flex-col {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.items-center {
  align-items: center
}

.justify-center {
  justify-content: center
}

.gap-4 {
  gap: 1rem
}

.gap-1 {
  gap: .25rem
}

.gap-16 {
  gap: 4rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-2 {
  gap: .5rem
}

.gap-3 {
  gap: .75rem
}

.overflow-hidden {
  overflow: hidden
}

.whitespace-nowrap {
  white-space: nowrap
}

.rounded-xl {
  border-radius: .75rem
}

.rounded-lg {
  border-radius: .5rem
}

.border {
  border-width: 1px
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235/var(--tw-bg-opacity))
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity))
}

.bg-opacity-90 {
  --tw-bg-opacity: 0.9
}

.p-4 {
  padding: 1rem
}

.pb-10 {
  padding-bottom: 2.5rem
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem
}

.text-7xl {
  font-size: 4.5rem;
  line-height: 1
}

.text-8xl {
  font-size: 6rem;
  line-height: 1
}

.text-xs {
  font-size: .75rem;
  line-height: 1rem
}

.text-sm {
  font-size: .875rem;
  line-height: 1.25rem
}

.font-bold {
  font-weight: 700
}

.font-black {
  font-weight: 900
}

.font-semibold {
  font-weight: 600
}

.uppercase {
  text-transform: uppercase
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128/var(--tw-text-opacity))
}

.text-stone-700 {
  --tw-text-opacity: 1;
  color: rgb(68 64 60/var(--tw-text-opacity))
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity))
}

.opacity-50 {
  opacity: .5
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color)
}

.shadow-lg,
.shadow-xl {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color)
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color)
}

.shadow,
.shadow-2xl {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color)
}

.shadow-gray-400 {
  --tw-shadow-color: #9ca3af;
  --tw-shadow: var(--tw-shadow-colored)
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.ring-gray-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(243 244 246/var(--tw-ring-opacity))
}

.ring-gray-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219/var(--tw-ring-opacity))
}

.drop-shadow-xl {
  --tw-drop-shadow: drop-shadow(0 20px 13px rgba(0, 0, 0, .03)) drop-shadow(0 8px 5px rgba(0, 0, 0, .08))
}

.drop-shadow,
.drop-shadow-xl {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, .1)) drop-shadow(0 1px 1px rgba(0, 0, 0, .06))
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.transition-\[shadow\2c transform\] {
  transition-property: shadow, transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s
}

.ease-in-out {
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.will-change-\[filter\] {
  will-change: filter
}

#__next,
body,
html {
  width: 100%;
  height: 100%
}

body,
html {
  position: fixed;
  overflow: hidden
}

#__next {
  overflow-y: scroll;
  position: relative
}

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

::-webkit-scrollbar {
  display: none
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark
  }

  body {
    color: #eee;
    background: #000
  }
}

.text-shadow {
  text-shadow: -1px 0 #ececec, 0 1px #ececec, 1px 0 #ececec, 0 -1px #ececec
}

@-webkit-keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0)
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0)
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0)
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0)
  }
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0)
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0)
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0)
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0)
  }
}

.shake {
  -webkit-animation: shake .82s cubic-bezier(.36, .07, .19, .97) both;
  animation: shake .82s cubic-bezier(.36, .07, .19, .97) both
}

@-webkit-keyframes confetti-slow {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(25px, 105vh, 0) rotateX(1turn) rotateY(180deg)
  }
}

@keyframes confetti-slow {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(25px, 105vh, 0) rotateX(1turn) rotateY(180deg)
  }
}

@-webkit-keyframes confetti-medium {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(1turn)
  }
}

@keyframes confetti-medium {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(1turn)
  }
}

@-webkit-keyframes confetti-fast {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg)
  }
}

@keyframes confetti-fast {
  0% {
    transform: translateZ(0) rotateX(0) rotateY(0)
  }

  to {
    transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg)
  }
}

.confetti {
  position: absolute;
  z-index: 1;
  top: -10px;
  border-radius: 0
}

.confetti--animation-slow {
  -webkit-animation: confetti-slow 2.25s linear 1 forwards;
  animation: confetti-slow 2.25s linear 1 forwards
}

.confetti--animation-medium {
  -webkit-animation: confetti-medium 1.75s linear 1 forwards;
  animation: confetti-medium 1.75s linear 1 forwards
}

.confetti--animation-fast {
  -webkit-animation: confetti-fast 1.25s linear 1 forwards;
  animation: confetti-fast 1.25s linear 1 forwards
}

.todo .dnd-item {
  border-width: 1px;
  border-color: transparent
}

.todo .dnd-item.placeholder {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246/var(--tw-border-opacity));
  opacity: .5;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250/var(--tw-ring-opacity))
}

.todo .dnd-item:not(.ghost) {
  cursor: -webkit-grab;
  cursor: grab;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.hover\:drop-shadow-lg:hover {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgba(0, 0, 0, .04)) drop-shadow(0 4px 3px rgba(0, 0, 0, .1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95
}

.active\:scale-95:active,
.active\:scale-\[0\.97\]:active {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.active\:scale-\[0\.97\]:active {
  --tw-scale-x: 0.97;
  --tw-scale-y: 0.97
}

.active\:shadow-lg:active {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

@media (prefers-color-scheme: dark) {
  .dark\:bg-\[\#121212\] {
    --tw-bg-opacity: 1;
    background-color: rgb(18 18 18/var(--tw-bg-opacity))
  }

  .dark\:bg-\[\#000000\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0/var(--tw-bg-opacity))
  }
}


드래그 이벤트 등록

registDragEvent.ts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const isTouchScreen =
    typeof window !== 'undefined' && window.matchMedia('(hover: none) and (pointer: coarse)').matches;

export default function registDragEvent(
    onDragChange: (deltaX: number, deltaY: number) => void,
    stopPropagation?: boolean,
) {
    if (isTouchScreen) {
        return {
            onTouchStart: (touchEvent: React.TouchEvent<HTMLDivElement>) => {

                // element의 클릭 이벤트가 부모로 전파되지 않길 원할 경우 stopPropagation을 호출
                if (stopPropagation) touchEvent.stopPropagation();

                // 클릭된 상태에서 마우스를 움직일시 mousemove에 등록 된 함수가 계속 호출
                const touchMoveHandler = (moveEvent: TouchEvent) => {
                    if (moveEvent.cancelable) moveEvent.preventDefault();
                    // 클릭(mousedown) 이벤트 발생시의 마우스 위치를 기준으로,
                    // 이동(mousemove) 이벤트에서 상대적으로 이동한 거리(deltaX, deltaY)를 계산하고
                    // 콜벡으로 받은 onDragChange에게 전달
                    const deltaX = moveEvent.touches[0].screenX - touchEvent.touches[0].screenX;
                    const deltaY = moveEvent.touches[0].screenY - touchEvent.touches[0].screenY;
                    onDragChange(deltaX, deltaY);
                };

                // mouseup 이벤트에서 mousemove 이벤트를 제거
                const touchEndHandler = () => {
                    document.removeEventListener('touchmove', touchMoveHandler);
                };

                // 클릭시(onMouseDown) document에 mousemove mouseup 이벤트를 등록
                document.addEventListener('touchmove', touchMoveHandler, { passive: false });
                document.addEventListener('touchend', touchEndHandler, { once: true });
            },
        };
    }

    return {
        onMouseDown: (clickEvent: React.MouseEvent<Element, MouseEvent>) => {
            if (stopPropagation) clickEvent.stopPropagation();

            const mouseMoveHandler = (moveEvent: MouseEvent) => {
                const deltaX = moveEvent.screenX - clickEvent.screenX;
                const deltaY = moveEvent.screenY - clickEvent.screenY;
                onDragChange(deltaX, deltaY);
            };

            const mouseUpHandler = () => {
                document.removeEventListener('mousemove', mouseMoveHandler);
            };

            document.addEventListener('mousemove', mouseMoveHandler);
            document.addEventListener('mouseup', mouseUpHandler, { once: true });
        },
    };
}


거리계산 함수 추가

Resize.ts

1
2
3
4
5
6
7
8
9
10
export const $ = (...classnames: any[]) => {
    return classnames.filter((v) => !!v).join(' ');
};

export const inrange = (v: number, min: number, max: number) => {
    if (v < min) return min;
    if (v > max) return max;
    return v;
};


기본 넓이&높이, 최소 넓이&높이 설정

dnd.ts

1
2
3
4
5
export const BOUNDARY_MARGIN = 12;
export const MIN_W = 80;
export const MIN_H = 80;
export const DEFAULT_W = 240;
export const DEFAULT_H = 120;


바운더리 설정

Boundary.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react';

export default React.forwardRef<HTMLDivElement, React.ComponentProps<'div'>>(function Boundary(
  props,
  ref,
) {
  return (
    <div
      {...props}
      ref={ref}
      className={
        'relative h-64 overflow-hidden rounded-xl bg-gray-200 dark:bg-[#121212] ' + props.className
      }
    />
  );
});


바운더리의 레이아웃 설정

BoundaryLayout.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { useEffect, useRef, useState } from 'react';
import { inrange } from 'utils/resize';
import Boundary from './Boundary';
import registDragEvent from 'utils/registDragEvent';
import { BOUNDARY_MARGIN, DEFAULT_W, DEFAULT_H } from 'constants/dnd';
import DragMenu from './DragMenu';


const BoundaryLayout = () => {

    const boundaryRef = useRef<HTMLDivElement>(null);

    // element의 config(위치, 크기) 상태를 정의
    const [{ x, y, w, h }, setConfig] = useState({
        x: 0,
        y: 0,
        w: 0,
        h: 0,
    });

    // element의 config을 초기
    // boundary를 기준으로 중앙정렬
    useEffect(() => {
        const boundary = boundaryRef.current?.getBoundingClientRect();

        if (boundary) {
            setConfig({
                x: Math.floor(boundary.width / 2 - DEFAULT_W / 2),
                y: Math.floor(boundary.height / 2 - DEFAULT_H / 2),
                w: DEFAULT_W,
                h: DEFAULT_H,
            });
        }
    }, []);

    const [isShow, setIsShow] = useState(true);


    return (
        <>
            <div className="p-4">
                <Boundary ref={boundaryRef}>
                    <div
                        style=
                        className="absolute"
                        // position drag 이벤트를 등록
                        {...registDragEvent((deltaX: number, deltaY: number) => {
                            if (!boundaryRef.current) return;
                            const boundary = boundaryRef.current.getBoundingClientRect();

                            // config 상태를 변경하여 element의 크기를 변화
                            setConfig({
                                x: inrange(x + deltaX, BOUNDARY_MARGIN, boundary.width - w - BOUNDARY_MARGIN),
                                y: inrange(y + deltaY, BOUNDARY_MARGIN, boundary.height - h - BOUNDARY_MARGIN),
                                w,
                                h,
                            });
                        })}
                    >
                        <DragMenu
                            setConfig={setConfig}
                            x={x}
                            y={y}
                            w={w}
                            h={h}
                            boundaryRef={boundaryRef}
                            show={isShow}
                        />
                    </div>
                </Boundary>
            </div>
        </>
    );
}

export default BoundaryLayout;


Drag Layout 설정

DragLayout.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import { inrange } from 'utils/resize';
import registDragEvent from 'utils/registDragEvent';
import { BOUNDARY_MARGIN, MIN_W, MIN_H } from 'constants/dnd';


interface DragLayoutProps {
    setConfig: React.Dispatch<React.SetStateAction<{
        x: number;
        y: number;
        w: number;
        h: number;
    }>>;
    x: number;
    y: number;
    w: number;
    h: number;
    boundaryRef: React.RefObject<HTMLDivElement>;
    show: boolean;
}

const DragLayout: React.FC<DragLayoutProps> = ({
    setConfig,
    x, y, w, h,
    boundaryRef,
    show,
}: DragLayoutProps) => {

    return (
        <>

            {/* 좌상단  */}
            <div
                className="absolute -top-1 -left-1 h-4 w-4 cursor-nw-resize"
                style=
                // resize되는 범위를 잘 설정
                {...registDragEvent((deltaX, deltaY) => {
                    setConfig({
                        x: inrange(x + deltaX, BOUNDARY_MARGIN, x + w - MIN_W),
                        y: inrange(y + deltaY, BOUNDARY_MARGIN, y + h - MIN_H),
                        w: inrange(w - deltaX, MIN_W, x + w - BOUNDARY_MARGIN),
                        h: inrange(h - deltaY, MIN_H, y + h - BOUNDARY_MARGIN),
                    });
                }, true)} // resize의 클릭 이벤트가 부모로 전파되지 않도록 true 를 전달해 stopPropagation
            />
            {/* 우상단 */}
            <div
                className="absolute -top-1 -right-1 h-4 w-4 cursor-ne-resize"
                style=
                {...registDragEvent((deltaX, deltaY) => {
                    if (!boundaryRef.current) return;

                    const boundary = boundaryRef.current.getBoundingClientRect();

                    setConfig({
                        x: x,
                        y: inrange(y + deltaY, BOUNDARY_MARGIN, y + h - MIN_H),
                        w: inrange(w + deltaX, MIN_W, boundary.width - x - BOUNDARY_MARGIN),
                        h: inrange(h - deltaY, MIN_H, y + h - BOUNDARY_MARGIN),
                    });
                }, true)}
            />
            {/* 좌하단 */}
            <div
                className="absolute -bottom-1 -left-1 h-4 w-4 cursor-ne-resize"
                style=
                {...registDragEvent((deltaX, deltaY) => {
                    if (!boundaryRef.current) return;

                    const boundary = boundaryRef.current.getBoundingClientRect();

                    setConfig({
                        x: inrange(x + deltaX, BOUNDARY_MARGIN, x + w - MIN_W),
                        y: y,
                        w: inrange(w - deltaX, MIN_W, x + w - BOUNDARY_MARGIN),
                        h: inrange(h + deltaY, MIN_H, boundary.height - y - BOUNDARY_MARGIN),
                    });
                }, true)}
            />
            {/* 우하단 */}
            <div
                className="absolute -bottom-1 -right-1 h-4 w-4 cursor-se-resize"
                style=
                {...registDragEvent((deltaX, deltaY) => {
                    if (!boundaryRef.current) return;

                    const boundary = boundaryRef.current.getBoundingClientRect();

                    setConfig({
                        x: x,
                        y: y,
                        w: inrange(w + deltaX, MIN_W, boundary.width - x - BOUNDARY_MARGIN),
                        h: inrange(h + deltaY, MIN_H, boundary.height - y - BOUNDARY_MARGIN),
                    });
                }, true)}
            />
            {/* 상단 */}
            <div
                className="absolute -top-0.5 left-3 right-3 h-2 cursor-n-resize"
                style=
                {...registDragEvent((_, deltaY) => {
                    setConfig({
                        x: x,
                        y: inrange(y + deltaY, BOUNDARY_MARGIN, y + h - MIN_H),
                        w: w,
                        h: inrange(h - deltaY, MIN_H, y + h - BOUNDARY_MARGIN),
                    });
                }, true)}
            />
            {/* 하단 */}
            <div
                className="absolute -bottom-0.5 left-3 right-3 h-2 cursor-s-resize"
                style=
                {...registDragEvent((_, deltaY) => {
                    if (!boundaryRef.current) return;

                    const boundary = boundaryRef.current.getBoundingClientRect();

                    setConfig({
                        x: x,
                        y: y,
                        w: w,
                        h: inrange(h + deltaY, MIN_H, boundary.height - y - BOUNDARY_MARGIN),
                    });
                }, true)}
            />
            {/* 우측 */}
            <div
                className="absolute bottom-3 top-3 -right-0.5 w-2 cursor-e-resize"
                style=
                {...registDragEvent((deltaX) => {
                    if (!boundaryRef.current) return;

                    const boundary = boundaryRef.current.getBoundingClientRect();

                    setConfig({
                        x: x,
                        y: y,
                        w: inrange(w + deltaX, MIN_W, boundary.width - x - BOUNDARY_MARGIN),
                        h: h,
                    });
                }, true)}
            />
            {/* 좌측 */}
            <div
                className="absolute bottom-3 top-3 -left-0.5 w-2 cursor-w-resize"
                style=
                {...registDragEvent((deltaX) => {
                    setConfig({
                        x: inrange(x + deltaX, BOUNDARY_MARGIN, x + w - MIN_W),
                        y: y,
                        w: inrange(w - deltaX, MIN_W, x + w - BOUNDARY_MARGIN),
                        h: h,
                    });
                }, true)}
            />
        </>

    );
}

export default DragLayout;


모달 생성

ResizeModal.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
const ResizeModal = () => {
    return (<>
        <>
            <div className="absolute h-full w-full cursor-move rounded-xl bg-white shadow-xl ring-1 ring-gray-100 transition-[shadow,transform] active:scale-[0.97] active:shadow-lg" >
                <div className="modal-header dark">
                    <h5 className="modal-title dark f14">테스트 모달 1</h5>
                </div>
            </div>
        </>
    </>)
}

export default ResizeModal;


모달 등록

DragMenu.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import ResizeModal from "components/DragAndResize/ResizeModal";
import DragLayout from "components/DragAndResize/DragLayout";

interface DragMenuProps {
    setConfig: React.Dispatch<React.SetStateAction<{
        x: number;
        y: number;
        w: number;
        h: number;
    }>>;
    x: number;
    y: number;
    w: number;
    h: number;
    boundaryRef: React.RefObject<HTMLDivElement>
    show: boolean;
}

const DragMenu: React.FC<DragMenuProps> = ({
    setConfig,
    x, y, w, h,
    boundaryRef,
    show,
}: DragMenuProps) => {

    return (
        <>
            <div className="absolute h-full w-full cursor-move rounded-xl bg-white shadow-xl ring-1 ring-gray-100 transition-[shadow,transform] active:scale-[0.97] active:shadow-lg">
                <ResizeModal />
            </div>

            <DragLayout
                setConfig={setConfig}
                x={x}
                y={y}
                w={w}
                h={h}
                boundaryRef={boundaryRef}
                show={show}
            />

        </>

    );
}

export default DragMenu;


컴포넌트 호출

컴포넌트 호출

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { FC, useRef, useState, useMemo } from 'react';
import "./css/resize.css";
import BoundaryLayout from "components/dragandresize/BoundaryLayout";

const [isShowFirstMenu, setIsShowFirstMenu] = useState(false);

const openFirstMenu = () => {
    setIsShowFirstMenu(!isShowFirstMenu);
}

const bundaryLayout = useMemo(
    () => {
        return (<BoundaryLayout
            isShowFirstMenu={isShowFirstMenu}
        />)
    },
    [isShowFirstMenu]
);

return (
    <>
        <div className="wrapper-home-custom">
            {bundaryLayout}


            <button
                type="button"
                className="btn btn-type-04 sm-btn"
                onClick={openFirstMenu}
            >
                first menu
            </button>
        </div>
    </>
);

Tags:

Updated:

Leave a comment