-
Notifications
You must be signed in to change notification settings - Fork 20
Home
The props that determine which anatomogram and what parts will be displayed are species
, showIds
, highlightIds
and selectIds
. Changes in other props will not update the anatomogram. This is for behavioural and performance reasons. Please keep reading if you want to know more.
An initial implementation used the aforementioned props only to change the styles of the SVG elements. It’s a more declarative and idiomatic React design, the workflow being:
- Render the SVG applying
showColour
/showOpacity
toshowIds
,highlightColour
/highlightOpacity
tohighlightIds
andselectColour
/selectOpacity
toselectIds
. - Run the callbacks
onMouseOver
,onMouseOut
oronClick
respectively on eventsmouseover
,mouseout
orclick
. - The component that renders
Anatomogram
would hold the state of shown/highlighted/selected IDs and update it using the callbacks. So that e.g.onMouseOver
would add theid
of the SVG element to the highlighted IDs and that would flow down to theAnatomogram
component, updating the appearance of the referenced tissue.
Unfortunately such implementation suffers and makes the anatomogram SVG less snappy: there’s a noticeable lag between the mouse cursor hovering on/off an element and its appearance reacting to the event. Additionally, the <title>
tag isn’t displayed when the cursor stays on the shape. The reason being, presumably, because the event happened over an element which was re-renderd, not on the actual one that’s displayed afterwards. This is a usability concern, as displaying the name of the tissue is a big help for end users.
In summary, some drawing “rules” are applied to the shapes whose IDs are passed in showIds
, highlightIds
and selectIds
, and those props should be used to react to other component’s state or user actions; on the other hand there are some appearance changes performed by the component itself using the DOM API. These are detailed in the next section.
Elements whose IDs are in showIds
are displayed with style="fill: this.props.showColour;opacity: this.props.showOpacity"
and, on mouseover
, changed to style="fill: this.props.highlightColour;opacity: this.props.highlightOpacity"
. Below is an example with the human heart and the default values:
Elements whose IDs are in highlightIds
are displayed with style="fill: this.props.highlightColour;opacity: this.props.highlightOpacity"
and, on mouseover
, changed to style="fill: this.props.highlightColour;opacity: this.props.highlightOpacity + 0.2"
. Below is an example with the human heart and the default values:
Elements whose IDs are in selectIds
are displayed with style="fill: this.props.selectColour;opacity: this.props.selectOpacity"
and, on mouseover
, changed to style="fill: this.props.selectColour;opacity: this.props.selectOpacity + 0.2"
. Below is an example with the human heart and the default values:
There is no modification in appearance on click
. If an ID is present in different props selectIds
and highlightIds
, in that order, will take precedence.
The anatomogram SVG is rendered by react-svg, which in turn uses SVGInjector. The SVG file is loaded asynchronously with an instance of XMLHttpRequest
, therefore there are no guarantees of the SVG file being loaded and ready when componentDidMount
or componentDidUpdate
are run. That’s why all changes to the SVG are carried out using the callback
prop that react-svg
provides.
An example component that tries to capture all the points above can be found in html/AnatomogramDemo.js
. You may see it in action at https://gxa.github.io/anatomogram-demo/index.html or you may run it locally with Webpack: just run webpack-dev-server
and point your browser to http://localhost:9000/html
.
All copyrightable material is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) as detailed in Expression Atlas licence page.
Source code is licensed under an Apache License, Version 2.0.