Browse Source

列表添加 参与人数

jax 4 months ago
parent
commit
6155e9383c
3 changed files with 50 additions and 4 deletions
  1. 1 0
      docker-compose.prod.yml
  2. 47 4
      src/app/api/match/route.js
  3. 2 0
      src/app/models/Match.js

+ 1 - 0
docker-compose.prod.yml

@@ -49,5 +49,6 @@ volumes:
 
 networks:
   default:
+    external: true
     name: match-vote-network # 为网络指定一个名称
 

+ 47 - 4
src/app/api/match/route.js

@@ -129,10 +129,53 @@ export async function GET(request) {
 
         const skip = (current - 1) * pageSize;
         const totalMatches = await Match.countDocuments(searchQuery);
-        const matchesData = await Match.find(searchQuery)
-          .sort({ date: -1, time: 1 })
-          .skip(skip)
-          .limit(pageSize);
+        // const matchesData = await Match.find(searchQuery)
+        //   .sort({ date: -1, time: 1 })
+        //   .skip(skip)
+        //   .limit(pageSize);
+
+        const matchesData = await Match.aggregate([
+          // 1. $match 阶段:使用 searchQuery 进行过滤
+          {
+            $match: searchQuery
+          },
+          // 2. $lookup 阶段:从 Prediction 集合中查找与每个 match 相关的预测数据
+          {
+            $lookup: {
+              from: "predictions",  // `Prediction` 集合的名称
+              localField: "_id",     // `Match` 集合的 `_id`
+              foreignField: "match", // `Prediction` 集合中的 `match` 字段
+              as: "predictions"     // 将关联结果存放在 `predictions` 字段中
+            }
+          },
+          // 3. $addFields 阶段:计算每个比赛的 `canyuNumber`
+          {
+            $addFields: {
+              canyuNumber: { $size: "$predictions" } // 计算 `predictions` 数组的长度,即参与预测的人数
+            }
+          },
+          // 4. $project 阶段:移除不需要的字段
+          {
+            $project: {
+              predictions: 0, // 去除 `predictions` 字段
+            }
+          },
+          // 5. 排序阶段:按 `date` 降序和 `time` 升序排序
+          {
+            $sort: {
+              date: -1,
+              time: 1
+            }
+          },
+          // 6. 跳过一定数量的文档,用于分页
+          {
+            $skip: skip
+          },
+          // 7. 限制返回的文档数量
+          {
+            $limit: pageSize
+          }
+        ]);
 
         response = NextResponse.json({
           success: true,

+ 2 - 0
src/app/models/Match.js

@@ -83,6 +83,8 @@ const MatchSchema = new mongoose.Schema(
   { timestamps: true }
 );
 
+
+
 MatchSchema.index({ "homeTeam.name": 1 }); // homeTeam.name 索引
 MatchSchema.index({ "awayTeam.name": 1 }); // awayTeam.name 索引
 MatchSchema.index({ date: 1 }); // 按照比赛日期索引