@stssocialst-stp/fe-admin 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,13 @@
1
+ The program users must agree to the following terms:
2
+
3
+ License notices
4
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License.
5
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org.
6
+
7
+ Disclaimer of Warranty
8
+ There is no warranty for the program, to the extent permitted by applicable law; except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction.
9
+
10
+ Limitation of Liability
11
+ In no event unless required by applicable law or agreed to in writing will any copyright holder, or any other party who modifies and/or conveys the program as permitted above, be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if such holder or other party has been advised of the possibility of such damages.
12
+
13
+ In case of dispute arising out or in relation to the use of the program, it is subject to the public law of Switzerland. The place of jurisdiction is Berne.
package/README.md ADDED
@@ -0,0 +1,69 @@
1
+ # openIMIS Frontend Administration reference module
2
+ This repository holds the files of the openIMIS Frontend Administration reference module.
3
+ It is dedicated to be deployed as a module of [openimis-fe_js](https://github.com/openimis/openimis-fe_js).
4
+
5
+ [![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
6
+ [![Total alerts](https://img.shields.io/lgtm/alerts/g/openimis/openimis-fe-admin_js.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/openimis/openimis-fe-admin_js/alerts/)
7
+
8
+ ## Main Menu Contributions
9
+ * **Administration** (admin.mainMenu translation key) main menu entry
10
+
11
+ **Products** (admin.menu.products translation key) main menu entry
12
+
13
+ **Health Facilities** (admin.menu.healthFacilities translation key) main menu entry
14
+
15
+ **Medical Services Price List** (admin.menu.medicalServicesPrices translation key) main menu entry
16
+
17
+ **Medical Items Price List** (admin.menu.medicalItemsPrices translation key) main menu entry
18
+
19
+ **Medical Services** (admin.menu.medicalServices translation key) main menu entry
20
+
21
+ **Medical Items** (admin.menu.medicalItems translation key) main menu entry
22
+
23
+ **Users** (admin.menu.users translation key) main menu entry
24
+
25
+ **Users Profiles** (admin.menu.usersProfiles translation key) main menu entry
26
+
27
+ **Enrollment Officers** (admin.menu.enrollmentOfficers translation key) main menu entry
28
+
29
+ **Claim Administrators** (admin.menu.claimAdministrators translation key) main menu entry
30
+
31
+ **Payers** (admin.menu.payers translation key) main menu entry
32
+
33
+ **Locations** (admin.menu.locations translation key) main menu entry
34
+
35
+ ## Other Contributions
36
+ * `core.Router`: registering all `admin/*` routes to corresponding proxy pages in client-side router
37
+
38
+ ## Proxy Pages
39
+ * `FindProduct.aspx`
40
+ * `FindHealthFacility.aspx`
41
+ * `FindPriceListMS.aspx`
42
+ * `FindPriceListMI.aspx`
43
+ * `FindMedicalService.aspx`
44
+ * `FindMedicalItem.aspx`
45
+ * `FindUser.aspx`
46
+ * `FindProfile.aspx`
47
+ * `FindOfficer.aspx`
48
+ * `FindClaimAdministrator.aspx`
49
+ * `FindPayer.aspx`
50
+ * `Locations.aspx`
51
+
52
+ ## Available Contribution Points
53
+ * `admin.MainMenu`: ability to add entries within the main menu entry
54
+
55
+ ## Published Components
56
+ None
57
+
58
+ ## Dispatched Redux Actions
59
+ None
60
+
61
+ ## Other Modules Listened Redux Actions
62
+ None
63
+
64
+ ## Other Modules Redux State Bindings
65
+ * `state.core.user`, to access user info (rights,...)
66
+
67
+ ## Configurations Options
68
+ - `passwordGeneratorOptions`, array with possible configuration options, default:{ length: 10, isNumberRequired: true,
69
+ isLowerCaseRequired: true, isUpperCaseRequired: true, isSpecialSymbolRequired: true }