Files
outline/app/scenes/Settings/Notifications.tsx
T
Tom Moor 0139b91b5d chore: Replace lodash with es-toolkit (#12281)
* chore: Replace lodash with es-toolkit

Migrate all direct lodash imports to es-toolkit/compat for a smaller,
faster, lodash-compatible utility library. Transitive lodash usage from
other packages remains unchanged.

* fix: Restore isPlainObject semantics in CanCan policy

The lodash migration aliased `isObject` to `lodash/isPlainObject` and
the codemod incorrectly mapped the local name to es-toolkit's `isObject`,
which also returns true for arrays and functions. This caused condition
objects in policy definitions to be skipped, breaking authorization
checks across the codebase.

* fix: Restore unicode-aware length counting in validators

es-toolkit/compat's size() returns string.length, while lodash's _.size()
counts unicode code points. Switch to [...value].length to preserve the
previous behavior so multi-byte characters like emoji count as one.
2026-05-06 21:03:47 -04:00

248 lines
6.9 KiB
TypeScript

import { debounce } from "es-toolkit/compat";
import { runInAction } from "mobx";
import { observer } from "mobx-react";
import {
AcademicCapIcon,
CheckboxIcon,
CollectionIcon,
CommentIcon,
DocumentIcon,
DoneIcon,
EditIcon,
EmailIcon,
PublishIcon,
SmileyIcon,
StarredIcon,
UserIcon,
GroupIcon,
} from "outline-icons";
import * as React from "react";
import { useTranslation, Trans } from "react-i18next";
import { toast } from "sonner";
import { NotificationEventType } from "@shared/types";
import Heading from "~/components/Heading";
import Notice from "~/components/Notice";
import Scene from "~/components/Scene";
import Switch from "~/components/Switch";
import Text from "~/components/Text";
import useCurrentUser from "~/hooks/useCurrentUser";
import { client } from "~/utils/ApiClient";
import isCloudHosted from "~/utils/isCloudHosted";
import SettingRow from "./components/SettingRow";
function Notifications() {
const user = useCurrentUser();
const { t } = useTranslation();
const options = [
{
event: NotificationEventType.PublishDocument,
icon: <PublishIcon />,
title: t("Document published"),
description: t(
"Receive a notification whenever a new document is published"
),
},
{
event: NotificationEventType.UpdateDocument,
icon: <EditIcon />,
title: t("Document updated"),
description: t(
"Receive a notification when a document you are subscribed to is edited"
),
},
{
event: NotificationEventType.CreateComment,
icon: <CommentIcon />,
title: t("Comment posted"),
description: t(
"Receive a notification when a document you are subscribed to or a thread you participated in receives a comment"
),
},
{
event: NotificationEventType.MentionedInComment,
icon: <EmailIcon />,
title: t("Mentioned"),
description: t(
"Receive a notification when someone mentions you in a document or comment"
),
},
{
event: NotificationEventType.GroupMentionedInDocument,
icon: <GroupIcon />,
title: t("Group mentions"),
description: t(
"Receive a notification when someone mentions a group you are a member of in a document or comment"
),
},
{
event: NotificationEventType.ResolveComment,
icon: <DoneIcon />,
title: t("Resolved"),
description: t(
"Receive a notification when a comment thread you were involved in is resolved"
),
},
{
event: NotificationEventType.ReactionsCreate,
icon: <SmileyIcon />,
title: t("Reaction added"),
description: t(
"Receive a notification when someone reacts to your comment"
),
},
{
event: NotificationEventType.CreateCollection,
icon: <CollectionIcon />,
title: t("Collection created"),
description: t(
"Receive a notification whenever a new collection is created"
),
},
{
event: NotificationEventType.InviteAccepted,
icon: <UserIcon />,
title: t("Invite accepted"),
description: t(
"Receive a notification when someone you invited creates an account"
),
},
{
event: NotificationEventType.AddUserToDocument,
icon: <DocumentIcon />,
title: t("Invited to document"),
description: t(
"Receive a notification when a document is shared with you"
),
},
{
event: NotificationEventType.AddUserToCollection,
icon: <CollectionIcon />,
title: t("Invited to collection"),
description: t(
"Receive a notification when you are given access to a collection"
),
},
{
event: NotificationEventType.ExportCompleted,
icon: <CheckboxIcon checked />,
title: t("Export completed"),
description: t(
"Receive a notification when an export you requested has been completed"
),
},
{
visible: isCloudHosted,
icon: <AcademicCapIcon />,
event: NotificationEventType.Onboarding,
title: t("Getting started"),
description: t("Tips on getting started with features and functionality"),
},
{
visible: isCloudHosted,
icon: <StarredIcon />,
event: NotificationEventType.Features,
title: t("New features"),
description: t("Receive an email when new features of note are added"),
},
];
const visibleOptions = options.filter((o) => o.visible !== false);
const showSuccessMessage = debounce(() => {
toast.success(t("Notifications saved"));
}, 500);
const handleChange = React.useCallback(
(eventType: NotificationEventType) => async (checked: boolean) => {
await user.setNotificationEventType(eventType, checked);
showSuccessMessage();
},
[user, showSuccessMessage]
);
const handleToggleAll = React.useCallback(
async (checked: boolean) => {
runInAction(() => {
const updated = { ...user.notificationSettings };
for (const option of visibleOptions) {
updated[option.event] = checked;
}
user.notificationSettings = updated;
});
await client.post(
checked
? `/users.notificationsSubscribe`
: `/users.notificationsUnsubscribe`
);
showSuccessMessage();
},
[user, visibleOptions, showSuccessMessage]
);
const allEnabled = visibleOptions.every((o) =>
user.subscribedToEventType(o.event)
);
const showSuccessNotice = window.location.search === "?success";
return (
<Scene title={t("Notifications")} icon={<EmailIcon />}>
<Heading>{t("Notifications")}</Heading>
{showSuccessNotice && (
<Notice>
<Trans>
Unsubscription successful. Your notification settings were updated
</Trans>
</Notice>
)}
<Text as="p" type="secondary">
<Trans>Manage when and where you receive email notifications.</Trans>
</Text>
<SettingRow
name="allNotifications"
label={t("All notifications")}
compact
border={false}
>
<Switch
id="allNotifications"
checked={allEnabled}
onChange={handleToggleAll}
/>
</SettingRow>
{options.map((option) => {
const setting = user.subscribedToEventType(option.event);
return (
<SettingRow
key={option.event}
visible={option.visible}
label={option.title}
name={option.event}
description={
<Text size="small" type="secondary">
{option.description}
</Text>
}
compact
>
<Switch
key={option.event}
id={option.event}
name={option.event}
checked={!!setting}
onChange={handleChange(option.event)}
/>
</SettingRow>
);
})}
</Scene>
);
}
export default observer(Notifications);