summaryrefslogtreecommitdiff
path: root/gui/src/types/trill.ts
blob: 6d67b66ebd0e2f257ef247488407feab60f77269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
import type { Event } from "./nostr";
import type { Ship } from "./urbit";

export type SortugRef = {
  type: string; // could call it app... anyway
  ship: Ship;
  path: string; // `/${string}`
};

export type PostID = string; //
export type ID = string; //
export interface PID {
  ship: Ship;
  id: ID;
}

export type TrillNode = Poast | FullNode;
export type FullFeed = Record<ID, FullNode>;
export type FlatFeed = Record<ID, Poast>;

export interface Engagement {
  reacts: ReactMap;
  quoted: Array<{ pid: PID }>;
  shared: Array<{ pid: PID }>;
}
export type ReactMap = Record<Ship, string>;
export interface SentPoast {
  host: Ship;
  author: Ship;
  thread: ID | null;
  parent: ID | null;
  contents: string;
  read: Lock;
  write: Lock;
  tags: string[];
}
export type Poast = {
  host: Ship;
  author: Ship;
  thread: ID | null;
  parent: ID | null;
  read: Lock;
  write: Lock;
  tags: string[];
  contents: Content;
  id: string;
  time: number; // not in the backend
  hash: string;
  children: ID[];
  engagement: Engagement;
  tlonRumor?: boolean;
  json?: { origin: ExternalApp; content: string }; // for rumor quoting
  event?: Event; // for Nostr posts
};
export type FullNode = Omit<Poast, "children"> & {
  children: FullFeed;
  prov?: boolean;
};
export type Content = Block[];
export type Block =
  | Paragraph
  | Blockquote
  | Heading
  | ListBlock
  | Codeblock
  | Eval
  | Media
  | Reference
  | ExternalContent;

export type Paragraph = { paragraph: Inline[] };
export type Blockquote = { blockquote: Inline[] };
export type Heading = { heading: { text: string; num: number } };
export type Codeblock = { codeblock: { code: string; lang: string } };
export type Eval = { hoon: string };
export type ListBlock = { list: { ordered: boolean; text: Inline[] } };
export type Media = { media: PostImages | PostVideo | PostAudio };
export type PostImages = { images: string[] };
export type PostVideo = { video: string };
export type PostAudio = { audio: string };
export type Reference = { ref: { type: string; ship: Ship; path: string } };

export type Inline =
  | TextInline
  | Italic
  | Bold
  | Strike
  | Underline
  | Superscript
  | Subscript
  | Mention
  | Codespan
  | LinkInline
  | Break;
export type TextInline = { text: string };
export type Italic = { italic: string };
export type Bold = { bold: string };
export type Strike = { strike: string };
export type Underline = { underline: string };
export type Superscript = { sup: string };
export type Subscript = { sub: string };
export type Mention = { ship: Ship };
// TODO! export type Da = {date: number}
export type Codespan = { codespan: string };
export type LinkInline = { link: { href: string; show: string } };
export type Break = { break: null };

export type ExternalContent = {
  json: {
    origin: ExternalApp;
    content: string;
  };
};
export type ExternalApp = "twatter" | "insta" | "anon" | "rumors" | "nostr";
export interface TwatterReference {
  json: {
    origin: "twatter";
    content: string;
  };
}
// interface CodeContent {
//   code: {
//     expression: string;
//     output: string[][];
//   };
// }
// Notifications
export interface Notifications {
  engagement: EngagementNotification[];
  unread: Record<Ship, PID[]>;
}
export type Notification =
  | EngagementNotification
  | FollowNotification
  | UnfollowNotification;
export type EngagementNotification =
  | ReactNotification
  | ReplyNotification
  | QuoteNotification
  | RepostNotification
  | MentionNotification;
export type NotificationData = { ship: Ship; time: number };
export interface FollowNotification {
  follow: NotificationData;
}
export interface UnfollowNotification {
  unfollow: NotificationData;
}
export interface ReactNotification {
  react: {
    pid: PID;
    react: string;
  } & NotificationData;
}
export interface ReplyNotification {
  reply: {
    ab: PID;
    ad: PID;
  } & NotificationData;
}
export interface QuoteNotification {
  quote: {
    ab: PID;
    ad: PID;
  } & NotificationData;
}
export interface RepostNotification {
  share: {
    ab: PID;
    ad: PID;
  } & NotificationData;
}
export interface MentionNotification {
  mention: {
    pid: PID;
  } & NotificationData;
}
export interface UnreadDisplay {
  [s: Ship]: string[];
}

//  data fetching
export type MixFeedScry = MixFeed | { bucun: string };

export type Cursor = string | null;
export type FC = {
  feed: FlatFeed;
  start: Cursor;
  end: Cursor;
};
export type MixFeed = {
  mix: {
    name: string;
    fc: FC;
  };
};
export type PoastScry = { post: Poast } | Bucun | NotFollowScry;
export type Bucun = { bucun: PID };
// TODO bucun no-node come on
export type UserFeedScry = UserScry | NotFollowScry;
export type NotFollowScry = { bugen: Ship };
export interface UserScry {
  feed: {
    ship: Ship;
    fc: FC;
  };
}

