-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
7,377 additions
and
1,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import PropTypes from "prop-types"; | ||
import React, { Suspense, lazy } from "react"; | ||
import Loader from "../next-ui/Components/Loader/Loader"; | ||
|
||
export function CareViewDashboard(props) { | ||
const LazyApp = lazy(() => import("@openmrs-mf/ipd/CareViewDashboard")); | ||
|
||
return ( | ||
<> | ||
<Suspense fallback={<Loader />}> | ||
<LazyApp hostData={props.hostData} hostApi={props.hostApi} /> | ||
</Suspense> | ||
</> | ||
); | ||
} | ||
|
||
// Without propTypes, react2angular won't render the component | ||
CareViewDashboard.propTypes = { | ||
hostData: PropTypes.shape({ | ||
patientId: PropTypes.string, | ||
}).isRequired, | ||
hostApi: PropTypes.shape({ | ||
onHome: PropTypes.func, | ||
}).isRequired, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import PropTypes from "prop-types"; | ||
import React, { Suspense, lazy } from "react"; | ||
import Loader from "../next-ui/Components/Loader/Loader"; | ||
|
||
export function IpdDashboard(props) { | ||
const LazyApp = lazy(() => import("@openmrs-mf/ipd/IpdDashboard")); | ||
|
||
return ( | ||
<> | ||
<Suspense fallback={<Loader />}> | ||
<LazyApp | ||
hostData={props.hostData} | ||
hostApi={props.hostApi} | ||
/> | ||
</Suspense> | ||
</> | ||
); | ||
} | ||
|
||
// Without propTypes, react2angular won't render the component | ||
IpdDashboard.propTypes = { | ||
hostData: PropTypes.object.isRequired, | ||
hostApi: PropTypes.shape({ | ||
navigation: PropTypes.shape({ | ||
visitSummary: PropTypes.func.isRequired, | ||
}).isRequired, | ||
}).isRequired, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Adapt all IPD components to use within angular | ||
"use strict"; | ||
|
||
import { react2angular } from "react2angular"; | ||
import { IpdDashboard } from "./IpdDashboard"; | ||
import { CareViewDashboard } from "./CareViewDashboard"; | ||
|
||
angular.module("bahmni.mfe.ipd", [ | ||
"ui.router", | ||
"bahmni.common.config", | ||
"bahmni.common.uiHelper", | ||
"bahmni.common.i18n", | ||
"bahmni.common.domain", | ||
]); | ||
|
||
/** MFE component 1: IpdDashboard | ||
*================================================= */ | ||
|
||
angular | ||
.module("bahmni.mfe.ipd") | ||
.component("mfeIpdDashboard", react2angular(IpdDashboard), { | ||
template: | ||
'<mfe-ipd-dashboard host-data="hostData" host-api="hostApi"></mfe-ipd-dashboard>' | ||
}); | ||
|
||
/** MFE component 2: CareViewDashboard | ||
*================================================= */ | ||
|
||
angular | ||
.module("bahmni.mfe.ipd") | ||
.component("mfeIpdCareViewDashboard", react2angular(CareViewDashboard), { | ||
template: | ||
'<mfe-ipd-care-view-dashboard host-data="hostData" host-api="hostApi"></mfe-ipd-care-view-dashboard>' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React from 'react'; | ||
import { FormattedMessage } from "react-intl"; | ||
import './Loader.scss'; | ||
|
||
const Loader = () => { | ||
const loadingMessage = ( | ||
<FormattedMessage | ||
id={"LOADING_MESSAGE"} | ||
defaultMessage={"Loading... Please Wait"} | ||
/> | ||
); | ||
return ( | ||
<div className="loader-container"> | ||
<div className="loader-content"> | ||
<div className="lds-spinner"> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
<p className="loader-text">{loadingMessage}</p> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Loader; |
109 changes: 109 additions & 0 deletions
109
micro-frontends/src/next-ui/Components/Loader/Loader.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
.lds-spinner, | ||
.lds-spinner div, | ||
.lds-spinner div:after { | ||
box-sizing: border-box; | ||
} | ||
.lds-spinner { | ||
color: #719898; | ||
display: inline-block; | ||
position: relative; | ||
width: 80px; | ||
height: 80px; | ||
|
||
div { | ||
transform-origin: 40px 40px; | ||
animation: lds-spinner 1.2s linear infinite; | ||
|
||
&:after { | ||
content: " "; | ||
display: block; | ||
position: absolute; | ||
top: 3.2px; | ||
left: 36.8px; | ||
width: 6.4px; | ||
height: 17.6px; | ||
border-radius: 20%; | ||
background: #719898; | ||
} | ||
|
||
&:nth-child(1) { | ||
transform: rotate(0deg); | ||
animation-delay: -1.1s; | ||
} | ||
&:nth-child(2) { | ||
transform: rotate(30deg); | ||
animation-delay: -1s; | ||
} | ||
&:nth-child(3) { | ||
transform: rotate(60deg); | ||
animation-delay: -0.9s; | ||
} | ||
&:nth-child(4) { | ||
transform: rotate(90deg); | ||
animation-delay: -0.8s; | ||
} | ||
&:nth-child(5) { | ||
transform: rotate(120deg); | ||
animation-delay: -0.7s; | ||
} | ||
&:nth-child(6) { | ||
transform: rotate(150deg); | ||
animation-delay: -0.6s; | ||
} | ||
&:nth-child(7) { | ||
transform: rotate(180deg); | ||
animation-delay: -0.5s; | ||
} | ||
&:nth-child(8) { | ||
transform: rotate(210deg); | ||
animation-delay: -0.4s; | ||
} | ||
&:nth-child(9) { | ||
transform: rotate(240deg); | ||
animation-delay: -0.3s; | ||
} | ||
&:nth-child(10) { | ||
transform: rotate(270deg); | ||
animation-delay: -0.2s; | ||
} | ||
&:nth-child(11) { | ||
transform: rotate(300deg); | ||
animation-delay: -0.1s; | ||
} | ||
&:nth-child(12) { | ||
transform: rotate(330deg); | ||
animation-delay: 0s; | ||
} | ||
} | ||
} | ||
|
||
@keyframes lds-spinner { | ||
0% { | ||
opacity: 1; | ||
} | ||
100% { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.loader-container { | ||
font-family: "Arial"; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 80vh; | ||
width: 100vw; | ||
background-color: #fafafa; | ||
} | ||
|
||
.loader-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
.loader-text { | ||
font-size: 16px; | ||
color: #333; | ||
margin: 15px 0 0; | ||
} |
30 changes: 30 additions & 0 deletions
30
micro-frontends/src/next-ui/Components/Loader/Loader.spec.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
import { render } from '@testing-library/react'; | ||
import { IntlProvider } from 'react-intl'; | ||
import renderer from 'react-test-renderer'; | ||
import Loader from './Loader'; | ||
|
||
const messages = { | ||
LOADING_MESSAGE: 'Loading... Please Wait' | ||
}; | ||
|
||
describe('Loader Component', () => { | ||
it('renders loader correctly', () => { | ||
const { getAllByText } = render( | ||
<IntlProvider locale="en" messages={messages}> | ||
<Loader /> | ||
</IntlProvider> | ||
); | ||
|
||
expect(getAllByText("Loading... Please Wait").length).toEqual(1); | ||
}); | ||
|
||
it('matches snapshot', () => { | ||
const tree = renderer.create( | ||
<IntlProvider locale="en" messages={messages}> | ||
<Loader /> | ||
</IntlProvider> | ||
).toJSON(); | ||
expect(tree).toMatchSnapshot(); | ||
}); | ||
}); |
Oops, something went wrong.