@@ -27,6 +27,7 @@ interface Props {
27
27
className ?: string ;
28
28
typeName : string ;
29
29
selectedIds : Set < string > ;
30
+ onDelete : ( ) => void ;
30
31
}
31
32
32
33
const ErroredDocuments = ( { e, schemaType } : { e : any ; schemaType : any } ) => {
@@ -61,7 +62,12 @@ const ErroredDocuments = ({ e, schemaType }: { e: any; schemaType: any }) => {
61
62
const removeDraftPrefix = ( s : string ) =>
62
63
s . startsWith ( 'drafts.' ) ? s . substring ( 'drafts.' . length ) : s ;
63
64
64
- function BulkActionsMenu ( { className, selectedIds, typeName } : Props ) {
65
+ function BulkActionsMenu ( {
66
+ className,
67
+ selectedIds,
68
+ typeName,
69
+ onDelete,
70
+ } : Props ) {
65
71
const buttonId = useMemo ( nanoid , [ ] ) ;
66
72
const schemaType = useMemo ( ( ) => schema . get ( typeName ) , [ typeName ] ) ;
67
73
const toast = useToast ( ) ;
@@ -88,7 +94,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
88
94
89
95
const draftIdsThatAlsoHavePublishedIds = ids . filter (
90
96
( id ) =>
91
- id . startsWith ( 'drafts.' ) && idSet . has ( id . substring ( 'drafts.' . length ) ) ,
97
+ id . startsWith ( 'drafts.' ) && idSet . has ( id . substring ( 'drafts.' . length ) )
92
98
) ;
93
99
94
100
const t = client . transaction ( ) ;
@@ -225,6 +231,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
225
231
}
226
232
227
233
await t . commit ( ) ;
234
+ onDelete ( ) ;
228
235
} catch ( e ) {
229
236
console . warn ( e ) ;
230
237
@@ -234,8 +241,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
234
241
< >
235
242
< p >
236
243
The bulk delete failed. This usually occurs because there are
237
- other documents referencing the documents you’re trying to
238
- delete.
244
+ other documents referencing the documents you’re trying to delete.
239
245
</ p >
240
246
241
247
< ErroredDocuments e = { e } schemaType = { schemaType } />
0 commit comments