This repository has been archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
psychological.js
74 lines (66 loc) · 1.9 KB
/
psychological.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
import * as sections from 'constants/sections'
import { i18n } from 'config'
export const PSYCHOLOGICAL = {
key: sections.PSYCHOLOGICAL,
name: 'psychological',
path: 'psychological',
store: 'Psychological',
label: i18n.t('psychological.section.name'),
}
export const PSYCHOLOGICAL_INTRO = {
key: sections.PSYCHOLOGICAL_INTRO,
name: 'intro',
path: 'intro',
label: i18n.t('psychological.subsection.intro'),
}
export const PSYCHOLOGICAL_COMPETENCE = {
key: sections.PSYCHOLOGICAL_COMPETENCE,
name: 'competence',
path: 'competence',
storeKey: 'Competence',
label: i18n.t('psychological.subsection.competence'),
}
export const PSYCHOLOGICAL_CONSULTATIONS = {
key: sections.PSYCHOLOGICAL_CONSULTATIONS,
name: 'consultations',
path: 'consultations',
storeKey: 'Consultations',
label: i18n.t('psychological.subsection.consultations'),
}
export const PSYCHOLOGICAL_HOSPITALIZATIONS = {
key: sections.PSYCHOLOGICAL_HOSPITALIZATIONS,
name: 'hospitalizations',
path: 'hospitalizations',
storeKey: 'Hospitalizations',
label: i18n.t('psychological.subsection.hospitalizations'),
}
export const PSYCHOLOGICAL_DIAGNOSES = {
key: sections.PSYCHOLOGICAL_DIAGNOSES,
name: 'diagnoses',
path: 'diagnoses',
storeKey: 'Diagnoses',
label: i18n.t('psychological.subsection.diagnoses'),
}
export const PSYCHOLOGICAL_CONDITIONS = {
key: sections.PSYCHOLOGICAL_CONDITIONS,
name: 'conditions',
path: 'conditions',
storeKey: 'ExistingConditions',
label: i18n.t('psychological.subsection.conditions'),
}
export const PSYCHOLOGICAL_REVIEW = {
key: sections.PSYCHOLOGICAL_REVIEW,
name: 'review',
path: 'review',
label: i18n.t('psychological.subsection.review'),
}
export default {
PSYCHOLOGICAL,
PSYCHOLOGICAL_INTRO,
PSYCHOLOGICAL_COMPETENCE,
PSYCHOLOGICAL_CONSULTATIONS,
PSYCHOLOGICAL_HOSPITALIZATIONS,
PSYCHOLOGICAL_DIAGNOSES,
PSYCHOLOGICAL_CONDITIONS,
PSYCHOLOGICAL_REVIEW,
}