..
Atlas of Information Management
Copyright (C) 2020 Riverside Healthcare, Kankakee, IL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
***********
Development
***********
About the Web UI
================
The app is built using C# Razor Pages, HTML, CSS and Javascript.
The app is currently using SQL Server, with a "database first" model.
Database
==========
The database can be created by running the script "Data Governance WebaApp/DatabaseCreationScript.sql".
Updates to the database are pulled in with the following scafold commmand:
.. code:: bash
# after running this commande we need to manually delete connection string from db context file
Scaffold-DbContext "Server=rhbidb01;Database=atlas;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models -force -Context Atlas_WebContext -Namespace Atlas_Web.Models
Upon DB changes the file "webapp/DatabaseCreationScript.sql" should be updated. This can be done in SSMS by right clicking the db > clicking tasks > script database.
Customizations for a model are created in the model/customizations/ folder.
CSS
==========
Attempt made to follow wise guidance from www.maintainablecss.com. :smile:
There is a primary css file (``main.min.css``) containing items used on ever page (or could be used on every page, like search), this is loaded immediately. There is a secondary css file (``differed.min.css``) that is loaded async. The visible stuff on the page should not rely on this file - it should contain animations, hidden items, etc.
Any page specific css can be inlined.
Javascript
==========
Javascript is broken up in to mini self executing functions. These are compliled into a few files -
* a primary file that contains only what is required to render all pages correctly
* a utility file containing functions required on all pages, but not used during render
* many smalll files with functions used for "fancy features" that are loaded "as needed"
* a unique files containing code only used in one section of the site. These files are then either lazy loaded or inlined into the page, depending on when they are required
In order to lazyload javascript and still keep the file version identifier we use a textarea and then load the contents of it as scripts.
Place any scripts to lazyload inside ```` tags.
Tabs
====
A typical tab layout -
.. code :: html
Contents of Tab One
Contents of Tab Two
Tables
======
A table is created using this syntax - classes are optional.
.. code :: html