food==. product

This commit is contained in:
2026-01-07 18:50:07 +03:30
parent 560b2983f3
commit b5bc94c8e5
11 changed files with 26 additions and 57 deletions
@@ -0,0 +1,68 @@
import { Injectable } from '@nestjs/common';
import { EntityManager, EntityRepository } from '@mikro-orm/postgresql';
import { FilterQuery } from '@mikro-orm/core';
import { product } from '../entities/product.entity';
import { PaginatedResult } from 'src/common/interfaces/pagination.interface';
type FindproductsOpts = {
page?: number;
limit?: number;
search?: string;
orderBy?: string;
order?: 'asc' | 'desc';
categoryId?: string;
isActive?: boolean;
};
@Injectable()
export class productRepository extends EntityRepository<product> {
constructor(readonly em: EntityManager) {
super(em, product);
}
/**
* Find products with pagination and optional filters.
* Supports: search (title/content), categoryId, isActive, ordering.
*/
async findAllPaginated(restId: string, opts: FindproductsOpts = {}): Promise<PaginatedResult<product>> {
const { page = 1, limit = 10, search, orderBy = 'createdAt', order = 'desc', categoryId, isActive } = opts;
const offset = (page - 1) * limit;
const where: FilterQuery<product> = { restaurant: { id: restId } };
if (typeof isActive === 'boolean') {
where.isActive = isActive;
}
if (search) {
const pattern = `%${search}%`;
where.$or = [{ title: { $ilike: pattern } }, { desc: { $ilike: pattern } }];
}
if (categoryId) {
// filter by related category (product has a single `category` relation)
Object.assign(where, { category: { id: categoryId } } as unknown as FilterQuery<product>);
}
const [data, total] = await this.findAndCount(where, {
limit,
offset,
orderBy: { [orderBy]: order.toLowerCase() as 'asc' | 'desc' },
populate: ['category', 'inventory'],
});
const totalPages = Math.ceil(total / limit);
return {
data,
meta: {
total,
page,
limit,
totalPages,
},
};
}
}