Skip to content
Snippets Groups Projects
Unverified Commit eb749a2a authored by David Sehnal's avatar David Sehnal Committed by GitHub
Browse files

State.updateNode fix for Null parents (#807)

parent 6db96001
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ Note that since we don't clearly distinguish between a public and private interf
- Add a uniform color theme for NtC tube that still paints residue and segment dividers in a different color
- Fix bond assignments `struct_conn` records referencing waters
- Fix `PluginState.setSnapshot` triggering unnecessary state updates
- Fix an edge case in the `mol-state`'s `State` when trying to apply a transform to an existing Null object
- Add `SbNcbrPartialCharges` extension for coloring and labeling atoms and residues by partial atomic charges
- uses custom mmcif categories `_sb_ncbr_partial_atomic_charges_meta` and `_sb_ncbr_partial_atomic_charges` (more info in [README.md](./src/extensions/sb-ncbr/README.md))
......
/**
* Copyright (c) 2018-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
* Copyright (c) 2018-2023 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
......@@ -868,13 +868,36 @@ async function updateNode(ctx: UpdateContext, currentRef: Ref): Promise<UpdateNo
const current = ctx.cells.get(currentRef)!;
const transform = current.transform;
// special case for Root
// Special case for Root
if (current.transform.ref === StateTransform.RootRef) {
return { action: 'none' };
}
const treeParent = ctx.cells.get(current.transform.parent);
const isParentNull = treeParent?.obj === StateObject.Null;
// Special case for when the immediate parent is null
// This could happen then manually applying transforms to
// already existing null nudes
if (isParentNull) {
current.sourceRef = treeParent.transform.ref;
if (oldTree.transforms.has(currentRef) && current.params) {
const oldParams = current.params.values;
const oldCache = current.cache;
dispose(transform, current.obj, oldParams, oldCache, ctx.parent.globalContext);
current.params = undefined;
current.obj = StateObject.Null;
return { ref: currentRef, action: 'updated', obj: current.obj! };
} else {
current.params = undefined;
return { ref: currentRef, action: 'created', obj: StateObject.Null };
}
}
const parentCell = transform.transformer.definition.from.length === 0
? ctx.cells.get(current.transform.parent)
? treeParent
: StateSelection.findAncestorOfType(tree, ctx.cells, currentRef, transform.transformer.definition.from);
if (!parentCell) {
throw new Error(`No suitable parent found for '${currentRef}'`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment