@@ -19,6 +19,7 @@ export type DefaultItemProps = Omit<PrimitiveItemProps, 'renderDefault'> & {
19
19
}
20
20
21
21
const MENU_BUTTON_POPOVER_PROPS = { portal : true , tone : 'default' } as const
22
+ const EMPTY_ARRAY : never [ ] = [ ]
22
23
23
24
export const ItemRow = forwardRef ( function ItemRow (
24
25
props : DefaultItemProps ,
@@ -73,69 +74,76 @@ export const ItemRow = forwardRef(function ItemRow(
73
74
74
75
const { t} = useTranslation ( )
75
76
76
- const disableActions = parentSchemaType . options ?. disableActions || [ ]
77
+ const disableActions = parentSchemaType . options ?. disableActions || EMPTY_ARRAY
77
78
78
- const menuItems = [
79
- ! disableActions . includes ( 'remove' ) && (
80
- < MenuItem
81
- key = "remove"
82
- text = { t ( 'inputs.array.action.remove' ) }
83
- tone = "critical"
84
- icon = { TrashIcon }
85
- onClick = { onRemove }
86
- />
87
- ) ,
88
- ! disableActions . includes ( 'copy' ) && (
89
- < MenuItem
90
- key = "copy"
91
- text = { t ( 'inputs.array.action.copy' ) }
92
- icon = { CopyIcon }
93
- onClick = { handleCopy }
94
- />
95
- ) ,
96
- ! disableActions . includes ( 'duplicate' ) && (
97
- < MenuItem
98
- key = "duplicate"
99
- text = { t ( 'inputs.array.action.duplicate' ) }
100
- icon = { AddDocumentIcon }
101
- onClick = { handleDuplicate }
102
- />
103
- ) ,
104
- ! ( disableActions . includes ( 'add' ) || disableActions . includes ( 'addBefore' ) ) && (
105
- < InsertMenuGroup
106
- pos = "before"
107
- types = { insertableTypes }
108
- onInsert = { handleInsert }
109
- text = { t ( 'inputs.array.action.add-before' ) }
110
- icon = { InsertAboveIcon }
111
- />
112
- ) ,
113
- ! disableActions . includes ( 'add' ) &&
114
- ! ( disableActions . includes ( 'addAfter' ) && disableActions . includes ( 'addBefore' ) ) && (
115
- < InsertMenuGroup
116
- pos = "after"
117
- types = { insertableTypes }
118
- onInsert = { handleInsert }
119
- text = { t ( 'inputs.array.action.add-after' ) }
120
- icon = { InsertBelowIcon }
79
+ const menuItems = useMemo (
80
+ ( ) =>
81
+ [
82
+ ! disableActions . includes ( 'remove' ) && (
83
+ < MenuItem
84
+ key = "remove"
85
+ text = { t ( 'inputs.array.action.remove' ) }
86
+ tone = "critical"
87
+ icon = { TrashIcon }
88
+ onClick = { onRemove }
89
+ />
90
+ ) ,
91
+ ! disableActions . includes ( 'copy' ) && (
92
+ < MenuItem
93
+ key = "copy"
94
+ text = { t ( 'inputs.array.action.copy' ) }
95
+ icon = { CopyIcon }
96
+ onClick = { handleCopy }
97
+ />
98
+ ) ,
99
+ ! disableActions . includes ( 'duplicate' ) && (
100
+ < MenuItem
101
+ key = "duplicate"
102
+ text = { t ( 'inputs.array.action.duplicate' ) }
103
+ icon = { AddDocumentIcon }
104
+ onClick = { handleDuplicate }
105
+ />
106
+ ) ,
107
+ ! ( disableActions . includes ( 'add' ) || disableActions . includes ( 'addBefore' ) ) && (
108
+ < InsertMenuGroup
109
+ pos = "before"
110
+ types = { insertableTypes }
111
+ onInsert = { handleInsert }
112
+ text = { t ( 'inputs.array.action.add-before' ) }
113
+ icon = { InsertAboveIcon }
114
+ />
115
+ ) ,
116
+ ! disableActions . includes ( 'add' ) &&
117
+ ! ( disableActions . includes ( 'addAfter' ) && disableActions . includes ( 'addBefore' ) ) && (
118
+ < InsertMenuGroup
119
+ pos = "after"
120
+ types = { insertableTypes }
121
+ onInsert = { handleInsert }
122
+ text = { t ( 'inputs.array.action.add-after' ) }
123
+ icon = { InsertBelowIcon }
124
+ />
125
+ ) ,
126
+ ] . filter ( Boolean ) ,
127
+ [ disableActions , handleCopy , handleDuplicate , handleInsert , insertableTypes , onRemove , t ] ,
128
+ )
129
+
130
+ const menu = useMemo (
131
+ ( ) =>
132
+ readOnly || menuItems . length === 0 ? null : (
133
+ < MenuButton
134
+ button = { < ContextMenuButton /> }
135
+ id = { `${ inputId } -menuButton` }
136
+ popover = { MENU_BUTTON_POPOVER_PROPS }
137
+ menu = { < Menu > { menuItems } </ Menu > }
121
138
/>
122
139
) ,
123
- ]
124
-
125
- const menu = (
126
- < MenuButton
127
- button = { < ContextMenuButton /> }
128
- id = { `${ inputId } -menuButton` }
129
- popover = { MENU_BUTTON_POPOVER_PROPS }
130
- menu = { < Menu > { menuItems } </ Menu > }
131
- />
140
+ [ inputId , menuItems , readOnly ] ,
132
141
)
133
-
134
142
return (
135
143
< RowLayout
136
144
tone = { tone }
137
145
readOnly = { ! ! readOnly }
138
- menu = { ! readOnly && menu }
146
+ menu = { menu }
139
147
dragHandle = { sortable }
140
148
presence = { presence . length === 0 ? null : < FieldPresence presence = { presence } maxAvatars = { 1 } /> }
141
149
validation = {
0 commit comments