Options[ReactionView]=Join[{ChemicalFormula->True,MoleculePlot->True},Options[Graph]];ReactionView[rxn_PatternReaction,{limiting_Molecule,excess_Molecule},n_Integer:1,opts:OptionsPattern[]]:=Module[{mkArrow,button,edges,products,rxnGraph,rxnStep,tool},{button,tool}=If[OptionValue[MoleculePlot],{MoleculePlot,MoleculePlot3D},{MoleculePlot3D,MoleculePlot}];mkArrow=Function[e,Labeled[e,Tooltip[Button[excess["MolecularFormula"],CopyToClipboard[excess]],tool[excess]]],Listable];rxnStep=Function[reactant,Flatten[ApplyReaction[rxn,{reactant,excess},All]],Listable];edges=EdgeList[NestGraph[rxnStep[#]&,limiting,n]];If[MatchQ[edges,{}],Return[Missing["NoReaction"],Module]];rxnGraph=Graph[If[OptionValue[ChemicalFormula],mkArrow[edges],edges],VertexShape->Map[#->Tooltip[Button[button[#],CopyToClipboard[#]],tool[#]]&,DeleteDuplicates[Flatten[List@@@edges]]],GraphLayout->If[Length[edges]==1,{"LayeredDigraphEmbedding","Orientation"->Left},Automatic],VertexSize->Large];vl=Transpose[{Range[VertexCount[rxnGraph]],VertexList[rxnGraph]}];rxnGraph=IndexGraph[rxnGraph];products=Select[Gather[vl,MoleculeMatchQ[Last[#1],Last[#2]]&][[All,All,1]],Length[#]>1&];SimpleGraph[VertexContract[rxnGraph,products],FilterRules[{opts},Options[Graph]]]]