2020-08-18 16:44:21 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { User } from './user.js';
|
|
|
|
import { id } from '../id.js';
|
|
|
|
import { Channel } from './channel.js';
|
2020-08-18 16:44:21 +03:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['followerId', 'followeeId'], { unique: true })
|
|
|
|
export class ChannelFollowing {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The created date of the ChannelFollowing.',
|
2020-08-18 16:44:21 +03:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The followee channel ID.',
|
2020-08-18 16:44:21 +03:00
|
|
|
})
|
|
|
|
public followeeId: Channel['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Channel, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-08-18 16:44:21 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public followee: Channel | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The follower user ID.',
|
2020-08-18 16:44:21 +03:00
|
|
|
})
|
|
|
|
public followerId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-08-18 16:44:21 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public follower: User | null;
|
|
|
|
}
|