Rocket.Chat.ReactNative/app/definitions/IThread.ts

74 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-01-24 20:12:36 +00:00
import Model from '@nozbe/watermelondb/Model';
import { MarkdownAST } from '@rocket.chat/message-parser';
import { IAttachment } from './IAttachment';
2022-02-28 18:00:47 +00:00
import { IEditedBy, IUserChannel, IUserMention, IUserMessage, MessageType } from './IMessage';
2022-01-24 20:12:36 +00:00
import { IReaction } from './IReaction';
2022-02-28 18:00:47 +00:00
import { IUrl } from './IUrl';
2022-01-24 20:12:36 +00:00
interface IFileThread {
_id: string;
name: string;
type: string;
}
export interface IThreadResult {
_id: string;
rid: string;
2022-02-28 18:00:47 +00:00
ts: string | Date;
msg?: string;
2022-01-24 20:12:36 +00:00
file?: IFileThread;
files?: IFileThread[];
groupable?: boolean;
attachments?: IAttachment[];
md?: MarkdownAST;
u: IUserMessage;
2022-02-28 18:00:47 +00:00
_updatedAt: Date;
urls?: IUrl[];
mentions?: IUserMention[];
channels?: IUserChannel[];
replies?: string[];
tcount?: number;
tlm?: Date;
2022-01-24 20:12:36 +00:00
}
export interface IThread {
id: string;
2022-02-28 18:00:47 +00:00
tmsg?: string;
2022-01-24 20:12:36 +00:00
msg?: string;
2022-02-28 18:00:47 +00:00
t?: MessageType;
rid: string;
2022-01-24 20:12:36 +00:00
_updatedAt?: Date;
ts?: Date;
u?: IUserMessage;
alias?: string;
parseUrls?: boolean;
groupable?: boolean;
avatar?: string;
emoji?: string;
attachments?: IAttachment[];
urls?: IUrl[];
status?: number;
pinned?: boolean;
starred?: boolean;
editedBy?: IEditedBy;
reactions?: IReaction[];
role?: string;
drid?: string;
2022-02-28 18:00:47 +00:00
dcount?: number | string;
2022-01-24 20:12:36 +00:00
dlm?: number;
tmid?: string;
2022-02-28 18:00:47 +00:00
tcount?: number | string;
2022-01-24 20:12:36 +00:00
tlm?: string;
replies?: string[];
mentions?: IUserMention[];
channels?: IUserChannel[];
unread?: boolean;
autoTranslate?: boolean;
translations?: any;
e2e?: string;
2022-02-28 18:00:47 +00:00
subscription: { id: string };
2022-01-24 20:12:36 +00:00
}
export type TThreadModel = IThread & Model;