|
@@ -7,19 +7,19 @@ import { ParamDefinition as PD } from '../../mol-util/param-definition';
|
|
|
import { Location } from '../../mol-model/location';
|
|
|
import { PDBTMDescriptor } from './types';
|
|
|
|
|
|
-export type ResidueNameColorThemeParams = {
|
|
|
+export type TmDetColorThemeParams = {
|
|
|
pdbtmDescriptor: any
|
|
|
};
|
|
|
|
|
|
-export function CustomColorTheme(
|
|
|
+export function TmDetColorTheme(
|
|
|
ctx: ThemeDataContext,
|
|
|
- props: PD.Values<ResidueNameColorThemeParams>
|
|
|
-): ColorTheme<ResidueNameColorThemeParams> {
|
|
|
+ props: PD.Values<TmDetColorThemeParams>
|
|
|
+): ColorTheme<TmDetColorThemeParams> {
|
|
|
console.log('ColorTheme CTX', ctx);
|
|
|
console.log('ColorTheme PROPS', props);
|
|
|
|
|
|
return {
|
|
|
- factory: CustomColorTheme,
|
|
|
+ factory: TmDetColorTheme,
|
|
|
granularity: 'group', //'residue' as any,
|
|
|
color: getColor,
|
|
|
props: props,
|
|
@@ -44,11 +44,11 @@ function getColor(location: Location): Color {
|
|
|
return color;
|
|
|
}
|
|
|
|
|
|
-export const CustomColorThemeProvider: ColorTheme.Provider<ResidueNameColorThemeParams, 'tmdet-custom-color-theme'> = {
|
|
|
+export const TmDetColorThemeProvider: ColorTheme.Provider<TmDetColorThemeParams, 'tmdet-custom-color-theme'> = {
|
|
|
name: 'tmdet-custom-color-theme',
|
|
|
label: 'TMDet Topology Theme',
|
|
|
category: 'TMDet',
|
|
|
- factory: CustomColorTheme,
|
|
|
+ factory: TmDetColorTheme,
|
|
|
getParams: () => ({ pdbtmDescriptor: { isOptional: true } }),
|
|
|
defaultValues: { pdbtmDescriptor: undefined },
|
|
|
isApplicable: () => true,
|