mirror of
https://github.com/docmost/docmost.git
synced 2026-05-16 05:44:04 +08:00
78b1c1a453
* add cursor pagination function * support custom order modifier * refactor returned object * feat(db): migrate paginated endpoints to cursor-based pagination * sync * support hasPrevPage boolean * feat(client): migrate pagination from offset to cursor-based * support beforeCursor/prevCursor * wrap search results in items array for API consistency
119 lines
3.6 KiB
TypeScript
119 lines
3.6 KiB
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { InjectKysely } from 'nestjs-kysely';
|
|
import { KyselyDB, KyselyTransaction } from '../../types/kysely.types';
|
|
import { dbOrTx } from '../../utils';
|
|
import {
|
|
Comment,
|
|
InsertableComment,
|
|
UpdatableComment,
|
|
} from '@docmost/db/types/entity.types';
|
|
import { PaginationOptions } from '@docmost/db/pagination/pagination-options';
|
|
import { executeWithCursorPagination } from '@docmost/db/pagination/cursor-pagination';
|
|
import { ExpressionBuilder } from 'kysely';
|
|
import { DB } from '@docmost/db/types/db';
|
|
import { jsonObjectFrom } from 'kysely/helpers/postgres';
|
|
|
|
@Injectable()
|
|
export class CommentRepo {
|
|
constructor(@InjectKysely() private readonly db: KyselyDB) {}
|
|
|
|
// todo, add workspaceId
|
|
async findById(
|
|
commentId: string,
|
|
opts?: { includeCreator: boolean; includeResolvedBy: boolean },
|
|
): Promise<Comment> {
|
|
return await this.db
|
|
.selectFrom('comments')
|
|
.selectAll('comments')
|
|
.$if(opts?.includeCreator, (qb) => qb.select(this.withCreator))
|
|
.$if(opts?.includeResolvedBy, (qb) => qb.select(this.withResolvedBy))
|
|
.where('id', '=', commentId)
|
|
.executeTakeFirst();
|
|
}
|
|
|
|
async findPageComments(pageId: string, pagination: PaginationOptions) {
|
|
const query = this.db
|
|
.selectFrom('comments')
|
|
.selectAll('comments')
|
|
.select((eb) => this.withCreator(eb))
|
|
.select((eb) => this.withResolvedBy(eb))
|
|
.where('pageId', '=', pageId);
|
|
|
|
return executeWithCursorPagination(query, {
|
|
perPage: pagination.limit,
|
|
cursor: pagination.cursor,
|
|
beforeCursor: pagination.beforeCursor,
|
|
fields: [{ expression: 'id', direction: 'asc' }],
|
|
parseCursor: (cursor) => ({ id: cursor.id }),
|
|
});
|
|
}
|
|
|
|
async updateComment(
|
|
updatableComment: UpdatableComment,
|
|
commentId: string,
|
|
trx?: KyselyTransaction,
|
|
) {
|
|
const db = dbOrTx(this.db, trx);
|
|
await db
|
|
.updateTable('comments')
|
|
.set(updatableComment)
|
|
.where('id', '=', commentId)
|
|
.execute();
|
|
}
|
|
|
|
async insertComment(
|
|
insertableComment: InsertableComment,
|
|
trx?: KyselyTransaction,
|
|
): Promise<Comment> {
|
|
const db = dbOrTx(this.db, trx);
|
|
return db
|
|
.insertInto('comments')
|
|
.values(insertableComment)
|
|
.returningAll()
|
|
.executeTakeFirst();
|
|
}
|
|
|
|
withCreator(eb: ExpressionBuilder<DB, 'comments'>) {
|
|
return jsonObjectFrom(
|
|
eb
|
|
.selectFrom('users')
|
|
.select(['users.id', 'users.name', 'users.avatarUrl'])
|
|
.whereRef('users.id', '=', 'comments.creatorId'),
|
|
).as('creator');
|
|
}
|
|
|
|
withResolvedBy(eb: ExpressionBuilder<DB, 'comments'>) {
|
|
return jsonObjectFrom(
|
|
eb
|
|
.selectFrom('users')
|
|
.select(['users.id', 'users.name', 'users.avatarUrl'])
|
|
.whereRef('users.id', '=', 'comments.resolvedById'),
|
|
).as('resolvedBy');
|
|
}
|
|
|
|
async deleteComment(commentId: string): Promise<void> {
|
|
await this.db.deleteFrom('comments').where('id', '=', commentId).execute();
|
|
}
|
|
|
|
async hasChildren(commentId: string): Promise<boolean> {
|
|
const result = await this.db
|
|
.selectFrom('comments')
|
|
.select((eb) => eb.fn.count('id').as('count'))
|
|
.where('parentCommentId', '=', commentId)
|
|
.executeTakeFirst();
|
|
|
|
return Number(result?.count) > 0;
|
|
}
|
|
|
|
async hasChildrenFromOtherUsers(commentId: string, userId: string): Promise<boolean> {
|
|
const result = await this.db
|
|
.selectFrom('comments')
|
|
.select((eb) => eb.fn.count('id').as('count'))
|
|
.where('parentCommentId', '=', commentId)
|
|
.where('creatorId', '!=', userId)
|
|
.executeTakeFirst();
|
|
|
|
return Number(result?.count) > 0;
|
|
}
|
|
}
|