119 lines
2.2 KiB
JavaScript
119 lines
2.2 KiB
JavaScript
import { Model } from '@nozbe/watermelondb';
|
|
import { date, field, json, relation } from '@nozbe/watermelondb/decorators';
|
|
|
|
import { sanitizer } from '../utils';
|
|
|
|
export const THREAD_MESSAGES_TABLE = 'thread_messages';
|
|
|
|
export default class ThreadMessage extends Model {
|
|
static table = THREAD_MESSAGES_TABLE;
|
|
|
|
static associations = {
|
|
subscriptions: { type: 'belongs_to', key: 'subscription_id' }
|
|
};
|
|
|
|
@field('msg') msg;
|
|
|
|
@field('t') t;
|
|
|
|
@date('ts') ts;
|
|
|
|
@json('u', sanitizer) u;
|
|
|
|
@relation('subscriptions', 'subscription_id') subscription;
|
|
|
|
@field('rid') rid;
|
|
|
|
@field('alias') alias;
|
|
|
|
@json('parse_urls', sanitizer) parseUrls;
|
|
|
|
@field('groupable') groupable;
|
|
|
|
@field('avatar') avatar;
|
|
|
|
@field('emoji') emoji;
|
|
|
|
@json('attachments', sanitizer) attachments;
|
|
|
|
@json('urls', sanitizer) urls;
|
|
|
|
@date('_updated_at') _updatedAt;
|
|
|
|
@field('status') status;
|
|
|
|
@field('pinned') pinned;
|
|
|
|
@field('starred') starred;
|
|
|
|
@json('edited_by', sanitizer) editedBy;
|
|
|
|
@json('reactions', sanitizer) reactions;
|
|
|
|
@field('role') role;
|
|
|
|
@field('drid') drid;
|
|
|
|
@field('dcount') dcount;
|
|
|
|
@date('dlm') dlm;
|
|
|
|
@field('tcount') tcount;
|
|
|
|
@date('tlm') tlm;
|
|
|
|
@json('replies', sanitizer) replies;
|
|
|
|
@json('mentions', sanitizer) mentions;
|
|
|
|
@json('channels', sanitizer) channels;
|
|
|
|
@field('unread') unread;
|
|
|
|
@field('auto_translate') autoTranslate;
|
|
|
|
@json('translations', sanitizer) translations;
|
|
|
|
@field('draft_message') draftMessage;
|
|
|
|
@field('e2e') e2e;
|
|
|
|
asPlain() {
|
|
return {
|
|
id: this.id,
|
|
msg: this.msg,
|
|
t: this.t,
|
|
ts: this.ts,
|
|
u: this.u,
|
|
rid: this.rid,
|
|
alias: this.alias,
|
|
parseUrls: this.parseUrls,
|
|
groupable: this.groupable,
|
|
avatar: this.avatar,
|
|
emoji: this.emoji,
|
|
attachments: this.attachments,
|
|
urls: this.urls,
|
|
_updatedAt: this._updatedAt,
|
|
status: this.status,
|
|
pinned: this.pinned,
|
|
starred: this.starred,
|
|
editedBy: this.editedBy,
|
|
reactions: this.reactions,
|
|
role: this.role,
|
|
drid: this.drid,
|
|
dcount: this.dcount,
|
|
dlm: this.dlm,
|
|
tcount: this.tcount,
|
|
tlm: this.tlm,
|
|
replies: this.replies,
|
|
mentions: this.mentions,
|
|
channels: this.channels,
|
|
unread: this.unread,
|
|
autoTranslate: this.autoTranslate,
|
|
translations: this.translations,
|
|
draftMessage: this.draftMessage,
|
|
e2e: this.e2e
|
|
};
|
|
}
|
|
}
|