@@ -34,17 +34,25 @@ const CategoryItems = ({
34
34
onNameInputChange,
35
35
onNameInputBlur,
36
36
} : CategoryItemsProps ) => {
37
- const orderedCategoryList = [ ...editedCategoryList ] . sort ( ( a , b ) => a . ordinal - b . ordinal ) ;
37
+ const orderedCategoryList = [ ...editedCategoryList ] . sort (
38
+ ( a , b ) => a . ordinal - b . ordinal ,
39
+ ) ;
38
40
39
41
const dragItem = useRef < number | null > ( null ) ;
40
42
const dragOverItem = useRef < number | null > ( null ) ;
41
43
42
- const handleDragStart = ( e : React . DragEvent < HTMLDivElement > , position : number ) => {
44
+ const handleDragStart = (
45
+ e : React . DragEvent < HTMLDivElement > ,
46
+ position : number ,
47
+ ) => {
43
48
dragItem . current = position ;
44
49
e . currentTarget . style . opacity = '0.5' ;
45
50
} ;
46
51
47
- const handleDragEnter = ( e : React . DragEvent < HTMLDivElement > , position : number ) => {
52
+ const handleDragEnter = (
53
+ e : React . DragEvent < HTMLDivElement > ,
54
+ position : number ,
55
+ ) => {
48
56
dragOverItem . current = position ;
49
57
e . currentTarget . style . backgroundColor = theme . color . dark . white ;
50
58
} ;
@@ -57,15 +65,23 @@ const CategoryItems = ({
57
65
e . currentTarget . style . opacity = '1' ;
58
66
e . currentTarget . style . backgroundColor = '' ;
59
67
60
- const reorderedCategoryList = getReorderedCategoryList ( orderedCategoryList , dragItem . current , dragOverItem . current ) ;
68
+ const reorderedCategoryList = getReorderedCategoryList (
69
+ orderedCategoryList ,
70
+ dragItem . current ,
71
+ dragOverItem . current ,
72
+ ) ;
61
73
62
74
handleOrdinalChange ( reorderedCategoryList ) ;
63
75
64
76
dragItem . current = null ;
65
77
dragOverItem . current = null ;
66
78
} ;
67
79
68
- const getReorderedCategoryList = ( categoryList : Category [ ] , startIndex : number , endIndex : number ) => {
80
+ const getReorderedCategoryList = (
81
+ categoryList : Category [ ] ,
82
+ startIndex : number ,
83
+ endIndex : number ,
84
+ ) => {
69
85
const copyListItems = [ ...categoryList ] ;
70
86
const dragItem = copyListItems [ startIndex ] ;
71
87
@@ -110,7 +126,10 @@ const CategoryItems = ({
110
126
) : (
111
127
< ExistingCategoryItem
112
128
id = { id }
113
- name = { editedCategoryList . find ( ( category ) => category . id === id ) ?. name ?? name }
129
+ name = {
130
+ editedCategoryList . find ( ( category ) => category . id === id )
131
+ ?. name ?? name
132
+ }
114
133
isEditing = { editingCategoryId === id }
115
134
isDeleted = { deleteCategoryIds . includes ( id ) }
116
135
onChange = { ( e ) => onNameInputChange ( id , e . target . value ) }
0 commit comments