mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 09:21:42 +03:00
68 lines
1.5 KiB
TypeScript
68 lines
1.5 KiB
TypeScript
import { Post } from "../graph/index.d";
|
|
import { GroupUpdate } from "../groups/index.d";
|
|
import BigIntOrderedMap from "../lib/BigIntOrderedMap";
|
|
|
|
export type GraphNotifDescription = "link" | "comment" | "note" | "mention";
|
|
|
|
export interface UnreadStats {
|
|
unreads: Set<string> | number;
|
|
notifications: number;
|
|
last: number;
|
|
}
|
|
|
|
export interface GraphNotifIndex {
|
|
graph: string;
|
|
group: string;
|
|
description: GraphNotifDescription;
|
|
module: string;
|
|
index: string;
|
|
}
|
|
|
|
export interface GroupNotifIndex {
|
|
group: string;
|
|
description: string;
|
|
}
|
|
|
|
export type NotifIndex =
|
|
| { graph: GraphNotifIndex }
|
|
| { group: GroupNotifIndex };
|
|
|
|
export type GraphNotificationContents = Post[];
|
|
|
|
export type GroupNotificationContents = GroupUpdate[];
|
|
|
|
export type NotificationContents =
|
|
| { graph: GraphNotificationContents }
|
|
| { group: GroupNotificationContents };
|
|
export interface Notification {
|
|
read: boolean;
|
|
time: number;
|
|
contents: NotificationContents;
|
|
}
|
|
|
|
export interface IndexedNotification {
|
|
index: NotifIndex;
|
|
notification: Notification;
|
|
}
|
|
|
|
export type Timebox = IndexedNotification[];
|
|
|
|
export type Notifications = BigIntOrderedMap<Timebox>;
|
|
|
|
export interface NotificationGraphConfig {
|
|
watchOnSelf: boolean;
|
|
mentions: boolean;
|
|
watching: WatchedIndex[]
|
|
}
|
|
|
|
export interface Unreads {
|
|
graph: Record<string, Record<string, UnreadStats>>;
|
|
group: Record<string, UnreadStats>;
|
|
}
|
|
|
|
interface WatchedIndex {
|
|
graph: string;
|
|
index: string;
|
|
}
|
|
export type GroupNotificationsConfig = string[];
|