Skip to content

Commit ab4ac58

Browse files
authored
Merge pull request #4 from ricokahler/fix/refresh-after-bulk-delete
fix: refresh after bulk delete
2 parents 98df37d + db6825d commit ab4ac58

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

src/bulk-actions-menu/index.tsx

+10-4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ interface Props {
2727
className?: string;
2828
typeName: string;
2929
selectedIds: Set<string>;
30+
onDelete: () => void;
3031
}
3132

3233
const ErroredDocuments = ({ e, schemaType }: { e: any; schemaType: any }) => {
@@ -61,7 +62,12 @@ const ErroredDocuments = ({ e, schemaType }: { e: any; schemaType: any }) => {
6162
const removeDraftPrefix = (s: string) =>
6263
s.startsWith('drafts.') ? s.substring('drafts.'.length) : s;
6364

64-
function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
65+
function BulkActionsMenu({
66+
className,
67+
selectedIds,
68+
typeName,
69+
onDelete,
70+
}: Props) {
6571
const buttonId = useMemo(nanoid, []);
6672
const schemaType = useMemo(() => schema.get(typeName), [typeName]);
6773
const toast = useToast();
@@ -88,7 +94,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
8894

8995
const draftIdsThatAlsoHavePublishedIds = ids.filter(
9096
(id) =>
91-
id.startsWith('drafts.') && idSet.has(id.substring('drafts.'.length)),
97+
id.startsWith('drafts.') && idSet.has(id.substring('drafts.'.length))
9298
);
9399

94100
const t = client.transaction();
@@ -225,6 +231,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
225231
}
226232

227233
await t.commit();
234+
onDelete();
228235
} catch (e) {
229236
console.warn(e);
230237

@@ -234,8 +241,7 @@ function BulkActionsMenu({ className, selectedIds, typeName }: Props) {
234241
<>
235242
<p>
236243
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.
239245
</p>
240246

241247
<ErroredDocuments e={e} schemaType={schemaType} />

src/create-super-pane.tsx

+10-5
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ function createSuperPane(typeName: string, S: any) {
6464
}, [client.refresh]);
6565

6666
const fields = schemaType.fields.filter((field: any) =>
67-
selectedColumns.has(field.name),
67+
selectedColumns.has(field.name)
6868
);
6969

7070
const atLeastOneSelected = client.results.some((i) =>
71-
selectedIds.has(i._normalizedId),
71+
selectedIds.has(i._normalizedId)
7272
);
7373
const allSelected = client.results.every((i) =>
74-
selectedIds.has(i._normalizedId),
74+
selectedIds.has(i._normalizedId)
7575
);
7676

7777
return (
@@ -98,6 +98,11 @@ function createSuperPane(typeName: string, S: any) {
9898
className={styles.clearButton}
9999
selectedIds={selectedIds}
100100
typeName={typeName}
101+
onDelete={() => {
102+
setSelectedIds(new Set());
103+
client.setPage(0);
104+
client.refresh();
105+
}}
101106
/>
102107
</div>
103108
</div>
@@ -172,7 +177,7 @@ function createSuperPane(typeName: string, S: any) {
172177
router.resolveIntentLink('edit', {
173178
id: item._id,
174179
type: item._type,
175-
}),
180+
})
176181
);
177182
};
178183

@@ -193,7 +198,7 @@ function createSuperPane(typeName: string, S: any) {
193198
<td
194199
className={classNames(
195200
styles.checkboxCell,
196-
'prevent-nav',
201+
'prevent-nav'
197202
)}
198203
>
199204
<input

0 commit comments

Comments
 (0)