mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-21 23:18:06 -04:00
* WIP * Some minor fixes for light theme - Fix `useIsDark` not reading the initial theme value (only reacting to theme changes) - Fix `Inspector` always showing a dark image when no item was selected - Fix `Thumb` video extension using black text on light theme * Improve form error messages - Fix `addLocationDialog` not registering the path input - Remove `@hookform/error-message` * Fix Dialog not respecting max-width - Fix ErrorMessage animation jumping * A lot of misc fixes - Implement an `useExplorerItemData` (cleaner fix for thumbnail flicker) - Fix broken image showing for `Thumb` due a rece condition when props are updated - Implement an `ExternalObject` component that hacks an alternative for `onLoad` and `onError` events for <object> - Fix `Overview` broken layout when `Inspector` is open and window is small - Improve `IndexerRuleEditor` UX in `AddLocationDialog` - Improve the way `IndexerRuleEditor` handles rules deletion - Fix `IndexerRuleEditor` closing the the new rule form even when the rule creation fails - Add an editable prop to `IndexerRuleEditor` to disable all editable functions - Fix `getIcon` fallbacking to Document instead of the dark version of an icon if it exists - Add some missing colors to white theme * Format * Fix Backup restore key dialog not resetting after error * Feedback * Format * Normalize imports * Fix ColorPicker export * Fix Thumb video ext not showing in MediaView with show square thumbnails - Fix AddLocationDialog Error resetting when changing IndexRules
41 lines
1020 B
TypeScript
41 lines
1020 B
TypeScript
import { useQueryClient } from '@tanstack/react-query';
|
|
import { useBridgeMutation, usePlausibleEvent } from '@sd/client';
|
|
import { Dialog, UseDialogProps, forms, useDialog } from '@sd/ui';
|
|
|
|
const { useZodForm, z } = forms;
|
|
|
|
interface Props extends UseDialogProps {
|
|
libraryUuid: string;
|
|
}
|
|
|
|
export default function DeleteLibraryDialog(props: Props) {
|
|
const submitPlausibleEvent = usePlausibleEvent();
|
|
|
|
const queryClient = useQueryClient();
|
|
const deleteLib = useBridgeMutation('library.delete', {
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries(['library.list']);
|
|
|
|
submitPlausibleEvent({
|
|
event: {
|
|
type: 'libraryDelete'
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
const form = useZodForm({ schema: z.object({}) });
|
|
|
|
return (
|
|
<Dialog
|
|
form={form}
|
|
onSubmit={() => deleteLib.mutateAsync(props.libraryUuid)}
|
|
dialog={useDialog(props)}
|
|
title="Delete Library"
|
|
description="Deleting a library will permanently the database, the files themselves will not be deleted."
|
|
ctaDanger
|
|
ctaLabel="Delete"
|
|
/>
|
|
);
|
|
}
|