Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | import { Injectable, BadRequestException } from '@nestjs/common'; import { InjectModel } from '@nestjs/mongoose'; import { Model } from 'mongoose'; import { Employee } from '../employee/schemas/employee.schema'; @Injectable() export class HierarchyService { constructor( @InjectModel(Employee.name) private readonly employeeModel: Model<Employee>, ) {} /** Walk up the manager chain from a given employee */ async getManagerChain( tenantId: string, employeeId: string, maxDepth = 15, ): Promise<any[]> { const chain: any[] = []; let currentId = employeeId; for (let depth = 0; depth < maxDepth; depth++) { const emp: any = await this.employeeModel .findOne({ tenantId, _id: currentId, deletedAt: null }) .select( '_id firstName lastName displayName employeeCode reportingManagerId designationId departmentId', ) .lean() .exec(); if (!emp) break; chain.push(emp); if (!emp.reportingManagerId) break; if (chain.some((e: any) => e._id.toString() === emp.reportingManagerId)) { // Circular chain guard break; } currentId = emp.reportingManagerId; } return chain; } /** Get direct reports of an employee */ async getDirectReports(tenantId: string, employeeId: string): Promise<any[]> { return this.employeeModel .find({ tenantId, reportingManagerId: employeeId, deletedAt: null, employmentStatus: { $nin: ['terminated', 'archived'] }, }) .select( '_id firstName lastName displayName employeeCode designationId departmentId branchId employmentStatus', ) .lean() .exec(); } /** Get all subordinates recursively using $graphLookup */ async getAllReports(tenantId: string, employeeId: string): Promise<any[]> { const result = await this.employeeModel.aggregate([ { $match: { tenantId, _id: (this.employeeModel as any).schema.obj ? undefined : undefined, }, }, { $graphLookup: { from: 'employees', startWith: '$_id', connectFromField: '_id', connectToField: 'reportingManagerId', as: 'allReports', maxDepth: 10, restrictSearchWithMatch: { tenantId, deletedAt: null }, }, }, { $match: { tenantId, employeeCode: employeeId } }, { $project: { allReports: 1 } }, ]); return result.length > 0 ? result[0].allReports : []; } /** Org chart: get manager hierarchy node for an employee */ async getOrgChartNode( tenantId: string, employeeId: string, depth = 3, ): Promise<any> { const emp: any = await this.employeeModel .findOne({ tenantId, _id: employeeId, deletedAt: null }) .select( '_id firstName lastName displayName employeeCode designationId departmentId branchId reportingManagerId profilePhotoFileId', ) .lean() .exec(); if (!emp) return null; if (depth > 0) { const directReports = await this.getDirectReports(tenantId, employeeId); emp.children = await Promise.all( directReports .slice(0, 20) .map((r: any) => this.getOrgChartNode(tenantId, r._id.toString(), depth - 1), ), ); } return emp; } /** Full org chart rooted at employees with no manager */ async getFullOrgChart(tenantId: string): Promise<any[]> { const roots: any[] = await this.employeeModel .find({ tenantId, deletedAt: null, employmentStatus: { $in: ['active', 'probation', 'confirmed'] }, $or: [ { reportingManagerId: null }, { reportingManagerId: { $exists: false } }, ], }) .select( '_id firstName lastName displayName employeeCode designationId departmentId branchId', ) .lean() .exec(); return Promise.all( roots.map((r: any) => this.getOrgChartNode(tenantId, r._id.toString(), 3), ), ); } } |