mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
0139b91b5d
* 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.
97 lines
2.5 KiB
TypeScript
97 lines
2.5 KiB
TypeScript
import invariant from "invariant";
|
|
import { orderBy, sortBy } from "es-toolkit/compat";
|
|
import { action, computed, runInAction } from "mobx";
|
|
import Notification from "~/models/Notification";
|
|
import type { PaginationParams } from "~/types";
|
|
import { client } from "~/utils/ApiClient";
|
|
import type RootStore from "./RootStore";
|
|
import Store, { RPCAction } from "./base/Store";
|
|
|
|
export default class NotificationsStore extends Store<Notification> {
|
|
actions = [RPCAction.List, RPCAction.Update];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, Notification);
|
|
}
|
|
|
|
@action
|
|
fetchPage = async (
|
|
options: ({ archived?: boolean } & PaginationParams) | undefined
|
|
): Promise<Notification[]> => {
|
|
this.isFetching = true;
|
|
|
|
try {
|
|
const res = await client.post("/notifications.list", options);
|
|
invariant(res?.data, "Document revisions not available");
|
|
|
|
let models: Notification[] = [];
|
|
runInAction("NotificationsStore#fetchPage", () => {
|
|
models = res.data.notifications.map(this.add);
|
|
this.isLoaded = true;
|
|
});
|
|
|
|
return models;
|
|
} finally {
|
|
this.isFetching = false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Mark all notifications as read.
|
|
*/
|
|
@action
|
|
markAllAsRead = async () => {
|
|
await client.post("/notifications.update_all", {
|
|
viewedAt: new Date().toISOString(),
|
|
});
|
|
|
|
runInAction("NotificationsStore#markAllAsRead", () => {
|
|
const viewedAt = new Date();
|
|
this.data.forEach((notification) => {
|
|
notification.viewedAt = viewedAt;
|
|
});
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Mark all notifications as archived.
|
|
*/
|
|
@action
|
|
markAllAsArchived = async () => {
|
|
await client.post("/notifications.update_all", {
|
|
archivedAt: new Date().toISOString(),
|
|
});
|
|
|
|
runInAction("NotificationsStore#markAllAsArchived", () => {
|
|
this.clear();
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Returns the approximate number of unread notifications.
|
|
*/
|
|
@computed
|
|
get approximateUnreadCount(): number {
|
|
return this.active.filter((notification) => !notification.viewedAt).length;
|
|
}
|
|
|
|
/**
|
|
* Returns the notifications in order of created date.
|
|
*/
|
|
@computed
|
|
get orderedData(): Notification[] {
|
|
return sortBy(
|
|
orderBy(Array.from(this.data.values()), "createdAt", "desc"),
|
|
(item) => (item.viewedAt ? 1 : -1)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns only the active (non-archived) notifications.
|
|
*/
|
|
@computed
|
|
get active(): Notification[] {
|
|
return this.orderedData.filter((n) => !n.archivedAt);
|
|
}
|
|
}
|