export type FullNodeScry =
  | { fpost: FullNode }
  | { "no-node": { ship: Ship; id: ID } };

//  Facts
export type PostFact = {
  post: ThreadFact | GossipFact;
};
export type ThreadFact = { thread: FullNode };
export type GossipFact = { gossip: { post: FullNode; feeds: string[] } };

export type PullFact = PeekFact | BegFact;
export type PeekFact = { peek: any };
export type BegFact = { beg: any };
export type HarkFact = any;
export type ListsFact = any;

export type TrillProfile = {};

export type TrillPostPermisssion =
  | "everyone"
  | "planets"
  | "followers"
  | "pals"
  | "tag";

// Lists

export type List = {
  name: string;
  symbol: string; // @tas
  public: boolean;
  desc: string;
  members: ListEntry[];
  icon: string;
  cover: string;
};
export type ListEntry = {
  service: "trill" | "twatter" | "twitter";
  username: string;
};

export type Lock = {
  rank: { caveats: Rank[]; locked: boolean; public: boolean };
  luk: { caveats: Ship[]; locked: boolean; public: boolean };
  ship: { caveats: Ship[]; locked: boolean; public: boolean };
  tags: { caveats: string[]; locked: boolean; public: boolean };
  custom: { fn: null; public: boolean };
};
export type Rank = "czar" | "king" | "duke" | "earl" | "pawn";
// Fetch return types
export type PushState = {
  followers: Ship[];
  gate: {
    lock: Lock;
    begs: Ship[];
    postBegs: PID[];
    mute: Lock;
    backlog: number;
  };
};

export type PullState = {
  begs: Ship[];
  postBegs: PID[];
  following: Ship[];
};
export type TrillSearchResponse = {
  search: {
    query: string;
    fc: FC;
  };
};
export type ListsResponse = {
  lists: List[];
};
export type MetaPeek = {
  posts: number;
  inc: Ship[];
  out: Ship[];
  lock: Lock;
  ship: Ship;
};
export type NodePeek = {};
export type FeedPeek = {
  ship: Ship;
  feed: FlatFeed;
};
export interface FollowAttempt {
  ship: Ship;
  timestamp: number;
}
export interface Key {
  ship: Ship;
  name: string;
}
// pals stuff
// TODO
// export interface SocialData {
//   groups: any | null;
//   clubs: any | null;
//   lists: List[];
//   pals: Pals | null;
//   contacts: Contacts;
// }

export type Poll = {
  host: Ship;
  id: string; // atom id
  expiry: number;
  text: string;
  options: string[];
  votes: PollVotes;
  // TODO locks
};
export type PollVotes = HiddenVotes | OpenExcVotes | OpenIncVotes;
export type HiddenVotes = {
  type: "hid";
  exc: boolean;
  votes: Record<number, number>;
};
export type OpenExcVotes = {
  type: "exc";
  votes: Record<Ship, VoteComment>;
};
export type OpenIncVotes = {
  type: "inc";
  votes: Record<number, Ship[]>;
};
export type VoteComment = { option: number; comment: string };

export type PollPoke =
  | CreatePoll
  | CancelPoll
  | ChangeExpiry
  | VotePoke
  | CancelVote
  | PeekPoll;
export type PeekPoll = { peek: PID };
export type SentPoll = {
  text: string;
  expiry: number;
  options: string[];
  exc: boolean;
  hidden: boolean;
  private: boolean;
  id: string;
};
export type CreatePoll = {
  propose: SentPoll;
};
export type CancelPoll = {
  cancel: ID;
};
export type ChangeExpiry = {
  "change-expiry": {
    pid: PID;
    expiry: number;
  };
};
export type VotePoke = {
  vote: {
    pid: PID;
    option: number;
    comment: string;
  };
};
export type CancelVote = {
  "cancel-vote": { pid: PID; option: number };
};
export type PollScry = OnePoll | DonePolls | CurrentPolls | BadPoll;
export type OnePoll = { poll: Poll };
export type DonePolls = { done: Poll[] };
export type CurrentPolls = { cur: Poll[] };
export type BadPoll = { ng: null };
export type TombPoll = { tomb: null };

export type PollUpdate = NewPollU | DedPollU | OldPollU | PollPeekRes;
export type DedPollU = { "ded-poll": PID };
export type OldPollU = { pid: PID } & (
  | NewVoteU
  | PollExpiryChanged
  | VoteCanceled
  | PollPeekRes
);
export type PollPeekRes = {
  "peek-res": PollPeekOK | PollPeekNG | PollPeekNF;
};
export type PollPeekOK = {
  "peek-ok": Poll;
};
export type PollPeekNG = { "peek-ng": string };
export type PollPeekNF = { "no-poll": null };

export type NewPollU = {
  "new-poll": Poll;
};
export type NewVoteU = {
  type: "new-vote";
  update: {
    option: number;
    ship: Ship;
    comment: string;
  };
};
export type PollExpiryChanged = {
  type: "expiry-changed";
  update: {
    expiry: number;
  };
};
export type VoteCanceled = {
  type: "vote-canceled";
  update: { option: number; ship: Ship };
};