@momentum-design/widgets v1.0.0-alpha.18
@momentum-design/widgets
A pure library based on web components and chart.js that is for building dashboards which can be used in any front-end framework.
All examples in website are using the JSX and online code editor to render widgets in real time.
Installation
umd
The UMD build is also available on unpkg.com:
<link rel="stylesheet" href="https://unpkg.com/@momentum-design/widgets/dist/widgets.css" />
<script src="https://unpkg.com/@momentum-design/widgets/dist/widgets.umd.js"></script>Then you can find the library on window.mdw.
npm
NPM is the easiest and fastest way to get started using this library. It is also the recommended installation method when building single-page applications (SPAs). It pairs nicely with a CommonJS module bundler such as Webpack.
# latest stable
$ npm i @momentum-design/widgetsUse with Angular
Import library and enable web component support in src/app/app.module.ts.
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; +import '@momentum-design/widgets'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent, ], imports: [ BrowserModule ], providers: [], bootstrap: [AppComponent], + schemas: [CUSTOM_ELEMENTS_SCHEMA] }) export class AppModule { }Use the components in your HTML template.
<mdw-chart type="pie" data='{ "Alabama": 13, "Colorado": 17, "Arizona": 8, "Vermont": 10, "South Carolina": 40 }' ></mdw-chart>
Contributing
Prerequisites
- Install Node.js which includes Node Package Manager. We recommend to use version 16 and above.
Steps to Start
Clone this repo.
Install all dependencies via run command
npm run init.Now, run
npm startto start your work.The component code should be placed to src/components. The new component should be structured as below:
new-component ├─ index.ts // should export all public members ├─ new-component.ts // the component code ├─ new-component.spec.ts // unit tests ├─ new-component.types.ts // all types definitions └─ new-component.plugins.ts // plugins of chart.js if needThe style file should be placed with component code and imported in src/styles/main.scss.
Also export the new component in src/components/index.ts file.
The internal folder dependency should be as below. That means we should not import anything from core folder into types folder or components into core folder.
components ─⫸ core ─⫸ types
Commit your changes and push them to your forked repo, and submit a Pull Request to main branch.
Styles Guides
- Names
- Use
PascalCasefor type names. - Do not use
Ias a prefix for interface names. - Use
PascalCasefor enum values. - Use
camelCasefor function names. - Use
camelCasefor property names and local variables. - Do not use
_as a prefix for private properties. - Use whole words in names when possible.
- Use
CONSTANT_CASEfor the constants that is immutable.
- Use
- Names
Commit Message Guidelines
All commit message MUST follow Angular Commit Message Format.
Format as:
<type>(<scope>): <short summary>
│ │ │
│ │ └─⫸ Summary in present tense. Not capitalized. No period at the end.
│ │
│ └─⫸ Commit Scope: <component-name>
│
└─⫸ Commit Type: build|ci|docs|feat|fix|perf|refactor|testThe <type> and <summary> fields are mandatory, the (<scope>) field is optional.
Useful Commands
npm run datawill print the random data which is predefined in ./tools/data.ts and can be used to test your component. For example,npm run data -- --pie --default --5,npm run data -- --number --10to get 10 random numbers.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago