-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconstants.js
More file actions
36 lines (33 loc) · 1022 Bytes
/
constants.js
File metadata and controls
36 lines (33 loc) · 1022 Bytes
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
export const Visualisations = {
LINE_CHART: 'line-chart',
WORD_CLOUD_ENABLERS: 'word-cloud-enablers',
WORD_CLOUD_BARRIERS: 'word-cloud-barriers',
};
export const Standards = {
SAFE: 'Safe Care',
TIMELY: 'Timely Care',
INDIVIDUAL: 'Individual Care',
HEALTHY: 'Staying Healthy',
DIGNIFIED: 'Dignified Care',
EFFECTIVE: 'Effective Care',
STAFF: 'Staff and Resources',
GOVERNANCE: 'Governance, Leadership and Accountability',
};
export const StandardColors = {
[Standards.SAFE]: '#2f5596',
[Standards.TIMELY]: '#1a71c0',
[Standards.INDIVIDUAL]: '#3bb1ef',
[Standards.HEALTHY]: '#53b151',
[Standards.DIGNIFIED]: '#f79733',
[Standards.EFFECTIVE]: '#7035a2',
[Standards.STAFF]: '#ec462e',
[Standards.GOVERNANCE]: '#ffc058',
};
export const Roles = {
USER_TYPE_ADMIN: 'platform_administrator',
USER_TYPE_CLINICIAN: 'clinician',
USER_TYPE_DEPARTMENT: 'department_manager',
USER_TYPE_HOSPITAL: 'hospital',
USER_TYPE_HEALTH_BOARD: 'health_board',
USER_TYPE_UNKNOWN: 'unknown',
};