├── .dockerignore ├── .gitignore ├── .htaccess ├── .idea ├── .gitignore ├── hms.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── jsLinters │ └── eslint.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json ├── mylikita-v2 │ └── v16 │ │ └── .suo └── slnx.sqlite ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── _redirects ├── config-overrides.js ├── malware.txt ├── nginx └── nginx.conf ├── package.json ├── public ├── BrowserPrint-3.0.216.min.js ├── BrowserPrint-Zebra-1.0.216.min.js ├── _redirects ├── icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── index.html └── manifest.json ├── src ├── App.js ├── App.test.js ├── cloudinary.json ├── components │ ├── AsyncTypeAhead.js │ ├── BackButton.js │ ├── Carousels.js │ ├── CheckBoxItem.js │ ├── CheckBoxNormal.js │ ├── CollapsibleCard.js │ ├── PatientForm.js │ ├── SwitchButton.js │ ├── admin │ │ ├── Admin.js │ │ ├── AdminChart.js │ │ ├── AdminDashboard.js │ │ ├── ApproveAdmin.js │ │ ├── ConsultationReports.js │ │ ├── ContactusTable.js │ │ ├── CustomFileUploadDropzone.js │ │ ├── DICOMFileUpload.js │ │ ├── Dashboard.js │ │ ├── DrugRegistration.js │ │ ├── EmailConfiguration.js │ │ ├── Feedback.js │ │ ├── FeedbackTable.js │ │ ├── File_Upload.js │ │ ├── GeneralInfo.js │ │ ├── ManageAdmin.js │ │ ├── ManageAppointment.js │ │ ├── ManageDoctor.js │ │ ├── ManageFacilities.js │ │ ├── ManagePatients.js │ │ ├── ManageSurgeon&Anes.js │ │ ├── NetworkSetting.js │ │ ├── NewUser.js │ │ ├── ProfilePicture.js │ │ ├── SMSConfiguration.js │ │ ├── Settings.js │ │ ├── Sidebar.js │ │ ├── StaffReview.js │ │ ├── TopNav.js │ │ ├── Uploader.js │ │ ├── Users.js │ │ ├── content │ │ │ ├── Content.js │ │ │ └── Navbar.js │ │ ├── index.css │ │ ├── index.js │ │ ├── moduleData.js │ │ ├── pharm-setup │ │ │ └── DrugFrequency.js │ │ ├── sidebar │ │ │ ├── SideBar.js │ │ │ └── SubMenu.js │ │ └── trash │ │ │ ├── Admin.js │ │ │ ├── App.css │ │ │ ├── CreateUserForm.js │ │ │ ├── admin-nav.js │ │ │ └── admin-old.txt │ ├── appointments │ │ ├── Appointment.js │ │ ├── BookAnAppointment.js │ │ ├── FluidChart.js │ │ ├── SendMessge.js │ │ ├── ViewAppointment.js │ │ └── index.js │ ├── auth │ │ ├── index.js │ │ ├── login │ │ │ ├── ForgetPassword.js │ │ │ ├── LoginModal.jsx │ │ │ ├── NewLogin.jsx │ │ │ ├── NewRegistration.jsx │ │ │ ├── login.css │ │ │ ├── login.jsx │ │ │ └── test.jsx │ │ ├── registration │ │ │ ├── account-fields.jsx │ │ │ ├── api.js │ │ │ ├── component │ │ │ │ ├── Autocomplete.js │ │ │ │ ├── Input.js │ │ │ │ ├── PasswordInput.js │ │ │ │ └── SelectInput.js │ │ │ ├── doctor-reg.js │ │ │ ├── laboratory-reg.js │ │ │ ├── patient-reg.js │ │ │ ├── pharmacy-reg.js │ │ │ ├── reg.jsx │ │ │ ├── registration.jsx │ │ │ └── signUp.css │ │ └── results-viewer │ │ │ ├── Credentials.jsx │ │ │ ├── ResultIndex.js │ │ │ ├── login.css │ │ │ ├── useForm.js │ │ │ └── validator.js │ ├── client-form.js │ ├── comp │ │ ├── Autocomplete.js │ │ ├── CustomPagination.js │ │ ├── CustomPaginationNew.js │ │ ├── alert │ │ │ ├── ConfirmAction.js │ │ │ ├── CornerAlert.js │ │ │ └── DrugAlert.js │ │ ├── autocomplete.css │ │ ├── components │ │ │ ├── AutoComplete.js │ │ │ ├── AutoCompleteWithMultipleSelection.js │ │ │ ├── BackButton.js │ │ │ ├── Button.js │ │ │ ├── ButtonGroup.js │ │ │ ├── Checkbox.js │ │ │ ├── CustomAlert.js │ │ │ ├── CustomButton.js │ │ │ ├── CustomCard.js │ │ │ ├── CustomForm.js │ │ │ ├── CustomHelper.js │ │ │ ├── CustomModal.js │ │ │ ├── CustomScrollbar.js │ │ │ ├── CustomTable.js │ │ │ ├── CustomTypeahead.js │ │ │ ├── DatePicker.js │ │ │ ├── DateTimePicker.js │ │ │ ├── DaterangeSelector.js │ │ │ ├── Editor.js │ │ │ ├── FallbackSkeleton.js │ │ │ ├── Footer.js │ │ │ ├── FullscreenLoading.js │ │ │ ├── InputGroup.js │ │ │ ├── Loading.js │ │ │ ├── LoadingComp.js │ │ │ ├── Modal.js │ │ │ ├── PageNotFound.js │ │ │ ├── RadioGroup.js │ │ │ ├── RadioInput.js │ │ │ ├── Radiobox.js │ │ │ ├── Scrollbar.js │ │ │ ├── SearchFromBranchStore.js │ │ │ ├── SearchPatient.js │ │ │ ├── SelectInput.js │ │ │ ├── SimpleInput.js │ │ │ ├── TextInput.js │ │ │ ├── TextWithNewline.js │ │ │ ├── Widget.js │ │ │ ├── ckeditor │ │ │ │ ├── CustomCKEditor.js │ │ │ │ └── plugins.js │ │ │ ├── horizontal-menu │ │ │ │ ├── HorizontalMenu.js │ │ │ │ └── HorizontalMenuItem.js │ │ │ ├── index.js │ │ │ ├── layouts │ │ │ │ └── TwoSegments.js │ │ │ ├── loadingStyles.css │ │ │ ├── print │ │ │ │ └── PrintWrapper.js │ │ │ ├── sortable-tree │ │ │ │ └── index.js │ │ │ ├── useWindowDimensions.js │ │ │ ├── vertical-menu │ │ │ │ ├── ListMenuItem.js │ │ │ │ └── VerticalMenu.js │ │ │ └── widget-style.css │ │ ├── dicom │ │ │ ├── DICOMContainer.js │ │ │ └── DisplayDicomAttribute.js │ │ ├── getWindowDimension.js │ │ ├── loading │ │ │ ├── animated-loading.css │ │ │ └── animated-loading.js │ │ ├── pagination │ │ │ └── index.js │ │ ├── pdf-templates │ │ │ ├── OptimumLabReceipt.js │ │ │ ├── acc-stmt.js │ │ │ ├── accounts │ │ │ │ └── financial-stmt.js │ │ │ ├── consultations │ │ │ │ ├── consultation-record.js │ │ │ │ ├── lab-result.js │ │ │ │ └── prescriptions-print.js │ │ │ ├── credit-footer.js │ │ │ ├── deposit-receipt.js │ │ │ ├── drug-purchase-receipt.js │ │ │ ├── drug-sales.js │ │ │ ├── expenditure-report.js │ │ │ ├── general-account-report.js │ │ │ ├── histopathology-request.js │ │ │ ├── lab-receipt-large.js │ │ │ ├── lab-receipt.js │ │ │ ├── lab-result-footer.js │ │ │ ├── lab-result-title.js │ │ │ ├── lab-result.js │ │ │ ├── lab-sampling-details.js │ │ │ ├── lab │ │ │ │ ├── patient-bio.js │ │ │ │ ├── receipt-header.js │ │ │ │ ├── receipts │ │ │ │ │ ├── combined-receipt-sample.js │ │ │ │ │ ├── lab-receipt-body.js │ │ │ │ │ ├── lab-receipt-header.js │ │ │ │ │ └── sample-details-body.js │ │ │ │ └── results │ │ │ │ │ ├── input-result-view.js │ │ │ │ │ ├── macroscopy-result-view.js │ │ │ │ │ ├── microbiology-result-view.js │ │ │ │ │ ├── pathologist-comment.js │ │ │ │ │ ├── result-view.js │ │ │ │ │ ├── signature.js │ │ │ │ │ ├── styles.js │ │ │ │ │ ├── table-with-range-view.js │ │ │ │ │ └── widal-result-view.js │ │ │ ├── microbiology-report.js │ │ │ ├── operation-note.js │ │ │ ├── pdf-link.js │ │ │ ├── returned-drug-receipt.js │ │ │ ├── revenue-report.js │ │ │ ├── save-template.js │ │ │ ├── services.js │ │ │ ├── shared │ │ │ │ └── PDFTable.js │ │ │ ├── styles.js │ │ │ └── title.js │ │ ├── printpreview │ │ │ ├── PrintButton.js │ │ │ └── PrintPage.js │ │ └── speech-to-text │ │ │ ├── SpeechInput.js │ │ │ └── SpeechToText.js │ ├── doc_dash │ │ ├── Nav.js │ │ ├── SideNav.js │ │ ├── StartConsultation │ │ │ ├── OfflineConsultation.js │ │ │ ├── OnlineConsultation.js │ │ │ └── StartConsultation.js │ │ ├── actions.js │ │ ├── actions │ │ │ ├── appointmentsAction.js │ │ │ ├── helpers │ │ │ │ ├── processLabTransaction.js │ │ │ │ ├── processLabTransaction2.js │ │ │ │ ├── saveLabRequest.js │ │ │ │ └── saveLabRequest2.js │ │ │ ├── labActions.js │ │ │ ├── patientsActions.js │ │ │ └── visitsActions.js │ │ ├── appointments │ │ │ ├── AppointmentForm.js │ │ │ ├── AppointmentList.js │ │ │ ├── Calender.js │ │ │ ├── CalenderView.js │ │ │ ├── NewAppointment.js │ │ │ ├── NewAppointment2.js │ │ │ ├── ReviewAppointment.js │ │ │ ├── UnapprovedAppointments.js │ │ │ ├── ViewAppointment.js │ │ │ ├── calenda.css │ │ │ ├── calendar.css │ │ │ ├── calendar_.css │ │ │ ├── index.js │ │ │ ├── main.scss │ │ │ └── main2.css │ │ ├── chat │ │ │ ├── ChatInterface.js │ │ │ └── index.js │ │ ├── components │ │ │ └── UserGuide.js │ │ ├── consult │ │ │ └── ConsultReferral.js │ │ ├── contact │ │ │ ├── SMSForm.js │ │ │ ├── index.js │ │ │ └── sms.css │ │ ├── db │ │ │ ├── PatientlistFactory.js │ │ │ ├── PatientlistRepository.js │ │ │ ├── Repository.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── lab │ │ │ ├── AllLabRequests.js │ │ │ ├── LabList.js │ │ │ ├── NewLab.js │ │ │ ├── ViewLab.js │ │ │ └── index.js │ │ ├── main.js │ │ ├── patients │ │ │ ├── BasicInfomation.js │ │ │ ├── ContactInformation.js │ │ │ ├── Diagnosis.js │ │ │ ├── DiagnosisList.js │ │ │ ├── DoctorInfo.js │ │ │ ├── FormReferTransfer.js │ │ │ ├── Medications.js │ │ │ ├── NewPatient.js │ │ │ ├── NextOfKin.js │ │ │ ├── Notes.js │ │ │ ├── PatientTable.js │ │ │ ├── PatientsAssignedToDoc.js │ │ │ ├── ReferPatient.js │ │ │ ├── Referral.js │ │ │ ├── TransferPatient.js │ │ │ ├── ViewPatient.js │ │ │ └── index.js │ │ ├── reducers │ │ │ ├── appointments.js │ │ │ └── patientReducer.js │ │ ├── routes.js │ │ ├── types.js │ │ ├── video-chat │ │ │ ├── VideoChat.js │ │ │ ├── connectycube │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── jitsi │ │ │ │ └── index.js │ │ │ └── twilio │ │ │ │ ├── ChatSetup.js │ │ │ │ ├── Participant.js │ │ │ │ ├── VideoChat copy.js │ │ │ │ └── VideoChatView.js │ │ └── visits │ │ │ ├── ConsultationSheet.js │ │ │ ├── DiagnosisPreview.js │ │ │ ├── DiseaseSelector.js │ │ │ ├── DoctorEncountersHistory.jsx │ │ │ ├── NewVisit.js │ │ │ ├── OperationNoteSheet.js │ │ │ ├── PrintPrescription.js │ │ │ ├── PrintPreview.js │ │ │ ├── ShortConsultationView.js │ │ │ ├── ShortConsultationViewBody.js │ │ │ ├── SpeechRecGuide.js │ │ │ ├── ViewVisit.js │ │ │ ├── components │ │ │ ├── AppointmentsView.js │ │ │ ├── ConsultationTopBar.js │ │ │ ├── InPatientList.js │ │ │ ├── LabHistory.js │ │ │ ├── LabInvestigationRequests.js │ │ │ ├── ManagementDecision.js │ │ │ ├── MedicalReport.js │ │ │ ├── MedicationHistory.js │ │ │ ├── MedicationReport.js │ │ │ ├── NurseryNote.js │ │ │ ├── NurseryNoteForm.js │ │ │ ├── NursingDressingReq.js │ │ │ ├── PatientInfoTopBar.js │ │ │ ├── PatientList.js │ │ │ ├── PrescriptionForm.js │ │ │ ├── PrescriptionRequest.js │ │ │ ├── SurgicalNote.jsx │ │ │ ├── SurgicalNoteList.js │ │ │ ├── Textarea.js │ │ │ ├── VisitDatesPicker.js │ │ │ ├── VisitHistory.js │ │ │ ├── VisitPreview.js │ │ │ ├── VisitPreviewItem.js │ │ │ ├── VitalSignsHistory.js │ │ │ └── helper.js │ │ │ ├── index.js │ │ │ ├── operation-notes │ │ │ └── OpDetailView.js │ │ │ └── past-records │ │ │ ├── DICOMList.js │ │ │ └── PastRecords.js │ ├── doctor │ │ ├── AssignedList.js │ │ ├── AthropometryForm.js │ │ ├── CreateAthropometry.js │ │ ├── CreateVitalSigns.js │ │ ├── Diagnosis.js │ │ ├── DiagnosticCode.js │ │ ├── Doctor.js │ │ ├── DoctorDashboard.js │ │ ├── DressingRequestForm.js │ │ ├── DrugsTable.js │ │ ├── EditDressingRequest.js │ │ ├── EditManagementplan.js │ │ ├── EditObservationRequest.js │ │ ├── EditPrescriptionRequest.js │ │ ├── EditView.js │ │ ├── HistoryForm.js │ │ ├── HistoryPreview.js │ │ ├── Image.js │ │ ├── LastDiagnosis.js │ │ ├── ManagementPlanForm.js │ │ ├── NewProblems.js │ │ ├── NewProvisionalDiagnosis.js │ │ ├── NewRadiologyInvestigations.js │ │ ├── ObservationRequestForm.js │ │ ├── PatientClarking.js │ │ ├── PatientDetails.js │ │ ├── PatientDiagnosis.js │ │ ├── PcomplaintsForm.js │ │ ├── Preview.js │ │ ├── PreviewForm.js │ │ ├── PreviousMedicalHistoryForm.js │ │ ├── PreviousMedicalHistoryPreview.js │ │ ├── PreviousVisits.js │ │ ├── ProblemsForm.js │ │ ├── ProvisionalDiagnosisForm.js │ │ ├── SysExaminationEdit.js │ │ ├── SystemExaminationForm.js │ │ ├── VitalSignForm.js │ │ ├── components │ │ │ ├── FooterButtons.js │ │ │ ├── close-button.css │ │ │ ├── close-button.js │ │ │ ├── items-bar.js │ │ │ ├── nav-bar.js │ │ │ ├── nav2.js │ │ │ ├── test.css │ │ │ └── test2.css │ │ ├── doc-dashboard.js │ │ ├── doctor.css │ │ ├── historyForm.css │ │ ├── lab-test │ │ │ ├── LabRequestForm.js │ │ │ ├── LabRequestTable.js │ │ │ └── PrintLabReq.js │ │ ├── print.css │ │ ├── system-exams │ │ │ ├── Abdomen.js │ │ │ ├── Cns.js │ │ │ ├── Cvs.js │ │ │ ├── Evm.js │ │ │ ├── Mss.js │ │ │ └── Respiratory.js │ │ ├── tabs │ │ │ ├── DiagnosisTabs.js │ │ │ ├── ExaminationTabs.js │ │ │ ├── HistoryTabs.js │ │ │ ├── ManagementTabs.js │ │ │ ├── TabItem.js │ │ │ └── index.js │ │ └── trash │ │ │ └── patient-clarking-working.js │ ├── loading.js │ ├── login.js │ ├── nav │ │ ├── admin-nav2.js │ │ ├── nav-modules.js │ │ ├── nav-old.js │ │ ├── nav2.css │ │ ├── patient-nav.js │ │ └── userInfo.js │ ├── notifications │ │ ├── Notifications.js │ │ ├── PatientNotificationBell.js │ │ └── index.js │ ├── nurse │ │ ├── DressingRequest.js │ │ ├── DrugChart.js │ │ ├── InPatientTable.js │ │ ├── InPatientsContainer.js │ │ ├── MainDashboard.js │ │ ├── NewVitalSigns.js │ │ ├── Nurse.js │ │ ├── NurseDashboard.js │ │ ├── NurseMenu.js │ │ ├── NursingReport.js │ │ ├── api.js │ │ ├── dashboard │ │ │ ├── Landing.js │ │ │ └── LeftMenuBar.js │ │ ├── drug-schedule.js │ │ ├── drug-schedule │ │ │ ├── DrugScheduleItem.js │ │ │ ├── DrugsSchedule.js │ │ │ ├── ReasonModal.js │ │ │ ├── ScheduleComponent.js │ │ │ ├── ViewSchedule.js │ │ │ └── helper.js │ │ ├── in-patients │ │ │ └── DischargePatientWarningModal.js │ │ ├── nursing-report │ │ │ └── NewNursingReport.js │ │ ├── nursing-requests │ │ │ └── index.js │ │ ├── out-patients │ │ │ └── index.js │ │ ├── patient-dashboard │ │ │ ├── DetailsContainer.js │ │ │ ├── FluidChart.js │ │ │ ├── NewFluidChartForm.js │ │ │ ├── NursingRequests.js │ │ │ ├── PatientDrugSchedule.js │ │ │ ├── TopBar.js │ │ │ ├── TreatmentPlan.js │ │ │ └── index.js │ │ └── routes.js │ ├── patient │ │ ├── actions │ │ │ ├── appointments.js │ │ │ ├── profile.js │ │ │ └── types.js │ │ ├── pages │ │ │ ├── BookAppointment.js │ │ │ ├── DocDetails.js │ │ │ ├── DoctorList.js │ │ │ ├── PatientCalender.js │ │ │ ├── PatientUnapprovedAppointment.js │ │ │ ├── SearchDocs.js │ │ │ ├── UserNewAppointment.js │ │ │ └── index.js │ │ └── reducers │ │ │ └── patientAppointment.js │ ├── record │ │ ├── AssignPatient.js │ │ ├── Container.js │ │ ├── CreateNewPatient.js │ │ ├── DoctorsListModal.js │ │ ├── EditModal.js │ │ ├── EditPatient.js │ │ ├── FormErrors.js │ │ ├── ModalPage.js │ │ ├── NewPatientList.js │ │ ├── PatientAssignedToday.js │ │ ├── PatientTable.js │ │ ├── Patientinfo.js │ │ ├── Patientlist.js │ │ ├── RecordsDashboard.js │ │ ├── RenderPatientList.js │ │ ├── SearchBar.js │ │ ├── TableRow.js │ │ ├── UploadPassportID.js │ │ ├── actions │ │ │ ├── bed-allocation.js │ │ │ └── patientsActions.js │ │ ├── bed-allocation │ │ │ ├── AddNewBed.js │ │ │ ├── Bed.js │ │ │ ├── BedAllocation.js │ │ │ ├── BedGroup.js │ │ │ ├── BedToggle.js │ │ │ ├── DischargeModal.js │ │ │ ├── PendingAdmission.js │ │ │ ├── PendingDischarge.js │ │ │ ├── helpers.js │ │ │ └── index.js │ │ ├── doctors │ │ │ ├── DoctorList.js │ │ │ ├── Tabs.js │ │ │ └── WaitingList.js │ │ ├── image-upload │ │ │ ├── ImageUpload.js │ │ │ ├── button.js │ │ │ ├── image.js │ │ │ └── spinner.js │ │ ├── patientlist-old.js │ │ ├── patients │ │ │ ├── AddPatientButton.js │ │ │ └── InPatientsList.js │ │ ├── search.css │ │ ├── uploadFile.js │ │ └── uploadPassport.css │ ├── user │ │ ├── Avatar.js │ │ ├── DocRegister.js │ │ ├── LabDocAmt.js │ │ ├── PasswordMngmt.js │ │ ├── Profile-old.js │ │ ├── Profile.js │ │ ├── ProfileImageEdit.js │ │ ├── ReportIssues.js │ │ ├── SalesDetails.js │ │ ├── avatar │ │ │ └── PatientAvatar.js │ │ ├── components │ │ │ ├── ReferralDashboard.js │ │ │ └── Wallet.js │ │ ├── doc-profile │ │ │ ├── DoctorAvailability.js │ │ │ ├── DoctorInfo.js │ │ │ ├── Menu.js │ │ │ └── index.js │ │ └── patient-profile │ │ │ ├── Menu.js │ │ │ ├── PatientHealthStatus.js │ │ │ ├── PatientIndex.js │ │ │ └── PatientInfo.js │ ├── utils │ │ ├── ColorDetails.js │ │ ├── CustomButton.js │ │ ├── GlobalHelper.js │ │ ├── Guide │ │ │ ├── Guide.js │ │ │ ├── Guides.js │ │ │ └── guides.css │ │ ├── constants.js │ │ ├── error-boundary │ │ │ ├── MyErrorBoundary.js │ │ │ └── style.css │ │ ├── helpers.js │ │ ├── maintenance-page │ │ │ ├── maintenance.css │ │ │ └── maintenance.js │ │ ├── styles-helper.js │ │ └── util.js │ ├── validate │ │ ├── CheckboxOrRadioGroup.js │ │ ├── Select.js │ │ ├── SingleInput.js │ │ └── TextArea.js │ └── validation.js ├── db │ ├── PatientRepository.js │ ├── config.js │ ├── documents │ │ └── patient.js │ └── index.js ├── docker-compose.yml ├── fonts │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ └── taller_evolution_rev.otf ├── history.js ├── hooks │ ├── index.js │ └── useQuery.js ├── images │ ├── 404.gif │ ├── Login.svg │ ├── Radiology.jpg │ ├── analysis.jpg │ ├── asymco_logo.jpg │ ├── avatar.png │ ├── booking_co.svg │ ├── callWitDoc.png │ ├── docAvater.png │ ├── doc_comment.jpg │ ├── doctors.svg │ ├── echo.jpg │ ├── forgot_password.svg │ ├── hospitals.svg │ ├── lab.svg │ ├── loading-preferred.gif │ ├── logo.png │ ├── logo192.png │ ├── logo2.png │ ├── logo3.png │ ├── loogo.png │ ├── micro.jpg │ ├── microbiology.jpg │ ├── nurse-landing.jpeg │ ├── nurse-landing1.jpg │ ├── nurse-landing2.jpg │ ├── nurse-landing3.jpg │ ├── nurse-landing4.jpg │ ├── optimum-logo.jpg │ ├── optimum-logo2.jpg │ ├── patient.svg │ ├── pharmacy.svg │ ├── pscprime_logo.jpg │ ├── pscprime_logo.png │ ├── pscprime_logo2.jpg │ ├── pscprime_logo2.png │ ├── send_invite.svg │ ├── simpleCollection.jpg │ ├── steth.jpg │ ├── sudoEMR...png │ ├── sudoEMR..png │ ├── sudoEMR.png │ ├── thank_you.svg │ ├── undraw_questions_75e0.svg │ ├── undraw_sleep_analysis_o5f9 (1).svg │ ├── x-ray-scan.jpg │ └── ygewvimy_prime.sql ├── index.js ├── redux │ ├── actions │ │ ├── account.js │ │ ├── actionTypes.js │ │ ├── admin.js │ │ ├── api.js │ │ ├── app.js │ │ ├── auth.js │ │ ├── diagnosis.js │ │ ├── doctor.js │ │ ├── facility.js │ │ ├── firebase.js │ │ ├── index.js │ │ ├── lab.js │ │ ├── maintenance.js │ │ ├── notifications.js │ │ ├── pharmacy-old.js │ │ ├── pharmacy.js │ │ ├── records.js │ │ ├── result-viewer.js │ │ ├── services.js │ │ ├── shop.js │ │ ├── transactions.js │ │ └── types.js │ ├── reducers │ │ ├── account.js │ │ ├── admin.js │ │ ├── app.js │ │ ├── auth.js │ │ ├── diagnosis.js │ │ ├── doctor.js │ │ ├── facility.js │ │ ├── index.js │ │ ├── lab.js │ │ ├── maintenance.js │ │ ├── notifications.js │ │ ├── pharmacy.js │ │ ├── records.js │ │ ├── results.js │ │ ├── services.js │ │ ├── shop.js │ │ └── transactions.js │ └── store.js ├── registerServiceWorker.js ├── routes │ ├── AuthWrapper.js │ ├── AuthenticatedContainer.js │ ├── PatientWrapper.js │ ├── PublicNav.js │ └── PublicWrapper.js ├── styles │ ├── App.css │ ├── index.css │ └── styles.css └── webpack.config.js └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.htaccess -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/hms.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/hms.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLinters/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/jsLinters/eslint.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/mylikita-v2/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.vs/mylikita-v2/v16/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/config-overrides.js -------------------------------------------------------------------------------- /malware.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/package.json -------------------------------------------------------------------------------- /public/BrowserPrint-3.0.216.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/BrowserPrint-3.0.216.min.js -------------------------------------------------------------------------------- /public/BrowserPrint-Zebra-1.0.216.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/BrowserPrint-Zebra-1.0.216.min.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/favicon.ico -------------------------------------------------------------------------------- /public/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/icons/site.webmanifest -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/cloudinary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/cloudinary.json -------------------------------------------------------------------------------- /src/components/AsyncTypeAhead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/AsyncTypeAhead.js -------------------------------------------------------------------------------- /src/components/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/BackButton.js -------------------------------------------------------------------------------- /src/components/Carousels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/Carousels.js -------------------------------------------------------------------------------- /src/components/CheckBoxItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/CheckBoxItem.js -------------------------------------------------------------------------------- /src/components/CheckBoxNormal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/CheckBoxNormal.js -------------------------------------------------------------------------------- /src/components/CollapsibleCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/CollapsibleCard.js -------------------------------------------------------------------------------- /src/components/PatientForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/PatientForm.js -------------------------------------------------------------------------------- /src/components/SwitchButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/SwitchButton.js -------------------------------------------------------------------------------- /src/components/admin/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Admin.js -------------------------------------------------------------------------------- /src/components/admin/AdminChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/AdminChart.js -------------------------------------------------------------------------------- /src/components/admin/AdminDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/AdminDashboard.js -------------------------------------------------------------------------------- /src/components/admin/ApproveAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ApproveAdmin.js -------------------------------------------------------------------------------- /src/components/admin/ConsultationReports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ConsultationReports.js -------------------------------------------------------------------------------- /src/components/admin/ContactusTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ContactusTable.js -------------------------------------------------------------------------------- /src/components/admin/CustomFileUploadDropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/CustomFileUploadDropzone.js -------------------------------------------------------------------------------- /src/components/admin/DICOMFileUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/DICOMFileUpload.js -------------------------------------------------------------------------------- /src/components/admin/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Dashboard.js -------------------------------------------------------------------------------- /src/components/admin/DrugRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/DrugRegistration.js -------------------------------------------------------------------------------- /src/components/admin/EmailConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/EmailConfiguration.js -------------------------------------------------------------------------------- /src/components/admin/Feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Feedback.js -------------------------------------------------------------------------------- /src/components/admin/FeedbackTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/FeedbackTable.js -------------------------------------------------------------------------------- /src/components/admin/File_Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/File_Upload.js -------------------------------------------------------------------------------- /src/components/admin/GeneralInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/GeneralInfo.js -------------------------------------------------------------------------------- /src/components/admin/ManageAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManageAdmin.js -------------------------------------------------------------------------------- /src/components/admin/ManageAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManageAppointment.js -------------------------------------------------------------------------------- /src/components/admin/ManageDoctor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManageDoctor.js -------------------------------------------------------------------------------- /src/components/admin/ManageFacilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManageFacilities.js -------------------------------------------------------------------------------- /src/components/admin/ManagePatients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManagePatients.js -------------------------------------------------------------------------------- /src/components/admin/ManageSurgeon&Anes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ManageSurgeon&Anes.js -------------------------------------------------------------------------------- /src/components/admin/NetworkSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/NetworkSetting.js -------------------------------------------------------------------------------- /src/components/admin/NewUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/NewUser.js -------------------------------------------------------------------------------- /src/components/admin/ProfilePicture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/ProfilePicture.js -------------------------------------------------------------------------------- /src/components/admin/SMSConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/SMSConfiguration.js -------------------------------------------------------------------------------- /src/components/admin/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Settings.js -------------------------------------------------------------------------------- /src/components/admin/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Sidebar.js -------------------------------------------------------------------------------- /src/components/admin/StaffReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/StaffReview.js -------------------------------------------------------------------------------- /src/components/admin/TopNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/TopNav.js -------------------------------------------------------------------------------- /src/components/admin/Uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Uploader.js -------------------------------------------------------------------------------- /src/components/admin/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/Users.js -------------------------------------------------------------------------------- /src/components/admin/content/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/content/Content.js -------------------------------------------------------------------------------- /src/components/admin/content/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/content/Navbar.js -------------------------------------------------------------------------------- /src/components/admin/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/index.css -------------------------------------------------------------------------------- /src/components/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/index.js -------------------------------------------------------------------------------- /src/components/admin/moduleData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/moduleData.js -------------------------------------------------------------------------------- /src/components/admin/pharm-setup/DrugFrequency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/pharm-setup/DrugFrequency.js -------------------------------------------------------------------------------- /src/components/admin/sidebar/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/sidebar/SideBar.js -------------------------------------------------------------------------------- /src/components/admin/sidebar/SubMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/sidebar/SubMenu.js -------------------------------------------------------------------------------- /src/components/admin/trash/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/trash/Admin.js -------------------------------------------------------------------------------- /src/components/admin/trash/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/trash/App.css -------------------------------------------------------------------------------- /src/components/admin/trash/CreateUserForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/trash/CreateUserForm.js -------------------------------------------------------------------------------- /src/components/admin/trash/admin-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/trash/admin-nav.js -------------------------------------------------------------------------------- /src/components/admin/trash/admin-old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/admin/trash/admin-old.txt -------------------------------------------------------------------------------- /src/components/appointments/Appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/Appointment.js -------------------------------------------------------------------------------- /src/components/appointments/BookAnAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/BookAnAppointment.js -------------------------------------------------------------------------------- /src/components/appointments/FluidChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/FluidChart.js -------------------------------------------------------------------------------- /src/components/appointments/SendMessge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/SendMessge.js -------------------------------------------------------------------------------- /src/components/appointments/ViewAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/ViewAppointment.js -------------------------------------------------------------------------------- /src/components/appointments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/appointments/index.js -------------------------------------------------------------------------------- /src/components/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/index.js -------------------------------------------------------------------------------- /src/components/auth/login/ForgetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/ForgetPassword.js -------------------------------------------------------------------------------- /src/components/auth/login/LoginModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/LoginModal.jsx -------------------------------------------------------------------------------- /src/components/auth/login/NewLogin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/NewLogin.jsx -------------------------------------------------------------------------------- /src/components/auth/login/NewRegistration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/NewRegistration.jsx -------------------------------------------------------------------------------- /src/components/auth/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/login.css -------------------------------------------------------------------------------- /src/components/auth/login/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/login.jsx -------------------------------------------------------------------------------- /src/components/auth/login/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/login/test.jsx -------------------------------------------------------------------------------- /src/components/auth/registration/account-fields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/account-fields.jsx -------------------------------------------------------------------------------- /src/components/auth/registration/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/api.js -------------------------------------------------------------------------------- /src/components/auth/registration/component/Autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/component/Autocomplete.js -------------------------------------------------------------------------------- /src/components/auth/registration/component/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/component/Input.js -------------------------------------------------------------------------------- /src/components/auth/registration/component/PasswordInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/component/PasswordInput.js -------------------------------------------------------------------------------- /src/components/auth/registration/component/SelectInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/component/SelectInput.js -------------------------------------------------------------------------------- /src/components/auth/registration/doctor-reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/doctor-reg.js -------------------------------------------------------------------------------- /src/components/auth/registration/laboratory-reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/laboratory-reg.js -------------------------------------------------------------------------------- /src/components/auth/registration/patient-reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/patient-reg.js -------------------------------------------------------------------------------- /src/components/auth/registration/pharmacy-reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/pharmacy-reg.js -------------------------------------------------------------------------------- /src/components/auth/registration/reg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/reg.jsx -------------------------------------------------------------------------------- /src/components/auth/registration/registration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/registration.jsx -------------------------------------------------------------------------------- /src/components/auth/registration/signUp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/registration/signUp.css -------------------------------------------------------------------------------- /src/components/auth/results-viewer/Credentials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/results-viewer/Credentials.jsx -------------------------------------------------------------------------------- /src/components/auth/results-viewer/ResultIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/results-viewer/ResultIndex.js -------------------------------------------------------------------------------- /src/components/auth/results-viewer/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/results-viewer/login.css -------------------------------------------------------------------------------- /src/components/auth/results-viewer/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/results-viewer/useForm.js -------------------------------------------------------------------------------- /src/components/auth/results-viewer/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/auth/results-viewer/validator.js -------------------------------------------------------------------------------- /src/components/client-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/client-form.js -------------------------------------------------------------------------------- /src/components/comp/Autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/Autocomplete.js -------------------------------------------------------------------------------- /src/components/comp/CustomPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/CustomPagination.js -------------------------------------------------------------------------------- /src/components/comp/CustomPaginationNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/CustomPaginationNew.js -------------------------------------------------------------------------------- /src/components/comp/alert/ConfirmAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/alert/ConfirmAction.js -------------------------------------------------------------------------------- /src/components/comp/alert/CornerAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/alert/CornerAlert.js -------------------------------------------------------------------------------- /src/components/comp/alert/DrugAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/alert/DrugAlert.js -------------------------------------------------------------------------------- /src/components/comp/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/autocomplete.css -------------------------------------------------------------------------------- /src/components/comp/components/AutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/AutoComplete.js -------------------------------------------------------------------------------- /src/components/comp/components/AutoCompleteWithMultipleSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/AutoCompleteWithMultipleSelection.js -------------------------------------------------------------------------------- /src/components/comp/components/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/BackButton.js -------------------------------------------------------------------------------- /src/components/comp/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Button.js -------------------------------------------------------------------------------- /src/components/comp/components/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/ButtonGroup.js -------------------------------------------------------------------------------- /src/components/comp/components/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Checkbox.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomAlert.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomButton.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomCard.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomForm.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomHelper.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomModal.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomScrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomScrollbar.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomTable.js -------------------------------------------------------------------------------- /src/components/comp/components/CustomTypeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/CustomTypeahead.js -------------------------------------------------------------------------------- /src/components/comp/components/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/DatePicker.js -------------------------------------------------------------------------------- /src/components/comp/components/DateTimePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/DateTimePicker.js -------------------------------------------------------------------------------- /src/components/comp/components/DaterangeSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/DaterangeSelector.js -------------------------------------------------------------------------------- /src/components/comp/components/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Editor.js -------------------------------------------------------------------------------- /src/components/comp/components/FallbackSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/FallbackSkeleton.js -------------------------------------------------------------------------------- /src/components/comp/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Footer.js -------------------------------------------------------------------------------- /src/components/comp/components/FullscreenLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/FullscreenLoading.js -------------------------------------------------------------------------------- /src/components/comp/components/InputGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/InputGroup.js -------------------------------------------------------------------------------- /src/components/comp/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Loading.js -------------------------------------------------------------------------------- /src/components/comp/components/LoadingComp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/LoadingComp.js -------------------------------------------------------------------------------- /src/components/comp/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Modal.js -------------------------------------------------------------------------------- /src/components/comp/components/PageNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/PageNotFound.js -------------------------------------------------------------------------------- /src/components/comp/components/RadioGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/RadioGroup.js -------------------------------------------------------------------------------- /src/components/comp/components/RadioInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/RadioInput.js -------------------------------------------------------------------------------- /src/components/comp/components/Radiobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Radiobox.js -------------------------------------------------------------------------------- /src/components/comp/components/Scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Scrollbar.js -------------------------------------------------------------------------------- /src/components/comp/components/SearchFromBranchStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/SearchFromBranchStore.js -------------------------------------------------------------------------------- /src/components/comp/components/SearchPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/SearchPatient.js -------------------------------------------------------------------------------- /src/components/comp/components/SelectInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/SelectInput.js -------------------------------------------------------------------------------- /src/components/comp/components/SimpleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/SimpleInput.js -------------------------------------------------------------------------------- /src/components/comp/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/TextInput.js -------------------------------------------------------------------------------- /src/components/comp/components/TextWithNewline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/TextWithNewline.js -------------------------------------------------------------------------------- /src/components/comp/components/Widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/Widget.js -------------------------------------------------------------------------------- /src/components/comp/components/ckeditor/CustomCKEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/ckeditor/CustomCKEditor.js -------------------------------------------------------------------------------- /src/components/comp/components/ckeditor/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/ckeditor/plugins.js -------------------------------------------------------------------------------- /src/components/comp/components/horizontal-menu/HorizontalMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/horizontal-menu/HorizontalMenu.js -------------------------------------------------------------------------------- /src/components/comp/components/horizontal-menu/HorizontalMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/horizontal-menu/HorizontalMenuItem.js -------------------------------------------------------------------------------- /src/components/comp/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/index.js -------------------------------------------------------------------------------- /src/components/comp/components/layouts/TwoSegments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/layouts/TwoSegments.js -------------------------------------------------------------------------------- /src/components/comp/components/loadingStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/loadingStyles.css -------------------------------------------------------------------------------- /src/components/comp/components/print/PrintWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/print/PrintWrapper.js -------------------------------------------------------------------------------- /src/components/comp/components/sortable-tree/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/sortable-tree/index.js -------------------------------------------------------------------------------- /src/components/comp/components/useWindowDimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/useWindowDimensions.js -------------------------------------------------------------------------------- /src/components/comp/components/vertical-menu/ListMenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/vertical-menu/ListMenuItem.js -------------------------------------------------------------------------------- /src/components/comp/components/vertical-menu/VerticalMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/vertical-menu/VerticalMenu.js -------------------------------------------------------------------------------- /src/components/comp/components/widget-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/components/widget-style.css -------------------------------------------------------------------------------- /src/components/comp/dicom/DICOMContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/dicom/DICOMContainer.js -------------------------------------------------------------------------------- /src/components/comp/dicom/DisplayDicomAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/dicom/DisplayDicomAttribute.js -------------------------------------------------------------------------------- /src/components/comp/getWindowDimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/getWindowDimension.js -------------------------------------------------------------------------------- /src/components/comp/loading/animated-loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/loading/animated-loading.css -------------------------------------------------------------------------------- /src/components/comp/loading/animated-loading.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/comp/pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pagination/index.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/OptimumLabReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/OptimumLabReceipt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/acc-stmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/acc-stmt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/accounts/financial-stmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/accounts/financial-stmt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/consultations/consultation-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/consultations/consultation-record.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/consultations/lab-result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/consultations/lab-result.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/consultations/prescriptions-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/consultations/prescriptions-print.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/credit-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/credit-footer.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/deposit-receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/deposit-receipt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/drug-purchase-receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/drug-purchase-receipt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/drug-sales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/drug-sales.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/expenditure-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/expenditure-report.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/general-account-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/general-account-report.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/histopathology-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/histopathology-request.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-receipt-large.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-receipt-large.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-receipt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-result-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-result-footer.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-result-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-result-title.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-result.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab-sampling-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab-sampling-details.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/patient-bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/patient-bio.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/receipt-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/receipt-header.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/receipts/combined-receipt-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/receipts/combined-receipt-sample.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/receipts/lab-receipt-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/receipts/lab-receipt-body.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/receipts/lab-receipt-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/receipts/lab-receipt-header.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/receipts/sample-details-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/receipts/sample-details-body.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/input-result-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/input-result-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/macroscopy-result-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/macroscopy-result-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/microbiology-result-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/microbiology-result-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/pathologist-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/pathologist-comment.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/result-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/result-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/signature.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/styles.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/table-with-range-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/table-with-range-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/lab/results/widal-result-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/lab/results/widal-result-view.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/microbiology-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/microbiology-report.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/operation-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/operation-note.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/pdf-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/pdf-link.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/returned-drug-receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/returned-drug-receipt.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/revenue-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/revenue-report.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/save-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/save-template.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/services.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/shared/PDFTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/shared/PDFTable.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/styles.js -------------------------------------------------------------------------------- /src/components/comp/pdf-templates/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/pdf-templates/title.js -------------------------------------------------------------------------------- /src/components/comp/printpreview/PrintButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/printpreview/PrintButton.js -------------------------------------------------------------------------------- /src/components/comp/printpreview/PrintPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/printpreview/PrintPage.js -------------------------------------------------------------------------------- /src/components/comp/speech-to-text/SpeechInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/speech-to-text/SpeechInput.js -------------------------------------------------------------------------------- /src/components/comp/speech-to-text/SpeechToText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/comp/speech-to-text/SpeechToText.js -------------------------------------------------------------------------------- /src/components/doc_dash/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/Nav.js -------------------------------------------------------------------------------- /src/components/doc_dash/SideNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/SideNav.js -------------------------------------------------------------------------------- /src/components/doc_dash/StartConsultation/OfflineConsultation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/StartConsultation/OfflineConsultation.js -------------------------------------------------------------------------------- /src/components/doc_dash/StartConsultation/OnlineConsultation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/StartConsultation/OnlineConsultation.js -------------------------------------------------------------------------------- /src/components/doc_dash/StartConsultation/StartConsultation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/StartConsultation/StartConsultation.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/appointmentsAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/appointmentsAction.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/helpers/processLabTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/helpers/processLabTransaction.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/helpers/processLabTransaction2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/helpers/processLabTransaction2.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/helpers/saveLabRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/helpers/saveLabRequest.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/helpers/saveLabRequest2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/helpers/saveLabRequest2.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/labActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/labActions.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/patientsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/patientsActions.js -------------------------------------------------------------------------------- /src/components/doc_dash/actions/visitsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/actions/visitsActions.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/AppointmentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/AppointmentForm.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/AppointmentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/AppointmentList.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/Calender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/Calender.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/CalenderView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/CalenderView.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/NewAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/NewAppointment.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/NewAppointment2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/NewAppointment2.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/ReviewAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/ReviewAppointment.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/UnapprovedAppointments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/UnapprovedAppointments.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/ViewAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/ViewAppointment.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/calenda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/calenda.css -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/calendar.css -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/calendar_.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/calendar_.css -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/main.scss -------------------------------------------------------------------------------- /src/components/doc_dash/appointments/main2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/appointments/main2.css -------------------------------------------------------------------------------- /src/components/doc_dash/chat/ChatInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/chat/ChatInterface.js -------------------------------------------------------------------------------- /src/components/doc_dash/chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/chat/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/components/UserGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/components/UserGuide.js -------------------------------------------------------------------------------- /src/components/doc_dash/consult/ConsultReferral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/consult/ConsultReferral.js -------------------------------------------------------------------------------- /src/components/doc_dash/contact/SMSForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/contact/SMSForm.js -------------------------------------------------------------------------------- /src/components/doc_dash/contact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/contact/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/contact/sms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/contact/sms.css -------------------------------------------------------------------------------- /src/components/doc_dash/db/PatientlistFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/db/PatientlistFactory.js -------------------------------------------------------------------------------- /src/components/doc_dash/db/PatientlistRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/db/PatientlistRepository.js -------------------------------------------------------------------------------- /src/components/doc_dash/db/Repository.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/doc_dash/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/db/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/lab/AllLabRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/lab/AllLabRequests.js -------------------------------------------------------------------------------- /src/components/doc_dash/lab/LabList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/lab/LabList.js -------------------------------------------------------------------------------- /src/components/doc_dash/lab/NewLab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/lab/NewLab.js -------------------------------------------------------------------------------- /src/components/doc_dash/lab/ViewLab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/lab/ViewLab.js -------------------------------------------------------------------------------- /src/components/doc_dash/lab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/lab/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/main.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/BasicInfomation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/BasicInfomation.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/ContactInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/ContactInformation.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/Diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/Diagnosis.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/DiagnosisList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/DiagnosisList.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/DoctorInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/DoctorInfo.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/FormReferTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/FormReferTransfer.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/Medications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/Medications.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/NewPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/NewPatient.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/NextOfKin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/NextOfKin.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/Notes.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/PatientTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/PatientTable.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/PatientsAssignedToDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/PatientsAssignedToDoc.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/ReferPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/ReferPatient.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/Referral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/Referral.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/TransferPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/TransferPatient.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/ViewPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/ViewPatient.js -------------------------------------------------------------------------------- /src/components/doc_dash/patients/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/patients/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/reducers/appointments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/reducers/appointments.js -------------------------------------------------------------------------------- /src/components/doc_dash/reducers/patientReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/reducers/patientReducer.js -------------------------------------------------------------------------------- /src/components/doc_dash/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/routes.js -------------------------------------------------------------------------------- /src/components/doc_dash/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/types.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/VideoChat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/VideoChat.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/connectycube/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/connectycube/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/jitsi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/jitsi/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/twilio/ChatSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/twilio/ChatSetup.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/twilio/Participant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/twilio/Participant.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/twilio/VideoChat copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/twilio/VideoChat copy.js -------------------------------------------------------------------------------- /src/components/doc_dash/video-chat/twilio/VideoChatView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/video-chat/twilio/VideoChatView.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/ConsultationSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/ConsultationSheet.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/DiagnosisPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/DiagnosisPreview.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/DiseaseSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/DiseaseSelector.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/DoctorEncountersHistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/DoctorEncountersHistory.jsx -------------------------------------------------------------------------------- /src/components/doc_dash/visits/NewVisit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/NewVisit.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/OperationNoteSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/OperationNoteSheet.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/PrintPrescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/PrintPrescription.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/PrintPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/PrintPreview.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/ShortConsultationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/ShortConsultationView.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/ShortConsultationViewBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/ShortConsultationViewBody.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/SpeechRecGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/SpeechRecGuide.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/ViewVisit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/ViewVisit.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/AppointmentsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/AppointmentsView.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/ConsultationTopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/ConsultationTopBar.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/InPatientList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/InPatientList.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/LabHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/LabHistory.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/LabInvestigationRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/LabInvestigationRequests.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/ManagementDecision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/ManagementDecision.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/MedicalReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/MedicalReport.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/MedicationHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/MedicationHistory.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/MedicationReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/MedicationReport.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/NurseryNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/NurseryNote.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/NurseryNoteForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/NurseryNoteForm.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/NursingDressingReq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/NursingDressingReq.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/PatientInfoTopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/PatientInfoTopBar.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/PatientList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/PatientList.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/PrescriptionForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/PrescriptionForm.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/PrescriptionRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/PrescriptionRequest.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/SurgicalNote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/SurgicalNote.jsx -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/SurgicalNoteList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/SurgicalNoteList.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/Textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/Textarea.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/VisitDatesPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/VisitDatesPicker.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/VisitHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/VisitHistory.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/VisitPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/VisitPreview.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/VisitPreviewItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/VisitPreviewItem.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/VitalSignsHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/VitalSignsHistory.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/components/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/components/helper.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/index.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/operation-notes/OpDetailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/operation-notes/OpDetailView.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/past-records/DICOMList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/past-records/DICOMList.js -------------------------------------------------------------------------------- /src/components/doc_dash/visits/past-records/PastRecords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doc_dash/visits/past-records/PastRecords.js -------------------------------------------------------------------------------- /src/components/doctor/AssignedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/AssignedList.js -------------------------------------------------------------------------------- /src/components/doctor/AthropometryForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/AthropometryForm.js -------------------------------------------------------------------------------- /src/components/doctor/CreateAthropometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/CreateAthropometry.js -------------------------------------------------------------------------------- /src/components/doctor/CreateVitalSigns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/CreateVitalSigns.js -------------------------------------------------------------------------------- /src/components/doctor/Diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/Diagnosis.js -------------------------------------------------------------------------------- /src/components/doctor/DiagnosticCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/DiagnosticCode.js -------------------------------------------------------------------------------- /src/components/doctor/Doctor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/Doctor.js -------------------------------------------------------------------------------- /src/components/doctor/DoctorDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/DoctorDashboard.js -------------------------------------------------------------------------------- /src/components/doctor/DressingRequestForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/DressingRequestForm.js -------------------------------------------------------------------------------- /src/components/doctor/DrugsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/DrugsTable.js -------------------------------------------------------------------------------- /src/components/doctor/EditDressingRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/EditDressingRequest.js -------------------------------------------------------------------------------- /src/components/doctor/EditManagementplan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/EditManagementplan.js -------------------------------------------------------------------------------- /src/components/doctor/EditObservationRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/EditObservationRequest.js -------------------------------------------------------------------------------- /src/components/doctor/EditPrescriptionRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/EditPrescriptionRequest.js -------------------------------------------------------------------------------- /src/components/doctor/EditView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/EditView.js -------------------------------------------------------------------------------- /src/components/doctor/HistoryForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/HistoryForm.js -------------------------------------------------------------------------------- /src/components/doctor/HistoryPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/HistoryPreview.js -------------------------------------------------------------------------------- /src/components/doctor/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/Image.js -------------------------------------------------------------------------------- /src/components/doctor/LastDiagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/LastDiagnosis.js -------------------------------------------------------------------------------- /src/components/doctor/ManagementPlanForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/ManagementPlanForm.js -------------------------------------------------------------------------------- /src/components/doctor/NewProblems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/NewProblems.js -------------------------------------------------------------------------------- /src/components/doctor/NewProvisionalDiagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/NewProvisionalDiagnosis.js -------------------------------------------------------------------------------- /src/components/doctor/NewRadiologyInvestigations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/NewRadiologyInvestigations.js -------------------------------------------------------------------------------- /src/components/doctor/ObservationRequestForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/ObservationRequestForm.js -------------------------------------------------------------------------------- /src/components/doctor/PatientClarking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PatientClarking.js -------------------------------------------------------------------------------- /src/components/doctor/PatientDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PatientDetails.js -------------------------------------------------------------------------------- /src/components/doctor/PatientDiagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PatientDiagnosis.js -------------------------------------------------------------------------------- /src/components/doctor/PcomplaintsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PcomplaintsForm.js -------------------------------------------------------------------------------- /src/components/doctor/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/Preview.js -------------------------------------------------------------------------------- /src/components/doctor/PreviewForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PreviewForm.js -------------------------------------------------------------------------------- /src/components/doctor/PreviousMedicalHistoryForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PreviousMedicalHistoryForm.js -------------------------------------------------------------------------------- /src/components/doctor/PreviousMedicalHistoryPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PreviousMedicalHistoryPreview.js -------------------------------------------------------------------------------- /src/components/doctor/PreviousVisits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/PreviousVisits.js -------------------------------------------------------------------------------- /src/components/doctor/ProblemsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/ProblemsForm.js -------------------------------------------------------------------------------- /src/components/doctor/ProvisionalDiagnosisForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/ProvisionalDiagnosisForm.js -------------------------------------------------------------------------------- /src/components/doctor/SysExaminationEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/SysExaminationEdit.js -------------------------------------------------------------------------------- /src/components/doctor/SystemExaminationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/SystemExaminationForm.js -------------------------------------------------------------------------------- /src/components/doctor/VitalSignForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/VitalSignForm.js -------------------------------------------------------------------------------- /src/components/doctor/components/FooterButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/FooterButtons.js -------------------------------------------------------------------------------- /src/components/doctor/components/close-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/close-button.css -------------------------------------------------------------------------------- /src/components/doctor/components/close-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/close-button.js -------------------------------------------------------------------------------- /src/components/doctor/components/items-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/items-bar.js -------------------------------------------------------------------------------- /src/components/doctor/components/nav-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/nav-bar.js -------------------------------------------------------------------------------- /src/components/doctor/components/nav2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/nav2.js -------------------------------------------------------------------------------- /src/components/doctor/components/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/test.css -------------------------------------------------------------------------------- /src/components/doctor/components/test2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/components/test2.css -------------------------------------------------------------------------------- /src/components/doctor/doc-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/doc-dashboard.js -------------------------------------------------------------------------------- /src/components/doctor/doctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/doctor.css -------------------------------------------------------------------------------- /src/components/doctor/historyForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/historyForm.css -------------------------------------------------------------------------------- /src/components/doctor/lab-test/LabRequestForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/lab-test/LabRequestForm.js -------------------------------------------------------------------------------- /src/components/doctor/lab-test/LabRequestTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/lab-test/LabRequestTable.js -------------------------------------------------------------------------------- /src/components/doctor/lab-test/PrintLabReq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/lab-test/PrintLabReq.js -------------------------------------------------------------------------------- /src/components/doctor/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/print.css -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Abdomen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Abdomen.js -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Cns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Cns.js -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Cvs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Cvs.js -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Evm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Evm.js -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Mss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Mss.js -------------------------------------------------------------------------------- /src/components/doctor/system-exams/Respiratory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/system-exams/Respiratory.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/DiagnosisTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/DiagnosisTabs.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/ExaminationTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/ExaminationTabs.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/HistoryTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/HistoryTabs.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/ManagementTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/ManagementTabs.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/TabItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/TabItem.js -------------------------------------------------------------------------------- /src/components/doctor/tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/tabs/index.js -------------------------------------------------------------------------------- /src/components/doctor/trash/patient-clarking-working.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/doctor/trash/patient-clarking-working.js -------------------------------------------------------------------------------- /src/components/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/loading.js -------------------------------------------------------------------------------- /src/components/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/login.js -------------------------------------------------------------------------------- /src/components/nav/admin-nav2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/admin-nav2.js -------------------------------------------------------------------------------- /src/components/nav/nav-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/nav-modules.js -------------------------------------------------------------------------------- /src/components/nav/nav-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/nav-old.js -------------------------------------------------------------------------------- /src/components/nav/nav2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/nav2.css -------------------------------------------------------------------------------- /src/components/nav/patient-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/patient-nav.js -------------------------------------------------------------------------------- /src/components/nav/userInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nav/userInfo.js -------------------------------------------------------------------------------- /src/components/notifications/Notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/notifications/Notifications.js -------------------------------------------------------------------------------- /src/components/notifications/PatientNotificationBell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/notifications/PatientNotificationBell.js -------------------------------------------------------------------------------- /src/components/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/notifications/index.js -------------------------------------------------------------------------------- /src/components/nurse/DressingRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/DressingRequest.js -------------------------------------------------------------------------------- /src/components/nurse/DrugChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/DrugChart.js -------------------------------------------------------------------------------- /src/components/nurse/InPatientTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/InPatientTable.js -------------------------------------------------------------------------------- /src/components/nurse/InPatientsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/InPatientsContainer.js -------------------------------------------------------------------------------- /src/components/nurse/MainDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/MainDashboard.js -------------------------------------------------------------------------------- /src/components/nurse/NewVitalSigns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/NewVitalSigns.js -------------------------------------------------------------------------------- /src/components/nurse/Nurse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/Nurse.js -------------------------------------------------------------------------------- /src/components/nurse/NurseDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/NurseDashboard.js -------------------------------------------------------------------------------- /src/components/nurse/NurseMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/NurseMenu.js -------------------------------------------------------------------------------- /src/components/nurse/NursingReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/NursingReport.js -------------------------------------------------------------------------------- /src/components/nurse/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/api.js -------------------------------------------------------------------------------- /src/components/nurse/dashboard/Landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/dashboard/Landing.js -------------------------------------------------------------------------------- /src/components/nurse/dashboard/LeftMenuBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/dashboard/LeftMenuBar.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/DrugScheduleItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/DrugScheduleItem.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/DrugsSchedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/DrugsSchedule.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/ReasonModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/ReasonModal.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/ScheduleComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/ScheduleComponent.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/ViewSchedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/ViewSchedule.js -------------------------------------------------------------------------------- /src/components/nurse/drug-schedule/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/drug-schedule/helper.js -------------------------------------------------------------------------------- /src/components/nurse/in-patients/DischargePatientWarningModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/in-patients/DischargePatientWarningModal.js -------------------------------------------------------------------------------- /src/components/nurse/nursing-report/NewNursingReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/nursing-report/NewNursingReport.js -------------------------------------------------------------------------------- /src/components/nurse/nursing-requests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/nursing-requests/index.js -------------------------------------------------------------------------------- /src/components/nurse/out-patients/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/out-patients/index.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/DetailsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/DetailsContainer.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/FluidChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/FluidChart.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/NewFluidChartForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/NewFluidChartForm.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/NursingRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/NursingRequests.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/PatientDrugSchedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/PatientDrugSchedule.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/TopBar.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/TreatmentPlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/TreatmentPlan.js -------------------------------------------------------------------------------- /src/components/nurse/patient-dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/patient-dashboard/index.js -------------------------------------------------------------------------------- /src/components/nurse/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/nurse/routes.js -------------------------------------------------------------------------------- /src/components/patient/actions/appointments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/actions/appointments.js -------------------------------------------------------------------------------- /src/components/patient/actions/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/actions/profile.js -------------------------------------------------------------------------------- /src/components/patient/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/actions/types.js -------------------------------------------------------------------------------- /src/components/patient/pages/BookAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/BookAppointment.js -------------------------------------------------------------------------------- /src/components/patient/pages/DocDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/DocDetails.js -------------------------------------------------------------------------------- /src/components/patient/pages/DoctorList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/DoctorList.js -------------------------------------------------------------------------------- /src/components/patient/pages/PatientCalender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/PatientCalender.js -------------------------------------------------------------------------------- /src/components/patient/pages/PatientUnapprovedAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/PatientUnapprovedAppointment.js -------------------------------------------------------------------------------- /src/components/patient/pages/SearchDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/SearchDocs.js -------------------------------------------------------------------------------- /src/components/patient/pages/UserNewAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/UserNewAppointment.js -------------------------------------------------------------------------------- /src/components/patient/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/pages/index.js -------------------------------------------------------------------------------- /src/components/patient/reducers/patientAppointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/patient/reducers/patientAppointment.js -------------------------------------------------------------------------------- /src/components/record/AssignPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/AssignPatient.js -------------------------------------------------------------------------------- /src/components/record/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/Container.js -------------------------------------------------------------------------------- /src/components/record/CreateNewPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/CreateNewPatient.js -------------------------------------------------------------------------------- /src/components/record/DoctorsListModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/DoctorsListModal.js -------------------------------------------------------------------------------- /src/components/record/EditModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/EditModal.js -------------------------------------------------------------------------------- /src/components/record/EditPatient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/EditPatient.js -------------------------------------------------------------------------------- /src/components/record/FormErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/FormErrors.js -------------------------------------------------------------------------------- /src/components/record/ModalPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/ModalPage.js -------------------------------------------------------------------------------- /src/components/record/NewPatientList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/NewPatientList.js -------------------------------------------------------------------------------- /src/components/record/PatientAssignedToday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/PatientAssignedToday.js -------------------------------------------------------------------------------- /src/components/record/PatientTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/PatientTable.js -------------------------------------------------------------------------------- /src/components/record/Patientinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/Patientinfo.js -------------------------------------------------------------------------------- /src/components/record/Patientlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/Patientlist.js -------------------------------------------------------------------------------- /src/components/record/RecordsDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/RecordsDashboard.js -------------------------------------------------------------------------------- /src/components/record/RenderPatientList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/RenderPatientList.js -------------------------------------------------------------------------------- /src/components/record/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/SearchBar.js -------------------------------------------------------------------------------- /src/components/record/TableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/TableRow.js -------------------------------------------------------------------------------- /src/components/record/UploadPassportID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/UploadPassportID.js -------------------------------------------------------------------------------- /src/components/record/actions/bed-allocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/actions/bed-allocation.js -------------------------------------------------------------------------------- /src/components/record/actions/patientsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/actions/patientsActions.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/AddNewBed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/AddNewBed.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/Bed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/Bed.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/BedAllocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/BedAllocation.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/BedGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/BedGroup.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/BedToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/BedToggle.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/DischargeModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/DischargeModal.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/PendingAdmission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/PendingAdmission.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/PendingDischarge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/PendingDischarge.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/helpers.js -------------------------------------------------------------------------------- /src/components/record/bed-allocation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/bed-allocation/index.js -------------------------------------------------------------------------------- /src/components/record/doctors/DoctorList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/doctors/DoctorList.js -------------------------------------------------------------------------------- /src/components/record/doctors/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/doctors/Tabs.js -------------------------------------------------------------------------------- /src/components/record/doctors/WaitingList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/doctors/WaitingList.js -------------------------------------------------------------------------------- /src/components/record/image-upload/ImageUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/image-upload/ImageUpload.js -------------------------------------------------------------------------------- /src/components/record/image-upload/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/image-upload/button.js -------------------------------------------------------------------------------- /src/components/record/image-upload/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/image-upload/image.js -------------------------------------------------------------------------------- /src/components/record/image-upload/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/image-upload/spinner.js -------------------------------------------------------------------------------- /src/components/record/patientlist-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/patientlist-old.js -------------------------------------------------------------------------------- /src/components/record/patients/AddPatientButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/patients/AddPatientButton.js -------------------------------------------------------------------------------- /src/components/record/patients/InPatientsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/patients/InPatientsList.js -------------------------------------------------------------------------------- /src/components/record/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/search.css -------------------------------------------------------------------------------- /src/components/record/uploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/uploadFile.js -------------------------------------------------------------------------------- /src/components/record/uploadPassport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/record/uploadPassport.css -------------------------------------------------------------------------------- /src/components/user/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/Avatar.js -------------------------------------------------------------------------------- /src/components/user/DocRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/DocRegister.js -------------------------------------------------------------------------------- /src/components/user/LabDocAmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/LabDocAmt.js -------------------------------------------------------------------------------- /src/components/user/PasswordMngmt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/PasswordMngmt.js -------------------------------------------------------------------------------- /src/components/user/Profile-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/Profile-old.js -------------------------------------------------------------------------------- /src/components/user/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/Profile.js -------------------------------------------------------------------------------- /src/components/user/ProfileImageEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/ProfileImageEdit.js -------------------------------------------------------------------------------- /src/components/user/ReportIssues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/ReportIssues.js -------------------------------------------------------------------------------- /src/components/user/SalesDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/SalesDetails.js -------------------------------------------------------------------------------- /src/components/user/avatar/PatientAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/avatar/PatientAvatar.js -------------------------------------------------------------------------------- /src/components/user/components/ReferralDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/components/ReferralDashboard.js -------------------------------------------------------------------------------- /src/components/user/components/Wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/components/Wallet.js -------------------------------------------------------------------------------- /src/components/user/doc-profile/DoctorAvailability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/doc-profile/DoctorAvailability.js -------------------------------------------------------------------------------- /src/components/user/doc-profile/DoctorInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/doc-profile/DoctorInfo.js -------------------------------------------------------------------------------- /src/components/user/doc-profile/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/doc-profile/Menu.js -------------------------------------------------------------------------------- /src/components/user/doc-profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/doc-profile/index.js -------------------------------------------------------------------------------- /src/components/user/patient-profile/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/patient-profile/Menu.js -------------------------------------------------------------------------------- /src/components/user/patient-profile/PatientHealthStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/patient-profile/PatientHealthStatus.js -------------------------------------------------------------------------------- /src/components/user/patient-profile/PatientIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/patient-profile/PatientIndex.js -------------------------------------------------------------------------------- /src/components/user/patient-profile/PatientInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/user/patient-profile/PatientInfo.js -------------------------------------------------------------------------------- /src/components/utils/ColorDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/ColorDetails.js -------------------------------------------------------------------------------- /src/components/utils/CustomButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/CustomButton.js -------------------------------------------------------------------------------- /src/components/utils/GlobalHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/GlobalHelper.js -------------------------------------------------------------------------------- /src/components/utils/Guide/Guide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/Guide/Guide.js -------------------------------------------------------------------------------- /src/components/utils/Guide/Guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/Guide/Guides.js -------------------------------------------------------------------------------- /src/components/utils/Guide/guides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/Guide/guides.css -------------------------------------------------------------------------------- /src/components/utils/constants.js: -------------------------------------------------------------------------------- 1 | export const primaryColor = '#0069D9'; 2 | -------------------------------------------------------------------------------- /src/components/utils/error-boundary/MyErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/error-boundary/MyErrorBoundary.js -------------------------------------------------------------------------------- /src/components/utils/error-boundary/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/error-boundary/style.css -------------------------------------------------------------------------------- /src/components/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/helpers.js -------------------------------------------------------------------------------- /src/components/utils/maintenance-page/maintenance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/maintenance-page/maintenance.css -------------------------------------------------------------------------------- /src/components/utils/maintenance-page/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/maintenance-page/maintenance.js -------------------------------------------------------------------------------- /src/components/utils/styles-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/styles-helper.js -------------------------------------------------------------------------------- /src/components/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/utils/util.js -------------------------------------------------------------------------------- /src/components/validate/CheckboxOrRadioGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/validate/CheckboxOrRadioGroup.js -------------------------------------------------------------------------------- /src/components/validate/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/validate/Select.js -------------------------------------------------------------------------------- /src/components/validate/SingleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/validate/SingleInput.js -------------------------------------------------------------------------------- /src/components/validate/TextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/components/validate/TextArea.js -------------------------------------------------------------------------------- /src/components/validation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/db/PatientRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/db/PatientRepository.js -------------------------------------------------------------------------------- /src/db/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/db/config.js -------------------------------------------------------------------------------- /src/db/documents/patient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/db/documents/patient.js -------------------------------------------------------------------------------- /src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/db/index.js -------------------------------------------------------------------------------- /src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/docker-compose.yml -------------------------------------------------------------------------------- /src/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/taller_evolution_rev.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/fonts/taller_evolution_rev.otf -------------------------------------------------------------------------------- /src/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/history.js -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/useQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/hooks/useQuery.js -------------------------------------------------------------------------------- /src/images/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/404.gif -------------------------------------------------------------------------------- /src/images/Login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/Login.svg -------------------------------------------------------------------------------- /src/images/Radiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/Radiology.jpg -------------------------------------------------------------------------------- /src/images/analysis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/analysis.jpg -------------------------------------------------------------------------------- /src/images/asymco_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/asymco_logo.jpg -------------------------------------------------------------------------------- /src/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/avatar.png -------------------------------------------------------------------------------- /src/images/booking_co.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/booking_co.svg -------------------------------------------------------------------------------- /src/images/callWitDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/callWitDoc.png -------------------------------------------------------------------------------- /src/images/docAvater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/docAvater.png -------------------------------------------------------------------------------- /src/images/doc_comment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/doc_comment.jpg -------------------------------------------------------------------------------- /src/images/doctors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/doctors.svg -------------------------------------------------------------------------------- /src/images/echo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/echo.jpg -------------------------------------------------------------------------------- /src/images/forgot_password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/forgot_password.svg -------------------------------------------------------------------------------- /src/images/hospitals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/hospitals.svg -------------------------------------------------------------------------------- /src/images/lab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/lab.svg -------------------------------------------------------------------------------- /src/images/loading-preferred.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/loading-preferred.gif -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/logo192.png -------------------------------------------------------------------------------- /src/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/logo2.png -------------------------------------------------------------------------------- /src/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/logo3.png -------------------------------------------------------------------------------- /src/images/loogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/loogo.png -------------------------------------------------------------------------------- /src/images/micro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/micro.jpg -------------------------------------------------------------------------------- /src/images/microbiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/microbiology.jpg -------------------------------------------------------------------------------- /src/images/nurse-landing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/nurse-landing.jpeg -------------------------------------------------------------------------------- /src/images/nurse-landing1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/nurse-landing1.jpg -------------------------------------------------------------------------------- /src/images/nurse-landing2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/nurse-landing2.jpg -------------------------------------------------------------------------------- /src/images/nurse-landing3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/nurse-landing3.jpg -------------------------------------------------------------------------------- /src/images/nurse-landing4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/nurse-landing4.jpg -------------------------------------------------------------------------------- /src/images/optimum-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/optimum-logo.jpg -------------------------------------------------------------------------------- /src/images/optimum-logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/optimum-logo2.jpg -------------------------------------------------------------------------------- /src/images/patient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/patient.svg -------------------------------------------------------------------------------- /src/images/pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/pharmacy.svg -------------------------------------------------------------------------------- /src/images/pscprime_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/pscprime_logo.jpg -------------------------------------------------------------------------------- /src/images/pscprime_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/pscprime_logo.png -------------------------------------------------------------------------------- /src/images/pscprime_logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/pscprime_logo2.jpg -------------------------------------------------------------------------------- /src/images/pscprime_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/pscprime_logo2.png -------------------------------------------------------------------------------- /src/images/send_invite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/send_invite.svg -------------------------------------------------------------------------------- /src/images/simpleCollection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/simpleCollection.jpg -------------------------------------------------------------------------------- /src/images/steth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/steth.jpg -------------------------------------------------------------------------------- /src/images/sudoEMR...png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/sudoEMR...png -------------------------------------------------------------------------------- /src/images/sudoEMR..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/sudoEMR..png -------------------------------------------------------------------------------- /src/images/sudoEMR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/sudoEMR.png -------------------------------------------------------------------------------- /src/images/thank_you.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/thank_you.svg -------------------------------------------------------------------------------- /src/images/undraw_questions_75e0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/undraw_questions_75e0.svg -------------------------------------------------------------------------------- /src/images/undraw_sleep_analysis_o5f9 (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/undraw_sleep_analysis_o5f9 (1).svg -------------------------------------------------------------------------------- /src/images/x-ray-scan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/x-ray-scan.jpg -------------------------------------------------------------------------------- /src/images/ygewvimy_prime.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/images/ygewvimy_prime.sql -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/index.js -------------------------------------------------------------------------------- /src/redux/actions/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/account.js -------------------------------------------------------------------------------- /src/redux/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/actionTypes.js -------------------------------------------------------------------------------- /src/redux/actions/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/admin.js -------------------------------------------------------------------------------- /src/redux/actions/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/api.js -------------------------------------------------------------------------------- /src/redux/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/app.js -------------------------------------------------------------------------------- /src/redux/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/auth.js -------------------------------------------------------------------------------- /src/redux/actions/diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/diagnosis.js -------------------------------------------------------------------------------- /src/redux/actions/doctor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/doctor.js -------------------------------------------------------------------------------- /src/redux/actions/facility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/facility.js -------------------------------------------------------------------------------- /src/redux/actions/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/firebase.js -------------------------------------------------------------------------------- /src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/index.js -------------------------------------------------------------------------------- /src/redux/actions/lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/lab.js -------------------------------------------------------------------------------- /src/redux/actions/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/maintenance.js -------------------------------------------------------------------------------- /src/redux/actions/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/notifications.js -------------------------------------------------------------------------------- /src/redux/actions/pharmacy-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/pharmacy-old.js -------------------------------------------------------------------------------- /src/redux/actions/pharmacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/pharmacy.js -------------------------------------------------------------------------------- /src/redux/actions/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/records.js -------------------------------------------------------------------------------- /src/redux/actions/result-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/result-viewer.js -------------------------------------------------------------------------------- /src/redux/actions/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/services.js -------------------------------------------------------------------------------- /src/redux/actions/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/shop.js -------------------------------------------------------------------------------- /src/redux/actions/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/transactions.js -------------------------------------------------------------------------------- /src/redux/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/actions/types.js -------------------------------------------------------------------------------- /src/redux/reducers/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/account.js -------------------------------------------------------------------------------- /src/redux/reducers/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/admin.js -------------------------------------------------------------------------------- /src/redux/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/app.js -------------------------------------------------------------------------------- /src/redux/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/auth.js -------------------------------------------------------------------------------- /src/redux/reducers/diagnosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/diagnosis.js -------------------------------------------------------------------------------- /src/redux/reducers/doctor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/doctor.js -------------------------------------------------------------------------------- /src/redux/reducers/facility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/facility.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/lab.js -------------------------------------------------------------------------------- /src/redux/reducers/maintenance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/maintenance.js -------------------------------------------------------------------------------- /src/redux/reducers/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/notifications.js -------------------------------------------------------------------------------- /src/redux/reducers/pharmacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/pharmacy.js -------------------------------------------------------------------------------- /src/redux/reducers/records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/records.js -------------------------------------------------------------------------------- /src/redux/reducers/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/results.js -------------------------------------------------------------------------------- /src/redux/reducers/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/services.js -------------------------------------------------------------------------------- /src/redux/reducers/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/shop.js -------------------------------------------------------------------------------- /src/redux/reducers/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/reducers/transactions.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/routes/AuthWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/routes/AuthWrapper.js -------------------------------------------------------------------------------- /src/routes/AuthenticatedContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/routes/AuthenticatedContainer.js -------------------------------------------------------------------------------- /src/routes/PatientWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/routes/PatientWrapper.js -------------------------------------------------------------------------------- /src/routes/PublicNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/routes/PublicNav.js -------------------------------------------------------------------------------- /src/routes/PublicWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/routes/PublicWrapper.js -------------------------------------------------------------------------------- /src/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/styles/App.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/styles/styles.css -------------------------------------------------------------------------------- /src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/src/webpack.config.js -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyLikita-Health/sudoEMR/HEAD/start.sh --------------------------------------------------------------------------------