I do no longer actively maintain this code base. I have archived it; this means you can still inspect it and check it out. Take care: the ideas on which I have initially built this project may now be outdated.
The code in this repo is NOT production grade anymore. Its primary purpose has been learning React and Typescript concepts. I have been running it in production myself, but I had additional security measures in place back then.
You can in no way hold me liable for damage caused directly or indirectly by using this code; see also the license.
This is the web front-end to Hyperion. Hyperion is an application to monitor a 'Smart Meter' that follows the Dutch "Smart Meter" Requirements, or DSMR for short.
There are two ways to build the Hyperion frontend.
Just run
npm install
API_HOST=http://your-hyperion-instance npm run start
Just run
npm install
npm run build
Hyperion Web is written in TypeScript using the React library.
The code is structured according to the "Presentational and Container Components" pattern.
In short, there are two main classes of React components:
- Container components.
- Are concerned with how things work.
- May contain both presentational and container components** inside but usually don’t have any DOM markup of their own except for some wrapping divs, and never have any styles.
- Provide the data and behavior to presentational or other container components.
- Call Flux actions and provide these as callbacks to the presentational components.
- Are often stateful, as they tend to serve as data sources.
- Are usually generated using higher order components such as
connect()
from React Redux,createContainer()
from Relay, orContainer.create()
from Flux Utils, rather than written by hand. - Examples: UserPage, FollowersSidebar, StoryContainer, FollowedUserList.
- Presentational components.
- Are concerned with how things look.
- May contain both presentational and container components** inside, and usually have some DOM markup and styles of their own.
- Often allow containment via this.props.children.
- Have no dependencies on the rest of the app, such as Flux actions or stores.
- Don’t specify how the data is loaded or mutated.
- Receive data and callbacks exclusively via props.
- Rarely have their own state (when they do, it’s UI state rather than data).
- Are written as functional components unless they need state, lifecycle hooks, or performance optimizations.
- Examples: Page, Sidebar, Story, UserInfo, List.
Hyperion Web is licensed under the MIT License. See the LICENSE
file for details.