raw-radar
v1.1.0
Published
A component to render a radar visualization consisting of rings, sections and entries. Based on the Radar-Element component by Felix Thiele
Downloads
17
Maintainers
Readme
raw-radar
A component to easily generate and creating tech-, trend- or a whatever-radar. You can customize sections, rings and entries in this radar. The radar can be set with an auto-scaling feature or fixed diameter
Original plugin (Felix Thiele) can be found here: https://www.npmjs.com/package/radar-element https://github.com/felixthiele/radar-element
Installation
npm i raw-radar
Usage
<script type="module">
import 'radar-element';
</script>
<radar-element diameter="800"></radar-element>
<script>
const rings = JSON.stringify([...]);
const sections = JSON.stringify([...]);
const entries = JSON.stringify([...]);
const radar = document.getElementsByTagName("radar-element")[0];
radar.setAttribute("ring-configs", rings);
radar.setAttribute('section-configs', sections);
radar.setAttribute('entry-configs', entries);
radar.addEventListener('entry-mouseover', function(e) {...})
radar.addEventListener('entry-mouseout', function() {...});
radar.addEventListener('entry-click', function() {...});
</script>
Overview
The radar element is designed to be lightweight and easy to setup.
Domain
When drawing a radar we split the whole circle into different parts, mainly rings and sections.
A ring depicts the maturity (or whatever scale the user of the radar chooses) while sections partition the entries into categories. We call the overlap between a ring and section a segment. On those segments we position the entries.
Structure
The application is structured as follows:
/
/demo
/index.html - a simple page to integrate the element to for testing purposes
/src
/domain - contains the domain objects
/generators - contains pure functions that generate SVG or HTML code based on input parameters
/utils - basic math and svg utilities
/RadarElements.ts - the backing class for the web component implementation
test
/generators - contains tests for the generators
/utils - contains tests for the utils
/radar-element.ts - contains test for the web-component
/index.ts - the entry point if this whole package is included via npm
Some standard files (like LICENSE
, or package.json
) are omitted for brevity.
Run locally with with web-dev-server
Install dependencies
npm install
Run the server
npm run start
This will serve the basic demo located in demo/index.html
.
Linting with ESLint, Prettier, and Types
To scan the project for linting errors, run
npm run lint
You can lint with ESLint and Prettier individually as well
npm run lint:eslint
npm run lint:prettier
To automatically fix many linting errors, run
npm run format
You can format using ESLint and Prettier individually as well
npm run format:eslint
npm run format:prettier
Testing with web-test-runner
To run the suite of Web Test Runner tests, run
npm run test
To run the tests in watch mode run
npm run test:watch
Tooling configs
For most of the tools, the configuration is in the package.json
to reduce the amount of files in your project.
License
MIT License
Copyright (c) 2023 Vincent Brand ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.