-
Notifications
You must be signed in to change notification settings - Fork 0
/
userInfo.ts
59 lines (53 loc) · 1.68 KB
/
userInfo.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
49
50
51
52
53
54
55
56
57
58
59
import {
hasOwnProperty,
isArray,
isNull,
isNumber,
isObject,
isString
} from '../utils'
export const enum ListeningDevice {
HeadSet = 'headset',
EarPhones = 'earphones',
Speakers = 'speakers'
}
export type TriState = 'yes' | 'no' | 'unknown'
export interface UserInfo {
age: number
nationality: string
device: ListeningDevice
hearingIssues: TriState
tinnitus: TriState
hearingHypersensitivity: TriState
soundsReactions: TriState
soundsList: string[]
}
const isValidDevice = (device: unknown): device is ListeningDevice =>
isString(device) &&
([
ListeningDevice.HeadSet,
ListeningDevice.EarPhones,
ListeningDevice.Speakers
] as string[]).indexOf(device) >= 0
const isValidTriState = (state: unknown): state is TriState =>
isString(state) && ['yes', 'no', 'unknown'].indexOf(state) >= 0
export const isValidUserInfo = (userInfo: unknown): userInfo is UserInfo =>
isNull(userInfo) ||
(isObject(userInfo) &&
hasOwnProperty(userInfo, 'age') &&
isNumber(userInfo.age) &&
hasOwnProperty(userInfo, 'nationality') &&
isString(userInfo.nationality) &&
hasOwnProperty(userInfo, 'device') &&
isValidDevice(userInfo.device) &&
hasOwnProperty(userInfo, 'hearingIssues') &&
isValidTriState(userInfo.hearingIssues) &&
hasOwnProperty(userInfo, 'tinnitus') &&
isValidTriState(userInfo.tinnitus) &&
hasOwnProperty(userInfo, 'hearingHypersensitivity') &&
isValidTriState(userInfo.hearingHypersensitivity) &&
hasOwnProperty(userInfo, 'soundsReactions') &&
isValidTriState(userInfo.soundsReactions) &&
(userInfo.soundsReactions
? hasOwnProperty(userInfo, 'soundsList') && isArray(userInfo.soundsList)
: true))