123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * Copyright (c) 2020-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { IntraUnitBondLineVisual, IntraUnitBondLineParams } from '../visual/bond-intra-unit-line';
- import { InterUnitBondLineVisual, InterUnitBondLineParams } from '../visual/bond-inter-unit-line';
- import { ParamDefinition as PD } from '../../../mol-util/param-definition';
- import { UnitsRepresentation } from '../units-representation';
- import { ComplexRepresentation } from '../complex-representation';
- import { StructureRepresentation, StructureRepresentationProvider, StructureRepresentationStateBuilder } from '../representation';
- import { Representation, RepresentationParamsGetter, RepresentationContext } from '../../../mol-repr/representation';
- import { ThemeRegistryContext } from '../../../mol-theme/theme';
- import { Structure } from '../../../mol-model/structure';
- import { getUnitKindsParam } from '../params';
- import { ElementPointParams, ElementPointVisual } from '../visual/element-point';
- import { ElementCrossParams, ElementCrossVisual } from '../visual/element-cross';
- import { Points } from '../../../mol-geo/geometry/points/points';
- const LineVisuals = {
- 'intra-bond': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, IntraUnitBondLineParams>) => UnitsRepresentation('Intra-unit bond line', ctx, getParams, IntraUnitBondLineVisual),
- 'inter-bond': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, InterUnitBondLineParams>) => ComplexRepresentation('Inter-unit bond line', ctx, getParams, InterUnitBondLineVisual),
- 'element-point': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, ElementPointParams>) => UnitsRepresentation('Points', ctx, getParams, ElementPointVisual),
- 'element-cross': (ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, ElementCrossParams>) => UnitsRepresentation('Crosses', ctx, getParams, ElementCrossVisual),
- };
- export const LineParams = {
- ...IntraUnitBondLineParams,
- ...InterUnitBondLineParams,
- ...ElementPointParams,
- ...ElementCrossParams,
- pointStyle: PD.Select('circle', PD.objectToOptions(Points.StyleTypes)),
- multipleBonds: PD.Select('offset', PD.arrayToOptions(['off', 'symmetric', 'offset'] as const)),
- includeParent: PD.Boolean(false),
- sizeFactor: PD.Numeric(2, { min: 0.01, max: 10, step: 0.01 }),
- unitKinds: getUnitKindsParam(['atomic']),
- visuals: PD.MultiSelect(['intra-bond', 'inter-bond', 'element-point', 'element-cross'], PD.objectToOptions(LineVisuals))
- };
- export type LineParams = typeof LineParams
- export function getLineParams(ctx: ThemeRegistryContext, structure: Structure) {
- return LineParams;
- }
- export type LineRepresentation = StructureRepresentation<LineParams>
- export function LineRepresentation(ctx: RepresentationContext, getParams: RepresentationParamsGetter<Structure, LineParams>): LineRepresentation {
- return Representation.createMulti('Line', ctx, getParams, StructureRepresentationStateBuilder, LineVisuals as unknown as Representation.Def<Structure, LineParams>);
- }
- export const LineRepresentationProvider = StructureRepresentationProvider({
- name: 'line',
- label: 'Line',
- description: 'Displays bonds as lines and atoms as points or croses.',
- factory: LineRepresentation,
- getParams: getLineParams,
- defaultValues: PD.getDefaultValues(LineParams),
- defaultColorTheme: { name: 'element-symbol' },
- defaultSizeTheme: { name: 'uniform' },
- isApplicable: (structure: Structure) => structure.elementCount > 0,
- getData: (structure: Structure, props: PD.Values<LineParams>) => {
- return props.includeParent ? structure.asParent() : structure;
- },
- mustRecreate: (oldProps: PD.Values<LineParams>, newProps: PD.Values<LineParams>) => {
- return oldProps.includeParent !== newProps.includeParent;
- }
- });
|