Skip to content

Commit

Permalink
Backmerge: #2548 – If name of Superatom matches abbreviation in Custo…
Browse files Browse the repository at this point in the history
…m Templates, then tooltip is shown on hover (#2563) (#2565)
  • Loading branch information
Nitvex committed May 2, 2023
1 parent 49cb208 commit 5bd0ce6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
import { FunctionalGroup } from 'ketcher-core'
import { Bond, Struct } from 'ketcher-core'

let showTooltipTimer: ReturnType<typeof setTimeout> | null = null

export const TOOLTIP_DELAY = 300

function makeStruct(editor, sGroup) {
const existingStruct = editor.struct()
const struct = new Struct()
const atomsIdMapping = new Map()

sGroup.atoms.forEach((atomId) => {
const atomIdInTooltip = struct.atoms.add(existingStruct.atoms.get(atomId))
atomsIdMapping.set(atomId, atomIdInTooltip)
})
Array.from(existingStruct.bonds).forEach((value) => {
const [_, bond] = value as [number, Bond]
const clonedBond = bond.clone(atomsIdMapping)
const isInsideSGroup =
sGroup.atoms.includes(bond.begin) || sGroup.atoms.includes(bond.end)
if (isInsideSGroup) {
struct.bonds.add(clonedBond)
}
})

return struct
}

export function showTooltip(editor, infoPanelData) {
editor.event.showInfo.dispatch(null)

Expand All @@ -28,7 +50,8 @@ export function showFunctionalGroupsTooltip(editor) {
const sGroup = editor.struct()?.sgroups.get(closestCollapsibleStructures.id)
if (sGroup && !sGroup.data.expanded && sGroup.hovering) {
const groupName = sGroup.data.name
const groupStruct = FunctionalGroup.getFunctionalGroupByName(groupName)
const groupStruct = makeStruct(editor, sGroup)
groupStruct.name = groupName
infoPanelData = {
groupStruct,
event,
Expand Down
8 changes: 5 additions & 3 deletions packages/ketcher-react/src/script/ui/utils/renderStruct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export class RenderStruct {
options: any = {}
) {
if (el && struct) {
const { cachePrefix = '' } = options
const { cachePrefix = '', needCache = true } = options
const cacheKey = `${cachePrefix}${struct.name}`
if (renderCache.has(cacheKey)) {
if (renderCache.has(cacheKey) && needCache) {
el.innerHTML = renderCache.get(cacheKey)
return
}
Expand All @@ -43,7 +43,9 @@ export class RenderStruct {
})
rnd.setMolecule(preparedStruct)
rnd.update(true, options.viewSz)
renderCache.set(cacheKey, rnd.clientArea.innerHTML)
if (needCache) {
renderCache.set(cacheKey, rnd.clientArea.innerHTML)
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ const InfoPanel: FC<InfoPanelProps> = (props) => {
autoScaleMargin: 0,
rescaleAmount: 1,
cachePrefix: 'infoPanel',
needCache: false,
viewSz: new Vec2(width, height),
width: width,
height: height
Expand Down

0 comments on commit 5bd0ce6

Please sign in to comment.