-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_project.ts
More file actions
127 lines (119 loc) · 4.96 KB
/
Copy pathapi_project.ts
File metadata and controls
127 lines (119 loc) · 4.96 KB
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
import addInstantGetterAndSetterToApiModel from "../../mixins/add_instant_getter_and_setter_to_api_model";
import addReadOnlyPropertiesToModel from "../../mixins/add_read_only_properties_to_model";
import ApiProjectReport, { ApiProjectReportArgument } from "./api_project_report";
import SystemOfMeasurement, { IMPERIAL } from "../enums/system_of_measurement";
import type ApiProjectCostAnalysisProgress from "./api_project_cost_analysis_progress";
import type ApiTeamMember from "./api_team_member";
import type ApiMasterformatProgress from "./api_masterformat_progress";
import type ApiProjectSettings from "./api_project_settings";
import type { DateLike, ModifyPartial } from "type_aliases";
export type ApiProjectArgument = ModifyPartial<ApiProject, {
archivedAt: DateLike
startDate: DateLike
endDate: DateLike
projectReports: ApiProjectReportArgument[]
}>
export class ApiProject {
constructor({
city,
country,
addressLine1,
addressLine2,
state,
zip,
defaultFirebaseFloorId,
archivedAt,
progressNotes,
avvirAnalysisNotes,
endDate,
firebaseId,
name,
notes,
pricing,
sourceAnalysisNotes,
startDate,
systemOfMeasurement,
id,
clientAccountId,
scannedProjectMasterformatProgresses,
baselineProjectMasterformatProgresses,
currentProjectMasterformatProgresses,
costAnalysisProgresses,
projectReports,
firebaseFloorIds,
generateMasterformatProgressEnabled,
teamMembers,
integrationProjectId,
settings,
baselineScheduleDate,
currentScheduleDate,
isLocked
}: ApiProjectArgument = {})
{
addInstantGetterAndSetterToApiModel(this, "startDate", startDate);
addInstantGetterAndSetterToApiModel(this, "endDate", endDate);
addInstantGetterAndSetterToApiModel(this, "archivedAt", archivedAt);
addReadOnlyPropertiesToModel(this, { firebaseId, clientAccountId, id });
this.firebaseFloorIds = firebaseFloorIds || [];
this.defaultFirebaseFloorId = defaultFirebaseFloorId || null;
this.city = city || null;
this.country = country || null;
this.addressLine1 = addressLine1 || null;
this.addressLine2 = addressLine2 || null;
this.state = state || null;
this.zip = zip || null;
this.name = name || null;
this.notes = notes || null;
this.pricing = pricing || null;
this.progressNotes = progressNotes || null;
this.avvirAnalysisNotes = avvirAnalysisNotes || null;
this.sourceAnalysisNotes = sourceAnalysisNotes || null;
this.scannedProjectMasterformatProgresses = scannedProjectMasterformatProgresses || [];
this.baselineProjectMasterformatProgresses = baselineProjectMasterformatProgresses || [];
this.currentProjectMasterformatProgresses = currentProjectMasterformatProgresses || [];
this.costAnalysisProgresses = costAnalysisProgresses || [];
this.projectReports = projectReports?.map(report => new ApiProjectReport(report)) || [];
this.systemOfMeasurement = systemOfMeasurement || IMPERIAL;
this.generateMasterformatProgressEnabled = generateMasterformatProgressEnabled;
this.integrationProjectId = integrationProjectId;
this.teamMembers = teamMembers;
this.settings = settings;
this.baselineScheduleDate = baselineScheduleDate;
this.currentScheduleDate = currentScheduleDate;
this.isLocked = isLocked;
}
readonly id: number;
readonly firebaseId: string;
readonly clientAccountId: string;
name: string;
scannedProjectMasterformatProgresses: ApiMasterformatProgress[];
baselineProjectMasterformatProgresses: ApiMasterformatProgress[];
currentProjectMasterformatProgresses: ApiMasterformatProgress[];
costAnalysisProgresses: ApiProjectCostAnalysisProgress[];
projectReports: ApiProjectReport[];
defaultFirebaseFloorId: string | null = null;
firebaseFloorIds: string[] = [];
addressLine1: string | null = null;
addressLine2: string | null = null;
city: string | null = null;
state: string | null = null;
country: string | null = null;
zip: string | null = null;
pricing: string | null = null;
notes: string | null = null;
startDate: number | null = null;
endDate: number | null = null;
archivedAt: number | null = null;
systemOfMeasurement: SystemOfMeasurement = IMPERIAL;
progressNotes: string | null = null;
avvirAnalysisNotes: string | null = null;
sourceAnalysisNotes: string | null = null;
generateMasterformatProgressEnabled: boolean | null;
integrationProjectId?: number;
teamMembers?: ApiTeamMember[] = [];
settings?: ApiProjectSettings;
baselineScheduleDate?: Date;
currentScheduleDate?: Date;
isLocked: boolean;
}
export default ApiProject;