1
+ import { CURRENT_DEPLOYMENT_LABEL } from "@trigger.dev/core/v3/isomorphic" ;
1
2
import {
2
3
Prisma ,
3
- type TaskTriggerSource ,
4
- type TaskRunStatus as TaskRunStatusType ,
5
- type RuntimeEnvironment ,
6
4
type TaskRunStatus as DBTaskRunStatus ,
5
+ type TaskRunStatus as TaskRunStatusType ,
6
+ type TaskTriggerSource ,
7
7
} from "@trigger.dev/database" ;
8
8
import { QUEUED_STATUSES } from "~/components/runs/v3/TaskRunStatus" ;
9
+ import { TaskRunStatus } from "~/database-types" ;
9
10
import { sqlDatabaseSchema } from "~/db.server" ;
10
- import type { Organization } from "~/models/organization.server" ;
11
- import type { Project } from "~/models/project.server" ;
12
- import type { User } from "~/models/user.server" ;
13
11
import { logger } from "~/services/logger.server" ;
14
12
import { BasePresenter } from "./basePresenter.server" ;
15
- import { TaskRunStatus } from "~/database-types" ;
16
- import { CURRENT_DEPLOYMENT_LABEL } from "@trigger.dev/core/v3/isomorphic" ;
17
13
18
14
export type TaskListItem = {
19
15
slug : string ;
@@ -27,34 +23,7 @@ type Return = Awaited<ReturnType<TaskListPresenter["call"]>>;
27
23
export type TaskActivity = Awaited < Return [ "activity" ] > [ string ] ;
28
24
29
25
export class TaskListPresenter extends BasePresenter {
30
- public async call ( {
31
- userId,
32
- projectSlug,
33
- organizationSlug,
34
- environmentSlug,
35
- } : {
36
- userId : User [ "id" ] ;
37
- projectSlug : Project [ "slug" ] ;
38
- organizationSlug : Organization [ "slug" ] ;
39
- environmentSlug : RuntimeEnvironment [ "slug" ] ;
40
- } ) {
41
- const environment = await this . _replica . runtimeEnvironment . findFirstOrThrow ( {
42
- select : {
43
- id : true ,
44
- type : true ,
45
- projectId : true ,
46
- } ,
47
- where : {
48
- slug : environmentSlug ,
49
- project : {
50
- slug : projectSlug ,
51
- } ,
52
- organization : {
53
- slug : organizationSlug ,
54
- } ,
55
- } ,
56
- } ) ;
57
-
26
+ public async call ( { environmentId, projectId } : { environmentId : string ; projectId : string } ) {
58
27
const tasks = await this . _replica . $queryRaw <
59
28
{
60
29
id : string ;
@@ -69,13 +38,13 @@ export class TaskListPresenter extends BasePresenter {
69
38
FROM ${ sqlDatabaseSchema } ."WorkerDeploymentPromotion" wdp
70
39
INNER JOIN ${ sqlDatabaseSchema } ."WorkerDeployment" wd
71
40
ON wd.id = wdp."deploymentId"
72
- WHERE wdp."environmentId" = ${ environment . id }
41
+ WHERE wdp."environmentId" = ${ environmentId }
73
42
AND wdp."label" = ${ CURRENT_DEPLOYMENT_LABEL }
74
43
),
75
44
workers AS (
76
45
SELECT DISTINCT ON ("runtimeEnvironmentId") id, "runtimeEnvironmentId", version
77
46
FROM ${ sqlDatabaseSchema } ."BackgroundWorker"
78
- WHERE "runtimeEnvironmentId" = ${ environment . id }
47
+ WHERE "runtimeEnvironmentId" = ${ environmentId }
79
48
OR id IN (SELECT id FROM non_dev_workers)
80
49
ORDER BY "runtimeEnvironmentId", "createdAt" DESC
81
50
)
@@ -87,23 +56,23 @@ export class TaskListPresenter extends BasePresenter {
87
56
//then get the activity for each task
88
57
const activity = this . #getActivity(
89
58
tasks . map ( ( t ) => t . slug ) ,
90
- environment . projectId ,
91
- environment . id
59
+ projectId ,
60
+ environmentId
92
61
) ;
93
62
94
63
const runningStats = this . #getRunningStats(
95
64
tasks . map ( ( t ) => t . slug ) ,
96
- environment . projectId ,
97
- environment . id
65
+ projectId ,
66
+ environmentId
98
67
) ;
99
68
100
69
const durations = this . #getAverageDurations(
101
70
tasks . map ( ( t ) => t . slug ) ,
102
- environment . projectId ,
103
- environment . id
71
+ projectId ,
72
+ environmentId
104
73
) ;
105
74
106
- return { tasks, environment , activity, runningStats, durations } ;
75
+ return { tasks, activity, runningStats, durations } ;
107
76
}
108
77
109
78
async #getActivity( tasks : string [ ] , projectId : string , environmentId : string ) {
0 commit comments