molstar
Version:
A comprehensive macromolecular library.
90 lines (89 loc) • 4.51 kB
JavaScript
/**
* Copyright (c) 2019-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.CustomModelProperty = void 0;
const param_definition_1 = require("../../mol-util/param-definition");
const mol_util_1 = require("../../mol-util");
const custom_property_1 = require("../../mol-model/custom-property");
const string_1 = require("../../mol-util/string");
var CustomModelProperty;
(function (CustomModelProperty) {
function createProvider(builder) {
const descriptorName = builder.descriptor.name;
const propertyDataName = builder.type === 'static' ? '_staticPropertyData' : '_dynamicPropertyData';
const get = (data) => {
if (!(descriptorName in data[propertyDataName])) {
data[propertyDataName][descriptorName] = {
props: { ...param_definition_1.ParamDefinition.getDefaultValues(builder.getParams(data)) },
data: mol_util_1.ValueBox.create(undefined)
};
}
return data[propertyDataName][descriptorName];
};
const set = (data, props, value) => {
const property = get(data);
data[propertyDataName][descriptorName] = {
props,
data: mol_util_1.ValueBox.withValue(property.data, value)
};
};
return {
label: builder.label,
descriptor: builder.descriptor,
isHidden: builder.isHidden,
getParams: (data) => {
const params = param_definition_1.ParamDefinition.clone(builder.getParams(data));
param_definition_1.ParamDefinition.setDefaultValues(params, get(data).props);
return params;
},
defaultParams: builder.defaultParams,
isApplicable: builder.isApplicable,
attach: async (ctx, data, props = {}, addRef) => {
if (addRef)
data.customProperties.reference(builder.descriptor, true);
const property = get(data);
const p = param_definition_1.ParamDefinition.merge(builder.defaultParams, property.props, props);
if (property.data.value && param_definition_1.ParamDefinition.areEqual(builder.defaultParams, property.props, p))
return;
const { value, assets } = await builder.obtain(ctx, data, p);
data.customProperties.add(builder.descriptor);
data.customProperties.assets(builder.descriptor, assets);
set(data, p, value);
},
ref: (data, add) => data.customProperties.reference(builder.descriptor, add),
get: (data) => { var _a; return (_a = get(data)) === null || _a === void 0 ? void 0 : _a.data; },
set: (data, props = {}, value) => {
const property = get(data);
const p = param_definition_1.ParamDefinition.merge(builder.defaultParams, property.props, props);
if (!param_definition_1.ParamDefinition.areEqual(builder.defaultParams, property.props, p)) {
// this invalidates property.value
set(data, p, value);
// dispose of assets
data.customProperties.assets(builder.descriptor);
}
},
props: (data) => get(data).props,
};
}
CustomModelProperty.createProvider = createProvider;
function createSimple(name, type, defaultValue) {
const defaultParams = { value: param_definition_1.ParamDefinition.Value(defaultValue, { isHidden: true }) };
return createProvider({
label: (0, string_1.stringToWords)(name),
descriptor: (0, custom_property_1.CustomPropertyDescriptor)({ name }),
isHidden: true,
type,
defaultParams,
getParams: () => ({ value: param_definition_1.ParamDefinition.Value(defaultValue, { isHidden: true }) }),
isApplicable: () => true,
obtain: async (ctx, data, props) => {
return { ...param_definition_1.ParamDefinition.getDefaultValues(defaultParams), ...props };
}
});
}
CustomModelProperty.createSimple = createSimple;
})(CustomModelProperty || (exports.CustomModelProperty = CustomModelProperty = {}));
;