Skip to content

Angular Materialize front end for data visualization & reporting

License

Notifications You must be signed in to change notification settings

pfitzpaddy/ngm-reportHub

Repository files navigation

Reporting Workflow. Decision Support. Real-Time.

Developer documentation for ReportHub modules

Notes

Objective

  • Build kobo reporting tool as module in ReportHub

Solution

  1. Create Kobo form i.e. example

Notes

  • The kobo form will need to use the theme-grid pages style defined in the settings tab.
  • See the xlsForm Standards for more details.

ReportHub db Connection

  • In order to create a new database, ReportEngine requires a database connection string (once ReportHub is installed).

Steps

  1. Update /home/ubuntu/nginx/www/ngm-reportEngine/config/local.js. i.e. example
  2. Include the following config object in addition to the existing database connections to establish a new Mongo database with sailsjs
		ngmiMMAPServer: {
			adapter: 'sails-mongo',
			host: 'localhost',
			port: 27017,
			// user: 'username',
			// password: 'password',
			database: 'ngmiMMAP',
			schema: false
		},
  1. Make iMMAP/Reporting folder structure in models

Notes

  • Inside models are the schema (as json files) that will be created in the ngmiMMAP database as Mongo Collections when you use the Waterline ORM syntax to Create, Read, Update, Delete (CRUD) in controllers.

Kobo Processing APIs

  • The monthly report processing script will be an API that fetches Kobo API data for the Monthly Report form and processes it into standardised data tables.

Steps

  1. Create branch in ngm-reportEngine folder git checkout -b feature-monthly-reporting
  2. Create project folder iMMAP/Reporting in controllers
  3. Processing script in iMMAP/Reporting sample
  4. Routes to access the script to make it RestFULL. i.e. routes
  5. Resulting tables required to store the processed data need to be added as model. i.e. models

Notes

  • You will need to configure KOBO connection params in /home/ubuntu/nginx/www/ngm-reportEngine/config/kobo.js.

ReportHub Dashboard APIs for Kobo

  • Create indicators and stats from the database available as RestFULL APIs.

Steps

  1. Processing script in iMMAP/Reporting i.e. sample
  2. Routes to access the script to make it RestFULL. i.e. routes

ReportHub Dashboard Config

  • The dashboard page will require a route that will load a dashboard configuration

Steps

App

  1. Create immap folder in modules
  2. Define app.js in immap folder.
  3. Create base routes inimmap/app.js as i.e. sample
.when( '/immap/reporting/monthly', {
	templateUrl: '/views/app/dashboard.html',
	controller: 'DashboardiMMAPReportingMonthlyCtrl',
	resolve: {
		access: [ 'ngmAuth', function(ngmAuth) {
			return ngmAuth.grantPublicAccess();
		}],
	}
})
  1. Name module in app.js as ngmiMMAP
  2. Add ngmiMMAP into the main app.js file

Dashboard

  1. Create reporting folder in modules/immap folder
  2. Create dashboards folder in above modules/immap/reporting folder
  3. Create dashboard.immap.reporting.monthly.js file in above modules/immap/reporting/dashboards folder
  4. Name module in dashboard.immap.reporting.monthly.js as DashboardiMMAPReportingMonthlyCtrl file in above modules/immap/reporting folder
  5. Create dashboard configuration i.e. sample

Index

  1. Add all scripts into app/index.html
<!-- iMMAP -->
<script src="scripts/modules/immap/app.js"></script>
<!-- dashboards -->
<script src="scripts/modules/immap/reporting/dashboards/dashboard.immap.reporting.monthly.js"></script>

On completion

  1. Add all new files into the repository at ngm-reportHub git stage -A
  2. Commit all changes in ngm-reportHub git commit -m "Feature: New dashboard page for monthly reporting" -a

Notes

  • Test the URL before making changes to the configuration
  • if you get lost just copy the other examples in modules

Team Landing Page

  • Make a landing splash page in HTML that will load for the iMMAP team members.

Steps

  1. Create branch in ngm-reportHub git checkout -b feature-monthly-reporting

Page View

  1. In modules/immap folder create views folder
  2. in modules/immap/views folder create immap.landing.html
  3. Create HTML template with cards as Monthly Report, Training Report and Dashboards i.e. sample

Page Controller

  1. modules/immap folder create pages folder
  2. modules/immap/pages folder create immap.landing.js file i.e. sample
  3. Update controller name to iMMAPLandingCtrl
  4. in controller update line 53 to the HTML Page View above /scripts/modules/reporting/immap/views/immap.landing.html

Page Route

  1. Create route in modules/immap/app.js as
.when( '/immap', {
	templateUrl: '/views/app/dashboard.html',
	controller: 'iMMAPLandingCtrl',
	resolve: {
		access: [ 'ngmAuth', function(ngmAuth) {
			return ngmAuth.isAuthenticated();
		}]
	}
})

Index 10. Add all scripts into app/index.html

<!-- IMMAP -->
<! -- OTHER IMMAP FILES -->
<!-- pages -->
<script src="scripts/modules/immap/pages/immap.landing.js"></script>

Notes

  • Test the URL before making changes to the configuration
  • If you get lost just copy the other examples in modules

About

Angular Materialize front end for data visualization & reporting

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published