Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eclipse-cdt-cloud/timeline-chart
A timeline / gantt chart library for large data (e.g. traces)
https://github.com/eclipse-cdt-cloud/timeline-chart
eclipse eclipse-foundation javascript npm timeline-chart trace trace-visualization typescript
Last synced: 7 days ago
JSON representation
A timeline / gantt chart library for large data (e.g. traces)
- Host: GitHub
- URL: https://github.com/eclipse-cdt-cloud/timeline-chart
- Owner: eclipse-cdt-cloud
- License: mit
- Created: 2018-10-23T11:47:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-02T15:45:16.000Z (21 days ago)
- Last Synced: 2024-12-02T15:55:19.297Z (21 days ago)
- Topics: eclipse, eclipse-foundation, javascript, npm, timeline-chart, trace, trace-visualization, typescript
- Language: TypeScript
- Size: 4.6 MB
- Stars: 27
- Watchers: 17
- Forks: 32
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Time Graph - Developer's README
[![Gitpod - Code Now][gitpod-icon-small]][gitpod-link]
[![Build Status][build-status-icon]][build-status-link]A time graph / gantt chart library for large data (e.g. traces)
## Prerequisites
First, you need Node.js and yarn:
It's suggested to install [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) to manage node on your machine. Once that's done, install the required version:
```bash
nvm install 18
# optional: make it the default version
nvm alias default
# or set it every time like so
nvm use 18
```Then install `yarn`:
```bash
npm i -g yarn # the default version should be ok
```# Build
To build, from the root type `yarn`
To test an application type `yarn start` then open localhost:8080 on your web browser
[![Open in Gitpod][gitpod-icon-large]][gitpod-link]
**👋 Want to help?** Read our [contributor guide][contributing].
## Documentation
For detailed description of the timeline chart library and it's components see [here][documentation].
## Screenshots
![timeline-chart][screenshot-1]
![timeline-chart][screenshot-2]## Applications
The following list of applications are currently making use of the timeline-chart library;
* [Theia Trace Extension][trace-extension]
* [Example Timeline Application][sample-app]## Tests
Tests can be executed from the root of the project with:
```shell
yarn test
```Or from `./timeline-chart`, where the tests outputs are formatted in a more readable way:
```shell
cd timeline-chart
yarn test --verbose --watch
```### Performance tests
Developers can use unit tests to measure the performance improvement of their changes. The following section is a quick guide on how to set up unit tests.
#### Set up
The `TimeGraphPerformanceTest` is a class that conveniently creates a timeline chart for performance tests. To construct a chart for testing, trace data and its corresponding view range is required. The class provides some methods that return important test data, such as the total length of a trace for assertions. The code is taken from the timeline chart example.
You can view an example [here](./timeline-chart/src/layer/__tests__/time-graph-chart-long-removal-test.ts). In this example, test data are 'packaged' into a single object for better readability.
#### Useful tips
1. The `getTimeGraphChart()` method returns the constructed timeline chart. From here, developers can call any methods that they want to test on the returned chart. If the methods are protected or private, using the `@ts-ignore` annotation will bypass typescript checks.
2. It is important to re-construct the timeline chart before each test to make sure the results are consistent.
3. The tests themselves only print out the results and don't compare them to an actual value, because the threshold depends on the environment it runs. Therefore, make sure to output the performance measurement to the output console, so that it can be viewed once the tests finished running.### Test coverage
The following command prints a coverage report to the terminal. As of now it covers all typescript files of the project, including those that are not supposed to have tests.
```shell
yarn test --coverage --collectCoverageFrom='src/**/*.ts'
```## Release/publish
Publishing of npm package and creating GitHub releases / git tags, all happen on GitHub CI.
### Publish next package
A `next` package is automatically published to `npm` every time a PR is merged.
### publish latest / release
Whenever a new release is desired, including publishing a corresponding `latest` package to `npm`, it can be triggered through a PR. The following has to be done:
Create a new branch for your PR. e.g.
```bash
git branch new-release && git checkout new-release
```Then decide if the release shall be a `Major`, `Minor` or `Patch` release and use the corresponding command below to step packages versions, according to the release type. A new release commit will be created:
``` bash
yarn version:major
# or
yarn version:minor
# or
yarn version:patch
```Modify the _version tag_ in file `./RELEASE`, to match the new release. Amend the release commit to include this change:
```bash
git add RELEASE && git commit --amend
```Finally, push the branch to the main repository (not a fork) and use it to create a PR. When the PR is merged, a GitHub release should be created with auto-generated release notes, as well as a git tag. Then the `publish-latest` CI job should trigger and if everything goes well, publish the new version of the package to `npm`.
[build-status-icon]: https://github.com/eclipse-cdt-cloud/timeline-chart/workflows/CI-CD/badge.svg?branch=master
[build-status-link]: https://github.com/eclipse-cdt-cloud/timeline-chart/actions?query=branch%3Amaster
[contributing]: CONTRIBUTING.md
[documentation]: https://github.com/eclipse-cdt-cloud/timeline-chart/blob/master/doc/documentation.md
[gitpod-icon-large]: https://gitpod.io/button/open-in-gitpod.svg
[gitpod-icon-small]: https://img.shields.io/badge/Gitpod-code%20now-blue.svg?longCache=true
[gitpod-link]: https://gitpod.io#https://github.com/eclipse-cdt-cloud/timeline-chart
[sample-app]: https://github.com/eclipse-cdt-cloud/timeline-chart/blob/master/example/
[screenshot-1]: https://raw.githubusercontent.com/eclipse-cdt-cloud/timeline-chart/master/doc/images/screenshot1-0.0.1.png
[screenshot-2]: https://raw.githubusercontent.com/eclipse-cdt-cloud/timeline-chart/master/doc/images/screenshot2-0.0.1.png
[trace-extension]: https://github.com/eclipse-cdt-cloud/theia-trace-extension