This frontend application contains two high-level business objectives: Community Investment Opportunities Tool, and Community Information Tool.
The Community Investment Opportunity Tool is a place where Economic Development Officers (EDO) can go to post possible investment opportunities for their respective communities. This tool includes a user authenticated portion where EDO's can go to see their currently posted investment opportunities as well as to post new ones. It also includes a public facing view where possible investors can go to see all the currently available opportunities in the province or narrow down the opportunities on a set of filterable criteria.
This is an embedded PowerBI report in addition to a home page and web interface. The home page allows a user to choose to view the public report or to use their IDIR to log in to view the internal report. A logged in user has the option to view either the internal report or the public report. The data viewing functionality is implemented in the PowerBI environment. The web interface allows a user to Save to PDF (or print) the currently selected report page as well as to create and copy to clipboard a link to the Tool for a specific community or regional district.
- Copy environment variables
cp .env.template .env
# create a public/static/env.js from the template with the appropriate env variables
# Or run the following if you are on linux
envsubst < public/static/env.template.js > public/static/env.js && exec nginx -g 'daemon off;'
-
Start all CIT docker containers, most importantly
cit-api
andcit-db
. -
Setting up a local keycloak is an option for developing new user personas
- Navigate to keycloak instance: https://localhost:8080
- Follow this article to set up realm and client.
- Start up the frontend
-
There are two ways to start the frontend application depending on development purposes.
yarn start
on the command line is highly recommended for fast development iteration, through hot-module reloading.docker-compose up -d cit-web
is another way to instantiate the application more statically.
In the project directory, you can run:
Runs the app in the development mode.\ Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.\ You will also see any lint errors and warnings in the console.
Launches the test runner in the interactive watch mode.\ See the section about running tests for more information.
Builds the app for production to the build
folder.\ It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\ Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject
, you can't go back!
If you aren't satisfied with the build tool and configuration choices, you can eject
at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject
will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use eject
. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
Starts a local storybook on port 6006.
Builds a portable storybook distribution.
Runs ESLint on all files and outputs any warnings and errors to the console.
Runs ESLint on all files and automatically fixes any errors found.
mocks
- scripts to mock objects in unit tests.
components
- visual components and pages in the application.
constants
- constants strings and numbers shared across application components.
contexts
- context like authorization, shared across application components.
hooks
- component-specific code chunks, intended to match react life cycles.
layouts
- User authentication layout, for reuse in the page design.
store
- React redux store files.
stories
- storybook assets.
utils
- User authentication page wrappers, for reuse in the router.
- Hot module reloading with
yarn start
doesn't always bust the build files in the browser. Known areas to refresh the page on an edit is the redux store files insrc/store/
. - Environment variables must both be entered in .env and src/public/static/env.js for the application to run
- Using
npx generate-react-cli component MyNewComponent
you can save time creating files, read more about the tool here: https://www.npmjs.com/package/generate-react-cli