368 lines
9.6 KiB
TypeScript
368 lines
9.6 KiB
TypeScript
import { isEmail } from "class-validator";
|
|
import { m } from "framer-motion";
|
|
import { observer } from "mobx-react";
|
|
import { BackIcon } from "outline-icons";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { toast } from "sonner";
|
|
import { DocumentPermission } from "@shared/types";
|
|
import Document from "~/models/Document";
|
|
import Share from "~/models/Share";
|
|
import User from "~/models/User";
|
|
import Avatar from "~/components/Avatar";
|
|
import { AvatarSize } from "~/components/Avatar/Avatar";
|
|
import NudeButton from "~/components/NudeButton";
|
|
import { createAction } from "~/actions";
|
|
import { UserSection } from "~/actions/sections";
|
|
import useBoolean from "~/hooks/useBoolean";
|
|
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
|
import useKeyDown from "~/hooks/useKeyDown";
|
|
import usePolicy from "~/hooks/usePolicy";
|
|
import usePrevious from "~/hooks/usePrevious";
|
|
import useStores from "~/hooks/useStores";
|
|
import { Permission } from "~/types";
|
|
import { documentPath, urlify } from "~/utils/routeHelpers";
|
|
import { Separator, Wrapper, presence } from "../components";
|
|
import { CopyLinkButton } from "../components/CopyLinkButton";
|
|
import { PermissionAction } from "../components/PermissionAction";
|
|
import { SearchInput } from "../components/SearchInput";
|
|
import { Suggestions } from "../components/Suggestions";
|
|
import DocumentMembersList from "./DocumentMemberList";
|
|
import { OtherAccess } from "./OtherAccess";
|
|
import PublicAccess from "./PublicAccess";
|
|
|
|
type Props = {
|
|
/** The document to share. */
|
|
document: Document;
|
|
/** The existing share model, if any. */
|
|
share: Share | null | undefined;
|
|
/** The existing share parent model, if any. */
|
|
sharedParent: Share | null | undefined;
|
|
/** Callback fired when the popover requests to be closed. */
|
|
onRequestClose: () => void;
|
|
/** Whether the popover is visible. */
|
|
visible: boolean;
|
|
};
|
|
|
|
function SharePopover({
|
|
document,
|
|
share,
|
|
sharedParent,
|
|
onRequestClose,
|
|
visible,
|
|
}: Props) {
|
|
const team = useCurrentTeam();
|
|
const { t } = useTranslation();
|
|
const can = usePolicy(document);
|
|
const [hasRendered, setHasRendered] = React.useState(visible);
|
|
const { users, userMemberships } = useStores();
|
|
const [query, setQuery] = React.useState("");
|
|
const [picker, showPicker, hidePicker] = useBoolean();
|
|
const [invitedInSession, setInvitedInSession] = React.useState<string[]>([]);
|
|
const [pendingIds, setPendingIds] = React.useState<string[]>([]);
|
|
const collectionSharingDisabled = document.collection?.sharing === false;
|
|
const [permission, setPermission] = React.useState<DocumentPermission>(
|
|
DocumentPermission.Read
|
|
);
|
|
|
|
const prevPendingIds = usePrevious(pendingIds);
|
|
|
|
const suggestionsRef = React.useRef<HTMLDivElement | null>(null);
|
|
const searchInputRef = React.useRef<HTMLInputElement | null>(null);
|
|
|
|
useKeyDown(
|
|
"Escape",
|
|
(ev) => {
|
|
if (!visible) {
|
|
return;
|
|
}
|
|
ev.preventDefault();
|
|
ev.stopImmediatePropagation();
|
|
|
|
if (picker) {
|
|
hidePicker();
|
|
} else {
|
|
onRequestClose();
|
|
}
|
|
},
|
|
{
|
|
allowInInput: true,
|
|
}
|
|
);
|
|
|
|
// Fetch sharefocus the link button when the popover is opened
|
|
React.useEffect(() => {
|
|
if (visible) {
|
|
void document.share();
|
|
setHasRendered(true);
|
|
}
|
|
}, [document, hidePicker, visible]);
|
|
|
|
// Hide the picker when the popover is closed
|
|
React.useEffect(() => {
|
|
if (visible) {
|
|
setPendingIds([]);
|
|
hidePicker();
|
|
}
|
|
}, [hidePicker, visible]);
|
|
|
|
// Clear the query when picker is closed
|
|
React.useEffect(() => {
|
|
if (!picker) {
|
|
setQuery("");
|
|
}
|
|
}, [picker]);
|
|
|
|
React.useEffect(() => {
|
|
if (prevPendingIds && pendingIds.length > prevPendingIds.length) {
|
|
setQuery("");
|
|
searchInputRef.current?.focus();
|
|
} else if (prevPendingIds && pendingIds.length < prevPendingIds.length) {
|
|
const firstPending = suggestionsRef.current?.firstElementChild;
|
|
|
|
if (firstPending) {
|
|
(firstPending as HTMLAnchorElement).focus();
|
|
}
|
|
}
|
|
}, [pendingIds, prevPendingIds]);
|
|
|
|
const inviteAction = React.useMemo(
|
|
() =>
|
|
createAction({
|
|
name: t("Invite"),
|
|
section: UserSection,
|
|
perform: async () => {
|
|
const usersInvited = await Promise.all(
|
|
pendingIds.map(async (idOrEmail) => {
|
|
let user;
|
|
|
|
// convert email to user
|
|
if (isEmail(idOrEmail)) {
|
|
const response = await users.invite([
|
|
{
|
|
email: idOrEmail,
|
|
name: idOrEmail,
|
|
role: team.defaultUserRole,
|
|
},
|
|
]);
|
|
user = response[0];
|
|
} else {
|
|
user = users.get(idOrEmail);
|
|
}
|
|
|
|
if (!user) {
|
|
return;
|
|
}
|
|
|
|
await userMemberships.create({
|
|
documentId: document.id,
|
|
userId: user.id,
|
|
permission,
|
|
});
|
|
|
|
return user;
|
|
})
|
|
);
|
|
|
|
if (usersInvited.length === 1) {
|
|
const user = usersInvited[0] as User;
|
|
toast.message(
|
|
t("{{ userName }} was invited to the document", {
|
|
userName: user.name,
|
|
}),
|
|
{
|
|
icon: <Avatar model={user} size={AvatarSize.Toast} />,
|
|
}
|
|
);
|
|
} else {
|
|
toast.success(
|
|
t("{{ count }} people invited to the document", {
|
|
count: pendingIds.length,
|
|
})
|
|
);
|
|
}
|
|
|
|
setInvitedInSession((prev) => [...prev, ...pendingIds]);
|
|
setPendingIds([]);
|
|
hidePicker();
|
|
},
|
|
}),
|
|
[
|
|
t,
|
|
pendingIds,
|
|
hidePicker,
|
|
userMemberships,
|
|
document.id,
|
|
permission,
|
|
users,
|
|
team.defaultUserRole,
|
|
]
|
|
);
|
|
|
|
const handleQuery = React.useCallback(
|
|
(event) => {
|
|
showPicker();
|
|
setQuery(event.target.value);
|
|
},
|
|
[showPicker, setQuery]
|
|
);
|
|
|
|
const handleAddPendingId = React.useCallback(
|
|
(id: string) => {
|
|
setPendingIds((prev) => [...prev, id]);
|
|
},
|
|
[setPendingIds]
|
|
);
|
|
|
|
const handleRemovePendingId = React.useCallback(
|
|
(id: string) => {
|
|
setPendingIds((prev) => prev.filter((i) => i !== id));
|
|
},
|
|
[setPendingIds]
|
|
);
|
|
|
|
const handleKeyDown = React.useCallback(
|
|
(ev: React.KeyboardEvent<HTMLInputElement>) => {
|
|
if (ev.nativeEvent.isComposing) {
|
|
return;
|
|
}
|
|
if (ev.key === "ArrowDown" && !ev.shiftKey) {
|
|
ev.preventDefault();
|
|
|
|
if (ev.currentTarget.value) {
|
|
const length = ev.currentTarget.value.length;
|
|
const selectionStart = ev.currentTarget.selectionStart || 0;
|
|
if (selectionStart < length) {
|
|
ev.currentTarget.selectionStart = length;
|
|
ev.currentTarget.selectionEnd = length;
|
|
return;
|
|
}
|
|
}
|
|
|
|
const firstSuggestion = suggestionsRef.current?.firstElementChild;
|
|
|
|
if (firstSuggestion) {
|
|
(firstSuggestion as HTMLAnchorElement).focus();
|
|
}
|
|
}
|
|
},
|
|
[]
|
|
);
|
|
|
|
const handleEscape = React.useCallback(
|
|
() => searchInputRef.current?.focus(),
|
|
[]
|
|
);
|
|
|
|
const permissions = React.useMemo(
|
|
() =>
|
|
[
|
|
{
|
|
label: t("View only"),
|
|
value: DocumentPermission.Read,
|
|
},
|
|
{
|
|
label: t("Can edit"),
|
|
value: DocumentPermission.ReadWrite,
|
|
},
|
|
{
|
|
label: t("Manage"),
|
|
value: DocumentPermission.Admin,
|
|
},
|
|
] as Permission[],
|
|
[t]
|
|
);
|
|
|
|
if (!hasRendered) {
|
|
return null;
|
|
}
|
|
|
|
const backButton = (
|
|
<>
|
|
{picker && (
|
|
<NudeButton
|
|
key="back"
|
|
as={m.button}
|
|
{...presence}
|
|
onClick={(event) => {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
hidePicker();
|
|
}}
|
|
>
|
|
<BackIcon />
|
|
</NudeButton>
|
|
)}
|
|
</>
|
|
);
|
|
|
|
const rightButton = picker ? (
|
|
pendingIds.length ? (
|
|
<PermissionAction
|
|
key="invite"
|
|
permission={permission}
|
|
permissions={permissions}
|
|
action={inviteAction}
|
|
onChange={(value: DocumentPermission) => setPermission(value)}
|
|
/>
|
|
) : null
|
|
) : (
|
|
<CopyLinkButton
|
|
key="copy-link"
|
|
url={urlify(documentPath(document))}
|
|
onCopy={onRequestClose}
|
|
/>
|
|
);
|
|
|
|
return (
|
|
<Wrapper>
|
|
{can.manageUsers && (
|
|
<SearchInput
|
|
ref={searchInputRef}
|
|
onChange={handleQuery}
|
|
onClick={showPicker}
|
|
onKeyDown={handleKeyDown}
|
|
query={query}
|
|
back={backButton}
|
|
action={rightButton}
|
|
/>
|
|
)}
|
|
|
|
{picker && (
|
|
<Suggestions
|
|
ref={suggestionsRef}
|
|
document={document}
|
|
query={query}
|
|
pendingIds={pendingIds}
|
|
addPendingId={handleAddPendingId}
|
|
removePendingId={handleRemovePendingId}
|
|
onEscape={handleEscape}
|
|
/>
|
|
)}
|
|
|
|
<div style={{ display: picker ? "none" : "block" }}>
|
|
<OtherAccess document={document}>
|
|
<DocumentMembersList
|
|
document={document}
|
|
invitedInSession={invitedInSession}
|
|
/>
|
|
</OtherAccess>
|
|
|
|
{team.sharing && can.share && !collectionSharingDisabled && visible && (
|
|
<>
|
|
{document.members.length ? <Separator /> : null}
|
|
<PublicAccess
|
|
document={document}
|
|
share={share}
|
|
sharedParent={sharedParent}
|
|
onRequestClose={onRequestClose}
|
|
/>
|
|
</>
|
|
)}
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
}
|
|
|
|
export default observer(SharePopover);
|