@digihmis/esm-patient-registration-app 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/117.js +1 -0
- package/dist/117.js.map +1 -0
- package/dist/131.js +1 -0
- package/dist/131.js.map +1 -0
- package/dist/132.js +1 -0
- package/dist/132.js.map +1 -0
- package/dist/152.js +1 -0
- package/dist/152.js.map +1 -0
- package/dist/209.js +1 -0
- package/dist/209.js.map +1 -0
- package/dist/247.js +1 -0
- package/dist/247.js.map +1 -0
- package/dist/28.js +1 -0
- package/dist/28.js.map +1 -0
- package/dist/317.js +1 -0
- package/dist/317.js.map +1 -0
- package/dist/349.js +1 -0
- package/dist/349.js.map +1 -0
- package/dist/371.js +1 -0
- package/dist/371.js.map +1 -0
- package/dist/378.js +1 -0
- package/dist/378.js.map +1 -0
- package/dist/442.js +1 -0
- package/dist/442.js.map +1 -0
- package/dist/45.js +1 -0
- package/dist/45.js.map +1 -0
- package/dist/459.js +12 -0
- package/dist/459.js.map +1 -0
- package/dist/466.js +1 -0
- package/dist/466.js.map +1 -0
- package/dist/508.js +1 -0
- package/dist/508.js.map +1 -0
- package/dist/61.js +1 -0
- package/dist/61.js.map +1 -0
- package/dist/640.js +1 -0
- package/dist/640.js.map +1 -0
- package/dist/689.js +1 -0
- package/dist/689.js.map +1 -0
- package/dist/709.js +1 -0
- package/dist/709.js.map +1 -0
- package/dist/712.js +1 -0
- package/dist/712.js.map +1 -0
- package/dist/720.js +1 -0
- package/dist/720.js.map +1 -0
- package/dist/742.js +1 -0
- package/dist/742.js.map +1 -0
- package/dist/771.js +1 -0
- package/dist/771.js.map +1 -0
- package/dist/806.js +1 -0
- package/dist/806.js.map +1 -0
- package/dist/912.js +1 -0
- package/dist/912.js.map +1 -0
- package/dist/913.js +1 -0
- package/dist/913.js.map +1 -0
- package/dist/940.js +1 -0
- package/dist/940.js.map +1 -0
- package/dist/957.js +15 -0
- package/dist/957.js.map +1 -0
- package/dist/digihmis-esm-patient-registration-app.js +6 -0
- package/dist/digihmis-esm-patient-registration-app.js.buildmanifest.json +827 -0
- package/dist/digihmis-esm-patient-registration-app.js.map +1 -0
- package/dist/main.js +17 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +26 -0
- package/package.json +51 -0
- package/rspack.config.js +1 -0
- package/src/active-visit-table/active-visit-table.component.tsx +240 -0
- package/src/active-visit-table/active-visits.resource.ts +338 -0
- package/src/active-visit-table/active-visits.scss +211 -0
- package/src/active-visit-table/empty-data-illustration.component.tsx +39 -0
- package/src/checkin-form/base-visit-type.component.tsx +102 -0
- package/src/checkin-form/base-visit-type.scss +75 -0
- package/src/checkin-form/checkin-form.scss +167 -0
- package/src/checkin-form/checkin-form.workspace.tsx +703 -0
- package/src/checkin-form/hooks/useDefaultFacilityLocation.ts +15 -0
- package/src/checkin-form/hooks/useDefaultVisitLocation.ts +24 -0
- package/src/checkin-form/hooks/useOfflineVisitType.ts +18 -0
- package/src/checkin-form/hooks/usePatientHistory.ts +40 -0
- package/src/checkin-form/hooks/useRecommendedVisitTypes.ts +34 -0
- package/src/checkin-form/hooks/useVisitAttributeType.ts +102 -0
- package/src/checkin-form/location-selector.component.tsx +86 -0
- package/src/checkin-form/recommended-visit-type.component.tsx +32 -0
- package/src/checkin-form/visit-attribute-type.component.tsx +256 -0
- package/src/checkin-form/visit-attribute-type.scss +5 -0
- package/src/checkin-form/visit-date-time.component.tsx +201 -0
- package/src/checkin-form/visit-form.resource.ts +308 -0
- package/src/components/custom-card/compact-patient-banner.component.tsx +70 -0
- package/src/components/custom-card/compact-patient-banner.scss +34 -0
- package/src/components/custom-card/custom-loader.component.tsx +22 -0
- package/src/components/custom-card/patient-search-context.ts +30 -0
- package/src/components/custom-input/autosuggest/autosuggest.component.tsx +213 -0
- package/src/components/custom-input/autosuggest/autosuggest.scss +158 -0
- package/src/components/custom-input/autosuggest/autosuggest.test.tsx +168 -0
- package/src/components/custom-patient-banner/custom-patient-banner.component.tsx +39 -0
- package/src/components/custom-patient-banner/custom-patient-banner.resource.ts +32 -0
- package/src/components/custom-patient-banner/custom-patient-banner.scss +26 -0
- package/src/config-schema.ts +511 -0
- package/src/constant.ts +6 -0
- package/src/constants/index.ts +1 -0
- package/src/dashboard.meta.ts +8 -0
- package/src/declarations.d.ts +6 -0
- package/src/empty-svg/empty-svg.component.tsx +565 -0
- package/src/icon-wrapper/icon-wrapper.extension.tsx +17 -0
- package/src/identifier-workspace/identifier-configure-form.workspace.tsx +278 -0
- package/src/identifier-workspace/identifier-configure.scss +106 -0
- package/src/identifier-workspace/identifier.resource.ts +90 -0
- package/src/index.ts +33 -0
- package/src/left-panel/left-panel.component.tsx +54 -0
- package/src/left-panel/left-panel.scss +13 -0
- package/src/page-header/page-header.component.tsx +35 -0
- package/src/page-header/page-header.scss +76 -0
- package/src/patient-tags/deceased-patient-tag.extension.tsx +41 -0
- package/src/patient-tags/deceased-patient-tag.scss +15 -0
- package/src/patient-tags/patient-tags.resource.ts +30 -0
- package/src/patient-tags/visit-tag.extension.tsx +43 -0
- package/src/patient-tags/visit-tag.scss +19 -0
- package/src/registration-form/form-manager.ts +449 -0
- package/src/registration-form/registration-form.component.tsx +1565 -0
- package/src/registration-form/registration-form.resource.ts +264 -0
- package/src/registration-form/registration-form.scss +282 -0
- package/src/routes.json +62 -0
- package/src/search-bar/search-bar.component.tsx +285 -0
- package/src/search-bar/search-bar.resource.ts +274 -0
- package/src/search-bar/search-bar.scss +427 -0
- package/src/search-dashboard/search-dashboard.component.tsx +17 -0
- package/src/search-dashboard/search-dashboard.scss +13 -0
- package/src/setup-tests.ts +1 -0
- package/src/type/index.ts +463 -0
- package/src/utils/fhir-mapper.ts +73 -0
- package/src/visit-summary/visit-summary.component.tsx +32 -0
- package/src/visit-summary/visit-summary.resource.ts +56 -0
- package/src/visit-summary/visit-summary.scss +74 -0
- package/translations/am.json +112 -0
- package/translations/ar.json +120 -0
- package/translations/en.json +112 -0
- package/translations/es.json +114 -0
- package/translations/fr.json +114 -0
- package/translations/he.json +114 -0
- package/translations/km.json +111 -0
- package/translations/pt.json +114 -0
- package/translations/sw.json +112 -0
- package/translations/vi.json +111 -0
- package/translations/zh.json +111 -0
- package/tsconfig.json +5 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "活跃就诊",
|
|
3
|
+
"addRelationshipButtonText": "添加关系",
|
|
4
|
+
"address": "地址",
|
|
5
|
+
"allFieldsRequiredText": "除非标记为可选,否则所有字段都是必填的",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "返回",
|
|
9
|
+
"basicInformation": "1. 基本信息",
|
|
10
|
+
"birth": "出生",
|
|
11
|
+
"cancel": "取消",
|
|
12
|
+
"causeOfDeathInputLabel": "死亡原因",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "配置",
|
|
16
|
+
"contactDetails": "2. 联系方式",
|
|
17
|
+
"county": "县",
|
|
18
|
+
"dateOfBirthKnown": "出生日期已知?",
|
|
19
|
+
"dateOfBirthLabelText": "出生日期",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. 死亡信息",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "删除",
|
|
24
|
+
"email": "电子邮件地址",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "输入标识号",
|
|
31
|
+
"enterIdOrScanCard": "输入身份证号或扫描患者卡",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "输入非编码死亡原因",
|
|
33
|
+
"error": "错误",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "搜索患者时出错",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "估计年龄(月)",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "估计年龄(岁)",
|
|
38
|
+
"failedToLoadCauseOfDeath": "无法加载死亡原因选项",
|
|
39
|
+
"failedToLoadRelationshipTypes": "无法加载关系类型",
|
|
40
|
+
"familyName": "姓",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "名",
|
|
44
|
+
"genderLabelText": "性别",
|
|
45
|
+
"goBack": "返回",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersUpdated": "Identifiers updated",
|
|
49
|
+
"idFieldLabelText": "标识符",
|
|
50
|
+
"incompleteRelationships": "请完成所有关系字段",
|
|
51
|
+
"isPatientDeceased": "患者已故?",
|
|
52
|
+
"loading": "加载中...",
|
|
53
|
+
"maritalStatusLabelText": "婚姻状况",
|
|
54
|
+
"middleName": "中间名",
|
|
55
|
+
"no": "否",
|
|
56
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
57
|
+
"noCauseOfDeathOptions": "没有可用的死亡原因选项。请配置概念UUID。",
|
|
58
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
59
|
+
"nonCodedCauseOfDeath": "非编码死亡原因",
|
|
60
|
+
"noOptions": "没有可用选项",
|
|
61
|
+
"noPatientFound": "未找到患者",
|
|
62
|
+
"noVisitsToDisplay": "No visits to display",
|
|
63
|
+
"optional": "可选",
|
|
64
|
+
"patientName": "患者姓名",
|
|
65
|
+
"patientNameKnown": "患者姓名已知?",
|
|
66
|
+
"patientRegistered": "患者注册成功",
|
|
67
|
+
"phoneNumber": "电话号码",
|
|
68
|
+
"phoneNumberPlaceholder": "例如:0712345678",
|
|
69
|
+
"PM": "PM",
|
|
70
|
+
"recentlyViewed": "最近查看的患者",
|
|
71
|
+
"registerAPatient": "注册患者",
|
|
72
|
+
"registerPatient": "注册患者",
|
|
73
|
+
"relationship": "关系",
|
|
74
|
+
"relationshipDetails": "4. 关系",
|
|
75
|
+
"relationshipPersonMustExist": "相关人员必须是现有人员",
|
|
76
|
+
"relationshipPlaceholder": "关系",
|
|
77
|
+
"relationshipRemovedText": "已删除关系",
|
|
78
|
+
"relationshipToPatient": "与患者的关系",
|
|
79
|
+
"relativeFullNameLabelText": "全名",
|
|
80
|
+
"relativeNamePlaceholder": "名 姓",
|
|
81
|
+
"required": "Required",
|
|
82
|
+
"restoreRelationshipActionButton": "撤销",
|
|
83
|
+
"scheduledForToday": "今日预约",
|
|
84
|
+
"search": "搜索",
|
|
85
|
+
"searchForPatient": "搜索患者",
|
|
86
|
+
"searchResultsCount_one": "找到 {{count}} 个结果",
|
|
87
|
+
"searchResultsCount_other": "找到 {{count}} 个结果",
|
|
88
|
+
"selectAnOption": "选择一个选项",
|
|
89
|
+
"selectCounty": "选择县",
|
|
90
|
+
"selectLocation": "Select a location",
|
|
91
|
+
"selectSubCounty": "选择子县",
|
|
92
|
+
"selectWard": "选择病房",
|
|
93
|
+
"startDate": "Start date",
|
|
94
|
+
"startTime": "Start time",
|
|
95
|
+
"startTimeFormat": "Start time format",
|
|
96
|
+
"subCounty": "子县",
|
|
97
|
+
"submissionFailed": "提交表单失败",
|
|
98
|
+
"submitting": "提交中...",
|
|
99
|
+
"success": "成功",
|
|
100
|
+
"totalVisits": "今日总就诊次数",
|
|
101
|
+
"tryDifferentSearch": "尝试使用不同的标识符或姓名搜索",
|
|
102
|
+
"unknownPatientName": "Unknown Patient",
|
|
103
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
104
|
+
"validationError": "验证错误",
|
|
105
|
+
"visitLocation": "Visit Location",
|
|
106
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
107
|
+
"visitStartDate": "Visit start date",
|
|
108
|
+
"ward": "病房",
|
|
109
|
+
"years": "yrs",
|
|
110
|
+
"yes": "是"
|
|
111
|
+
}
|