* feat: add improved search * wip: add support for sorting, rename use-options to use-query-options, add use-options for local usage, add pages search group * feat: add help links from manage layout to help search mode * feat: add additional search engines * feat: add group search details * refactor: improve users search group type * feat: add apps search group, add disabled search interaction * feat: add integrations and boards for search * wip: hook issue with react * fix: hook issue regarding actions and interactions * chore: address pull request feedback * fix: format issues * feat: add additional global actions to search * chore: remove unused code * fix: search engine short key * fix: typecheck issues * fix: deepsource issues * fix: eslint issue * fix: lint issues * fix: unordered dependencies * chore: address pull request feedback
127 lines
4.4 KiB
TypeScript
127 lines
4.4 KiB
TypeScript
import { Button, Group, InputWrapper, Slider, Stack, Switch, TextInput } from "@mantine/core";
|
|
import { useDebouncedValue } from "@mantine/hooks";
|
|
import { IconAlertTriangle, IconCircleCheck } from "@tabler/icons-react";
|
|
|
|
import { clientApi } from "@homarr/api/client";
|
|
import { revalidatePathActionAsync } from "@homarr/common/client";
|
|
import { useZodForm } from "@homarr/form";
|
|
import { createModal } from "@homarr/modals";
|
|
import { showErrorNotification, showSuccessNotification } from "@homarr/notifications";
|
|
import { useI18n } from "@homarr/translation/client";
|
|
import { validation } from "@homarr/validation";
|
|
|
|
export const AddBoardModal = createModal(({ actions }) => {
|
|
const t = useI18n();
|
|
const form = useZodForm(validation.board.create, {
|
|
mode: "controlled",
|
|
initialValues: {
|
|
name: "",
|
|
columnCount: 10,
|
|
isPublic: false,
|
|
},
|
|
});
|
|
const { mutate, isPending } = clientApi.board.createBoard.useMutation({
|
|
onSettled: async () => {
|
|
await revalidatePathActionAsync("/manage/boards");
|
|
},
|
|
});
|
|
|
|
const boardNameStatus = useBoardNameStatus(form.values.name);
|
|
|
|
const columnCountChecks = validation.board.create.shape.columnCount._def.checks;
|
|
const minColumnCount = columnCountChecks.find((check) => check.kind === "min")?.value;
|
|
const maxColumnCount = columnCountChecks.find((check) => check.kind === "max")?.value;
|
|
|
|
return (
|
|
<form
|
|
onSubmit={form.onSubmit((values) => {
|
|
// Prevent submit before name availability check
|
|
if (!boardNameStatus.canSubmit) return;
|
|
mutate(values, {
|
|
onSuccess: () => {
|
|
actions.closeModal();
|
|
showSuccessNotification({
|
|
title: "Board created",
|
|
message: `Board ${values.name} has been created`,
|
|
});
|
|
},
|
|
onError() {
|
|
showErrorNotification({
|
|
title: "Failed to create board",
|
|
message: `Board ${values.name} could not be created`,
|
|
});
|
|
},
|
|
});
|
|
})}
|
|
>
|
|
<Stack>
|
|
<TextInput
|
|
label={t("board.field.name.label")}
|
|
data-autofocus
|
|
{...form.getInputProps("name")}
|
|
description={
|
|
boardNameStatus.description ? (
|
|
<Group c={boardNameStatus.description.color} gap="xs" align="center">
|
|
{boardNameStatus.description.icon ? <boardNameStatus.description.icon size={16} /> : null}
|
|
<span>{boardNameStatus.description.label}</span>
|
|
</Group>
|
|
) : null
|
|
}
|
|
/>
|
|
<InputWrapper label={t("board.field.columnCount.label")} {...form.getInputProps("columnCount")}>
|
|
<Slider min={minColumnCount} max={maxColumnCount} step={1} {...form.getInputProps("columnCount")} />
|
|
</InputWrapper>
|
|
|
|
<Switch
|
|
label={t("board.field.isPublic.label")}
|
|
description={t("board.field.isPublic.description")}
|
|
{...form.getInputProps("isPublic")}
|
|
/>
|
|
|
|
<Group justify="right">
|
|
<Button onClick={actions.closeModal} variant="subtle" color="gray">
|
|
{t("common.action.cancel")}
|
|
</Button>
|
|
<Button type="submit" color="teal" loading={isPending}>
|
|
{t("common.action.create")}
|
|
</Button>
|
|
</Group>
|
|
</Stack>
|
|
</form>
|
|
);
|
|
}).withOptions({
|
|
defaultTitle: (t) => t("management.page.board.action.new.label"),
|
|
});
|
|
|
|
export const useBoardNameStatus = (name: string) => {
|
|
const t = useI18n();
|
|
const [debouncedName] = useDebouncedValue(name, 250);
|
|
const { data: boardExists, isLoading } = clientApi.board.exists.useQuery(debouncedName, {
|
|
enabled: validation.board.create.shape.name.safeParse(debouncedName).success,
|
|
});
|
|
|
|
return {
|
|
canSubmit: !boardExists && !isLoading,
|
|
description:
|
|
debouncedName.trim() === ""
|
|
? undefined
|
|
: isLoading
|
|
? {
|
|
label: "Checking availability...",
|
|
}
|
|
: boardExists === undefined
|
|
? undefined
|
|
: boardExists
|
|
? {
|
|
icon: IconAlertTriangle,
|
|
label: t("common.zod.errors.custom.boardAlreadyExists"), // The board ${debouncedName} already exists
|
|
color: "red",
|
|
}
|
|
: {
|
|
icon: IconCircleCheck,
|
|
label: `${debouncedName} is available`,
|
|
color: "green",
|
|
},
|
|
};
|
|
};
|