mirror of
https://github.com/docmost/docmost.git
synced 2025-11-17 21:21:13 +10:00
223 lines
6.7 KiB
TypeScript
223 lines
6.7 KiB
TypeScript
import {
|
|
ActionIcon,
|
|
Anchor,
|
|
Button,
|
|
Group,
|
|
Indicator,
|
|
Popover,
|
|
Switch,
|
|
Text,
|
|
TextInput,
|
|
Tooltip,
|
|
} from "@mantine/core";
|
|
import { IconWorld } from "@tabler/icons-react";
|
|
import React, { useEffect, useState } from "react";
|
|
import {
|
|
useCreateShareMutation,
|
|
useDeleteShareMutation,
|
|
useShareForPageQuery,
|
|
useUpdateShareMutation,
|
|
} from "@/features/share/queries/share-query.ts";
|
|
import { Link, useParams } from "react-router-dom";
|
|
import { extractPageSlugId, getPageIcon } from "@/lib";
|
|
import { useTranslation } from "react-i18next";
|
|
import CopyTextButton from "@/components/common/copy.tsx";
|
|
import { getAppUrl } from "@/lib/config.ts";
|
|
import { buildPageUrl } from "@/features/page/page.utils.ts";
|
|
import classes from "@/features/share/components/share.module.css";
|
|
|
|
interface ShareModalProps {
|
|
readOnly: boolean;
|
|
}
|
|
export default function ShareModal({ readOnly }: ShareModalProps) {
|
|
const { t } = useTranslation();
|
|
const { pageSlug } = useParams();
|
|
const pageId = extractPageSlugId(pageSlug);
|
|
const { data: share } = useShareForPageQuery(pageId);
|
|
const { spaceSlug } = useParams();
|
|
const createShareMutation = useCreateShareMutation();
|
|
const updateShareMutation = useUpdateShareMutation();
|
|
const deleteShareMutation = useDeleteShareMutation();
|
|
// pageIsShared means that the share exists and its level equals zero.
|
|
const pageIsShared = share && share.level === 0;
|
|
// if level is greater than zero, then it is a descendant page from a shared page
|
|
const isDescendantShared = share && share.level > 0;
|
|
|
|
const publicLink = `${getAppUrl()}/share/${share?.key}/${pageSlug}`;
|
|
|
|
const [isPagePublic, setIsPagePublic] = useState<boolean>(false);
|
|
useEffect(() => {
|
|
if (share) {
|
|
setIsPagePublic(true);
|
|
} else {
|
|
setIsPagePublic(false);
|
|
}
|
|
}, [share, pageId]);
|
|
|
|
const handleChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
const value = event.currentTarget.checked;
|
|
|
|
if (value) {
|
|
createShareMutation.mutateAsync({
|
|
pageId: pageId,
|
|
includeSubPages: true,
|
|
searchIndexing: true,
|
|
});
|
|
setIsPagePublic(value);
|
|
} else {
|
|
if (share && share.id) {
|
|
deleteShareMutation.mutateAsync(share.id);
|
|
setIsPagePublic(value);
|
|
}
|
|
}
|
|
};
|
|
|
|
const handleSubPagesChange = async (
|
|
event: React.ChangeEvent<HTMLInputElement>,
|
|
) => {
|
|
const value = event.currentTarget.checked;
|
|
updateShareMutation.mutateAsync({
|
|
shareId: share.id,
|
|
includeSubPages: value,
|
|
});
|
|
};
|
|
|
|
const handleIndexSearchChange = async (
|
|
event: React.ChangeEvent<HTMLInputElement>,
|
|
) => {
|
|
const value = event.currentTarget.checked;
|
|
updateShareMutation.mutateAsync({
|
|
shareId: share.id,
|
|
searchIndexing: value,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Popover width={350} position="bottom" withArrow shadow="md">
|
|
<Popover.Target>
|
|
<Button
|
|
style={{ border: "none" }}
|
|
size="compact-sm"
|
|
leftSection={
|
|
<Indicator
|
|
color="green"
|
|
offset={5}
|
|
disabled={!isPagePublic}
|
|
withBorder
|
|
>
|
|
<IconWorld size={20} stroke={1.5} />
|
|
</Indicator>
|
|
}
|
|
variant="default"
|
|
>
|
|
Share
|
|
</Button>
|
|
</Popover.Target>
|
|
<Popover.Dropdown style={{ userSelect: "none" }}>
|
|
{isDescendantShared ? (
|
|
<>
|
|
<Text size="sm">{t("Inherits public sharing from")}</Text>
|
|
<Anchor
|
|
size="sm"
|
|
underline="never"
|
|
style={{
|
|
cursor: "pointer",
|
|
color: "var(--mantine-color-text)",
|
|
}}
|
|
component={Link}
|
|
to={buildPageUrl(
|
|
spaceSlug,
|
|
share.sharedPage.slugId,
|
|
share.sharedPage.title,
|
|
)}
|
|
>
|
|
<Group gap="4" wrap="nowrap" my="sm">
|
|
{getPageIcon(share.sharedPage.icon)}
|
|
<div className={classes.shareLinkText}>
|
|
<Text fz="sm" fw={500} lineClamp={1}>
|
|
{share.sharedPage.title || t("untitled")}
|
|
</Text>
|
|
</div>
|
|
</Group>
|
|
</Anchor>
|
|
|
|
<Group my="sm" grow>
|
|
<TextInput
|
|
variant="filled"
|
|
value={publicLink}
|
|
readOnly
|
|
rightSection={<CopyTextButton text={publicLink} />}
|
|
/>
|
|
</Group>
|
|
</>
|
|
) : (
|
|
<>
|
|
<Group justify="space-between" wrap="nowrap" gap="xl">
|
|
<div>
|
|
<Text size="sm">
|
|
{isPagePublic ? t("Publicly shared") : t("Share to web")}
|
|
</Text>
|
|
<Text size="xs" c="dimmed">
|
|
{isPagePublic
|
|
? t("Anyone with the link can view this page")
|
|
: t("Make this page publicly accessible")}
|
|
</Text>
|
|
</div>
|
|
<Switch
|
|
onChange={handleChange}
|
|
defaultChecked={isPagePublic}
|
|
disabled={readOnly}
|
|
size="xs"
|
|
/>
|
|
</Group>
|
|
|
|
{pageIsShared && (
|
|
<>
|
|
<Group my="sm" grow>
|
|
<TextInput
|
|
variant="filled"
|
|
value={publicLink}
|
|
readOnly
|
|
rightSection={<CopyTextButton text={publicLink} />}
|
|
/>
|
|
</Group>
|
|
|
|
<Group justify="space-between" wrap="nowrap" gap="xl">
|
|
<div>
|
|
<Text size="sm">{t("Include sub-pages")}</Text>
|
|
<Text size="xs" c="dimmed">
|
|
{t("Make sub-pages public too")}
|
|
</Text>
|
|
</div>
|
|
|
|
<Switch
|
|
onChange={handleSubPagesChange}
|
|
checked={share.includeSubPages}
|
|
size="xs"
|
|
disabled={readOnly}
|
|
/>
|
|
</Group>
|
|
|
|
<Group justify="space-between" wrap="nowrap" gap="xl" mt="sm">
|
|
<div>
|
|
<Text size="sm">{t("Search engine indexing")}</Text>
|
|
<Text size="xs" c="dimmed">
|
|
{t("Allow search engines to index page")}
|
|
</Text>
|
|
</div>
|
|
<Switch
|
|
onChange={handleIndexSearchChange}
|
|
checked={share.searchIndexing}
|
|
size="xs"
|
|
disabled={readOnly}
|
|
/>
|
|
</Group>
|
|
</>
|
|
)}
|
|
</>
|
|
)}
|
|
</Popover.Dropdown>
|
|
</Popover>
|
|
);
|
|
}
|