mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-28 04:47:37 -07:00
70 lines
1.1 KiB
TypeScript
70 lines
1.1 KiB
TypeScript
import {
|
|
PrimaryColumn,
|
|
Entity,
|
|
Index,
|
|
JoinColumn,
|
|
Column,
|
|
ManyToOne,
|
|
} from "typeorm";
|
|
import { User } from "./user.js";
|
|
import { Note } from "./note.js";
|
|
import { id } from "../id.js";
|
|
import type { Channel } from "./channel.js";
|
|
|
|
@Entity()
|
|
@Index(['userId', 'noteId'], { unique: true })
|
|
export class NoteUnread {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public userId: User["id"];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public noteId: Note["id"];
|
|
|
|
@ManyToOne(type => Note, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public note: Note | null;
|
|
|
|
/**
|
|
* メンションか否か
|
|
*/
|
|
@Index()
|
|
@Column('boolean')
|
|
public isMentioned: boolean;
|
|
|
|
/**
|
|
* ダイレクト投稿か否か
|
|
*/
|
|
@Index()
|
|
@Column('boolean')
|
|
public isSpecified: boolean;
|
|
|
|
//#region Denormalized fields
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: '[Denormalized]',
|
|
})
|
|
public noteUserId: User["id"];
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
nullable: true,
|
|
comment: '[Denormalized]',
|
|
})
|
|
public noteChannelId: Channel["id"] | null;
|
|
//#endregion
|
|
}
|