-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexport-data.ts
48 lines (42 loc) · 1.17 KB
/
export-data.ts
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
export class ExportData {
position: number;
origStringLogDate: string | null = null;
origStringLogTime: string | null = null;
origStringStackID: string | null = null;
origStringExpID: string | null = null;
origStringSiteID: string | null = null;
logDateTime: Date | null = null;
stackID: number | null = null;
expID: number | null = null;
siteID: number | null = null;
comment: string | null = null;
constructor(position: number) {
this.position = position;
}
isEmpty(): boolean {
return (
!this.logDateTime &&
!this.stackID &&
!this.expID &&
!this.siteID &&
!this.comment
);
}
isComplete(): boolean {
return (
!!this.logDateTime &&
!!this.stackID &&
!!this.expID &&
!!this.siteID
);
}
isInvalid(): boolean {
return (
(!!this.origStringLogDate && !this.logDateTime) ||
(!!this.origStringLogTime && !this.logDateTime) ||
(!!this.origStringStackID && !this.stackID) ||
(!!this.origStringExpID && !this.expID) ||
(!!this.origStringSiteID && !this.siteID)
);
}
}