This repository was archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdatecontrol.js
153 lines (133 loc) · 3.69 KB
/
datecontrol.js
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
141
142
143
144
145
146
147
148
149
150
151
152
153
import store from '../services/store'
import { extractApplicantBirthdate } from '../components/Section/extractors'
import {
extractDate,
today,
daysAgo,
validDate,
} from '../components/Section/History/dateranges'
export const getContext = () => {
const state = store.getState()
const app = state.application || {}
return {
applicantBirthdate: extractApplicantBirthdate(app),
}
}
export default class DateControlValidator {
constructor(data = {}, context = null) {
this.month = data.month
this.day = data.day
this.year = data.year
this.hideMonth = data.hideMonth
this.hideDay = data.hideDay
this.maxDate = extractDate(data.maxDate)
this.maxDateEqualTo = data.maxDateEqualTo || false
this.minDate = extractDate(data.minDate)
this.minDateEqualTo = data.minDateEqualTo || false
this.noMaxDate = data.noMaxDate
this.relationship = data.relationship || ''
context = context || getContext()
this.limits = dateLimits(this.relationship, context.applicantBirthdate)
if (!this.maxDate || (this.maxDate && this.maxDate > this.limits.maxDate)) {
this.maxDate = this.limits.maxDate
}
if (!this.minDate || (this.minDate && this.minDate < this.limits.minDate)) {
this.minDate = this.limits.minDate
}
// For month/year fields, we compare from the start of the month
if (this.hideMonth || this.hideDay) {
this.maxDate = new Date(
`${this.hideMonth ? '1' : this.maxDate.getMonth() + 1}/${
this.hideDay ? '1' : this.maxDate.getDate()
}/${this.maxDate.getFullYear()}`
)
this.minDate = new Date(
`${this.hideMonth ? '1' : this.minDate.getMonth() + 1}/${
this.hideDay ? '1' : this.minDate.getDate()
}/${this.minDate.getFullYear()}`
)
}
}
validMaxDate() {
// If no max day present, we return true to continue as we have nothing
// to compare against
if (!this.maxDate || this.noMaxDate) {
return true
}
if (!validDate(this)) {
return false
}
const date = extractDate(this)
if (this.maxDateEqualTo) {
return date <= this.maxDate
}
return date < this.maxDate
}
validMinDate() {
// If no max day present, we return true to continue as we have nothing
// to compare against
if (!this.minDate) {
return true
}
if (!validDate(this)) {
return false
}
const date = extractDate(this)
if (this.minDateEqualTo) {
return date >= this.minDate
}
return date > this.minDate
}
validDate() {
if (
(!this.day && !this.hideDay) ||
(!this.month && !this.hideMonth) ||
!this.year
) {
return false
}
return true
}
isValid() {
return this.validDate() && this.validMaxDate() && this.validMinDate()
}
}
export const dateLimits = (relationship, birthdate) => {
let max = new Date()
let min = extractDate(birthdate)
switch (relationship) {
case 'Self':
max = daysAgo(today, 365 * 16)
min = daysAgo(today, 365 * 100 + 1)
break
case 'Mother':
case 'Father':
max = min
min = daysAgo(today, 365 * 200 + 1)
break
case 'Child':
break
case 'Stepmother':
case 'Stepfather':
case 'Fosterparent':
case 'Stepchild':
case 'Brother':
case 'Sister':
case 'Stepbrother':
case 'Stepsister':
case 'Half-brother':
case 'Half-sister':
case 'Father-in-law':
case 'Mother-in-law':
case 'Guardian':
case 'Other':
min = daysAgo(today, 365 * 200 + 1)
break
default:
// Everything else just uses the defaults
if (!min) {
min = daysAgo(today, 365 * 200 + 1)
}
}
return { minDate: min, maxDate: max }
}