|
@@ -69,6 +69,7 @@ const siteColors = [
|
|
Color.fromArray([0,255, 0], 0) // Membrane Inside
|
|
Color.fromArray([0,255, 0], 0) // Membrane Inside
|
|
];
|
|
];
|
|
|
|
|
|
|
|
+const regionColorMapFromCss = new Map();
|
|
|
|
|
|
function getColor(location: Location, chains: ChainList): Color {
|
|
function getColor(location: Location, chains: ChainList): Color {
|
|
let color = DefaultResidueColor;
|
|
let color = DefaultResidueColor;
|
|
@@ -138,3 +139,53 @@ export const TmDetColorThemeProvider: ColorTheme.Provider<TmDetColorThemeParams,
|
|
defaultValues: { pdbtmDescriptor: undefined },
|
|
defaultValues: { pdbtmDescriptor: undefined },
|
|
isApplicable: () => true,
|
|
isApplicable: () => true,
|
|
};
|
|
};
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+// Colors from CSS rules
|
|
|
|
+
|
|
|
|
+function loadRegionColorsFromStyleSheets(prefix: string = 'ult_'): void {
|
|
|
|
+ const sheets: CSSStyleSheet[] = Array.from(document.styleSheets);
|
|
|
|
+ sheets.forEach((sheet: CSSStyleSheet) => {
|
|
|
|
+ const rules: CSSRule[] = Array.from(sheet.cssRules);
|
|
|
|
+ rules.forEach((rule: CSSRule) => fetchRule(rule, prefix));
|
|
|
|
+ });
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export function updateSiteColors(side1: "Inside"|"Outside"|null): void {
|
|
|
|
+ if (!side1) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ loadRegionColorsFromStyleSheets();
|
|
|
|
+ if (regionColorMapFromCss.size == 0) {
|
|
|
|
+ console.warn('Cannot read any region-related color rules');
|
|
|
|
+ }
|
|
|
|
+ const inside = regionColorMapFromCss.get("ult_inside");
|
|
|
|
+ const outside = regionColorMapFromCss.get("ult_outside");
|
|
|
|
+ if (side1 == "Inside") {
|
|
|
|
+ siteColors[0] = inside;
|
|
|
|
+ siteColors[1] = outside;
|
|
|
|
+ } else {
|
|
|
|
+ siteColors[0] = outside;
|
|
|
|
+ siteColors[1] = inside;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function fetchRule(rule: CSSRule, prefix: string) {
|
|
|
|
+ let styleRule = rule as CSSStyleRule;
|
|
|
|
+ if (styleRule.selectorText?.startsWith('.' + prefix)) {
|
|
|
|
+ const value = styleRule.style.getPropertyValue('fill');
|
|
|
|
+ const color: Color = getStyleColor(value);
|
|
|
|
+ const key = styleRule.selectorText.slice(1);
|
|
|
|
+ regionColorMapFromCss.set(key, color);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+function getStyleColor(cssColorText: string): Color {
|
|
|
|
+ const values = cssColorText?.match(/\d+/g);
|
|
|
|
+ let intValues = values?.map(value => parseInt(value));
|
|
|
|
+ if (!intValues) {
|
|
|
|
+ intValues = [ 0, 0, 0 ];
|
|
|
|
+ }
|
|
|
|
+ return Color.fromArray(intValues, 0);
|
|
|
|
+}
|