@complat/chemotion-reaction-svg-composer
v1.1.0
Published
composes svg picture of a reaction out of individual ones and other text components
Downloads
4
Readme
README
Setup
yarn add "reaction-svg-composer"
adjust following files:
ReactionDetails.js
updateReactionSvg() {
const { reaction } = this.state;
ReactionSvgFetcher.fetchByReaction(reaction).then((result) => {
reaction.reaction_svg_file = result.reaction_svg;
this.setState(reaction);
});
}
ReactionSvgFetcher.js
import { ReactionRenderer, DisplayMatrix } from 'reaction-svg-composer';
export default class ReactionSvgFetcher {
static fetchByReaction(elnReaction) {
return ReactionRenderer.convertELNReaction(elnReaction).then((reactionArray) => {
const displayMatrix = DisplayMatrix.createDisplayMatrixFromELNReaction(elnReaction);
const rr = new ReactionRenderer(displayMatrix, reactionArray);
return { reaction_svg: rr.renderReaction() };
});
}
}
ElementActions.js
handleSvgReactionChange(reaction) {
return () => {
ReactionSvgFetcher.fetchByReaction(reaction).then((result) => {
reaction.reaction_svg_file = result.reaction_svg;
});
};
}
Development
to work locally without building navigate into chemotion_eln
npm link reaction-svg-composer
navigate to into reaction-svg-composer and execute
npm link
yarn compile
Acknowledgments
This project has been funded by the DFG.
Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) under the National Research Data Infrastructure – NFDI4Chem – Projektnummer 441958208 since 2020.