Skip to content

Commit c0ce37c

Browse files
committed
Release 2.2.0
1 parent ba6a52b commit c0ce37c

17 files changed

+9967
-554
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Change Log
22

3+
## [2.2.0](https://github.com/danielcaldas/react-d3-graph/tree/2.2.0)
4+
5+
[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.1.0...2.2.0)
6+
7+
**Fixed bugs:**
8+
9+
- Drag&Drop does not work for leaf nodes after collapsing and _"uncollapsing"_ [\#223](https://github.com/danielcaldas/react-d3-graph/issues/223)
10+
- \[Sandbox\] Fail to remove links / nodes in the live demo example [\#212](https://github.com/danielcaldas/react-d3-graph/issues/212)
11+
- Error clicking nodes composed of `mdi-react` icons [\#201](https://github.com/danielcaldas/react-d3-graph/issues/201)
12+
13+
**Closed issues:**
14+
15+
- link.renderLabel is not true by default [\#210](https://github.com/danielcaldas/react-d3-graph/issues/210)
16+
- onDoubleClickNode [\#194](https://github.com/danielcaldas/react-d3-graph/issues/194)
17+
18+
**Merged pull requests:**
19+
20+
- Fix uncollapsing nodes causes entire graph to be dragged [\#224](https://github.com/danielcaldas/react-d3-graph/pull/224) ([danielcaldas](https://github.com/danielcaldas))
21+
- Fix/allow custom properties to pass on update for links [\#220](https://github.com/danielcaldas/react-d3-graph/pull/220) ([danielcaldas](https://github.com/danielcaldas))
22+
- Feature/new config static graph with drag and drop [\#217](https://github.com/danielcaldas/react-d3-graph/pull/217) ([danielcaldas](https://github.com/danielcaldas))
23+
- Fix/Fail to remove links / nodes in the live demo [\#216](https://github.com/danielcaldas/react-d3-graph/pull/216) ([danielcaldas](https://github.com/danielcaldas))
24+
- Feature/allow pass function in link.label property [\#215](https://github.com/danielcaldas/react-d3-graph/pull/215) ([danielcaldas](https://github.com/danielcaldas))
25+
- Run CI on node 10.14.0 \(additionally\) [\#214](https://github.com/danielcaldas/react-d3-graph/pull/214) ([danielcaldas](https://github.com/danielcaldas))
26+
- Use setState to set highlightedLink [\#213](https://github.com/danielcaldas/react-d3-graph/pull/213) ([danielcaldas](https://github.com/danielcaldas))
27+
28+
**Chore:**
29+
30+
- Supporting spread operator for objects. Moving from [Object.assign()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign).
31+
- Update [cypress](https://github.com/cypress-io/cypress) from `v2.1.0` to `v.3.4.1`.
32+
- Use [UNSAFE_componentWillReceiveProps](UNSAFE_componentWillReceiveProps) instead of `componentWillReceiveProps` (TBD: migrate to [static getDerivedStateFromProps(props, state)
33+
](https://reactjs.org/docs/react-component.html#static-getderivedstatefromprops))
34+
335
## [2.1.0](https://github.com/danielcaldas/react-d3-graph/tree/2.1.0)
436

537
[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.0.2...2.1.0)

CONTRIBUTING.md

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# Contributing
2+
3+
When contributing to this repository, please first discuss the change you wish to make via issue,
4+
email, or any other method with the owners of this repository before making a change.
5+
6+
Please note we have a code of conduct, please follow it in all your interactions with the project.
7+
8+
## Pull Request Process
9+
10+
1. Ensure any install or build dependencies are removed before the end of the layer when doing a
11+
build.
12+
2. Update the [README.md](https://github.com/danielcaldas/react-d3-graph/blob/master/README.md) with details of changes to the interface, this includes new environment
13+
variables, exposed ports, useful file locations and container parameters.
14+
3. Increase the version numbers in any examples files and the [README.md](https://github.com/danielcaldas/react-d3-graph/blob/master/README.md) to the new version that this
15+
Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
16+
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
17+
do not have permission to do that, you may request the second reviewer to merge it for you.
18+
19+
## Code of Conduct
20+
21+
### Our Pledge
22+
23+
In the interest of fostering an open and welcoming environment, we as
24+
contributors and maintainers pledge to making participation in our project and
25+
our community a harassment-free experience for everyone, regardless of age, body
26+
size, disability, ethnicity, gender identity and expression, level of experience,
27+
nationality, personal appearance, race, religion, or sexual identity and
28+
orientation.
29+
30+
### Our Standards
31+
32+
Examples of behavior that contributes to creating a positive environment
33+
include:
34+
35+
- Using welcoming and inclusive language
36+
- Being respectful of differing viewpoints and experiences
37+
- Gracefully accepting constructive criticism
38+
- Focusing on what is best for the community
39+
- Showing empathy towards other community members
40+
41+
Examples of unacceptable behavior by participants include:
42+
43+
- The use of sexualized language or imagery and unwelcome sexual attention or
44+
advances
45+
- Trolling, insulting/derogatory comments, and personal or political attacks
46+
- Public or private harassment
47+
- Publishing others' private information, such as a physical or electronic
48+
address, without explicit permission
49+
- Other conduct which could reasonably be considered inappropriate in a
50+
professional setting
51+
52+
### Our Responsibilities
53+
54+
Project maintainers are responsible for clarifying the standards of acceptable
55+
behavior and are expected to take appropriate and fair corrective action in
56+
response to any instances of unacceptable behavior.
57+
58+
Project maintainers have the right and responsibility to remove, edit, or
59+
reject comments, commits, code, wiki edits, issues, and other contributions
60+
that are not aligned to this Code of Conduct, or to ban temporarily or
61+
permanently any contributor for other behaviors that they deem inappropriate,
62+
threatening, offensive, or harmful.
63+
64+
### Scope
65+
66+
This Code of Conduct applies both within project spaces and in public spaces
67+
when an individual is representing the project or its community. Examples of
68+
representing a project or community include using an official project e-mail
69+
address, posting via an official social media account, or acting as an appointed
70+
representative at an online or offline event. Representation of a project may be
71+
further defined and clarified by project maintainers.
72+
73+
### Enforcement
74+
75+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
76+
reported by contacting the project owner at [[email protected]](mailto:[email protected]). All
77+
complaints will be reviewed and investigated and will result in a response that
78+
is deemed necessary and appropriate to the circumstances. The project team is
79+
obligated to maintain confidentiality with regard to the reporter of an incident.
80+
Further details of specific enforcement policies may be posted separately.
81+
82+
Project maintainers who do not follow or enforce the Code of Conduct in good
83+
faith may face temporary or permanent repercussions as determined by other
84+
members of the project's leadership.
85+
86+
### Attribution
87+
88+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
89+
available at [http://contributor-covenant.org/version/1/4][version]
90+
91+
[homepage]: http://contributor-covenant.org
92+
[version]: http://contributor-covenant.org/version/1/4/

README.md

+9-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# react-d3-graph · [![Build Status](https://travis-ci.org/danielcaldas/react-d3-graph.svg?branch=master&style=flat-square)](https://travis-ci.org/danielcaldas/react-d3-graph)
22

3-
[![npm version](https://img.shields.io/npm/v/react-d3-graph.svg?style=flat-square)](https://www.npmjs.com/package/react-d3-graph) [![probot enabled](https://img.shields.io/badge/probot:stale-enabled-yellow.svg?longCache=true&style=flat-square)](https://probot.github.io/) [![trello](https://img.shields.io/badge/trello-board-blue.svg?longCache=true&style=flat-square)](https://trello.com/b/KrnmFXha/react-d3-graph)
4-
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
3+
[![npm version](https://img.shields.io/npm/v/react-d3-graph.svg?style=flat-square)](https://www.npmjs.com/package/react-d3-graph) [![probot enabled](https://img.shields.io/badge/probot:stale-enabled-yellow.svg?longCache=true&style=flat-square)](https://probot.github.io/) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
54

65
[![npm](https://img.shields.io/npm/dw/react-d3-graph.svg?style=flat-square)](https://www.npmjs.com/package/react-d3-graph)
76
[![npm](https://img.shields.io/npm/dt/react-d3-graph.svg?style=flat-square)](https://www.npmjs.com/package/react-d3-graph)
@@ -14,6 +13,12 @@
1413

1514
[![react-d3-graph gif sample](https://github.com/danielcaldas/react-d3-graph/blob/master/sandbox/rd3g_v2.gif?raw=true)](https://danielcaldas.github.io/react-d3-graph/sandbox/index.html)
1615

16+
## Donations
17+
18+
If you enjoy this library, please consider [supporting me](https://paypal.me/DanielCaldas321) for developing and maintaining it.
19+
20+
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://paypal.me/DanielCaldas321)
21+
1722
## Playground
1823

1924
[Here a live playground](https://danielcaldas.github.io/react-d3-graph/sandbox/index.html) page where you can interactively config your own graph, and generate a ready to use configuration! :sunglasses:
@@ -134,20 +139,11 @@ const onMouseOutLink = function(source, target) {
134139
/>;
135140
```
136141

137-
## Roadmap :railway_track:
138-
139-
Want to know what's ahead for react-d3-graph? Or simply curious on what comes next and stuff that is under development?
140-
Check [this trello board](https://trello.com/b/KrnmFXha/react-d3-graph) where everything related to react-d3-graph is managed.
141-
142142
## Contributions
143143

144-
Contributions are welcome fell free to submit new ideas/features, just open an issue or send me an email or something. If you are more a _hands on_ person, just submit a pull request.
145-
146-
## Donation
144+
Contributions are welcome fell free to submit new ideas/features, just open an issue or send me an email or something. If you are more a _hands on_ person, just submit a pull request. Before jumping into coding, please take at the contribution guidelines [CONTRIBUTING.md](https://github.com/danielcaldas/react-d3-graph/blob/master/CONTRIBUTING.md).
147145

148-
Using _react-d3-graph_ and want to help the project grow with new features or simply want to say thank you? You can always buy me a cup of coffee ☕☕☕
149-
150-
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://paypal.me/DanielCaldas321)
146+
To run react-d3-graph in development mode you just need to run `npm run dev` and the interactive sandbox will reload with the changes to the library code, that way you can test your changes not only through unit test but also through a real life example. It's that simple.
151147

152148
## Alternatives (Not what you where looking for?)
153149

docs/0.3.0.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/0.4.0.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/1.0.0.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/1.0.1.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/1.2.0.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/1.2.2.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/1.3.0.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3131
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3232
<h5>Versions</h5>
3333
<ul>
34-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
34+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
35+
<li><a href="./2.1.0.html">2.1.0</a></li>
3536
<li><a href="./2.0.2.html">2.0.2</a></li>
3637
<li><a href="./1.3.0.html">1.3.0</a></li>
3738
<li><a href="./1.2.2.html">1.2.2</a></li>

docs/2.0.2.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
3030
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
3131
<h5>Versions</h5>
3232
<ul>
33-
<li><a href="./index.html">2.1.0 (latest) 🚀</a></li>
33+
<li><a href="./index.html">2.2.0 (latest) 🚀</a></li>
34+
<li><a href="./2.1.0.html">2.1.0</a></li>
3435
<li><a href="./2.0.2.html">2.0.2</a></li>
3536
<li><a href="./1.3.0.html">1.3.0</a></li>
3637
<li><a href="./1.2.2.html">1.2.2</a></li>

0 commit comments

Comments
 (0)