All files / packages/tools/src/stateManagement/annotation/config ToolStyle.ts

49.05% Statements 26/53
36% Branches 18/50
66.66% Functions 8/12
49.05% Lines 26/53

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282                                                          1x                                         1x                 4501x                   4524x                   4524x                 5076x                                                                                                                                                                               5076x   5076x                               5076x 4501x   4501x               5076x 4524x   4524x                                       5076x 4524x   4524x                                     5076x   5076x             5076x 1864x         1x 1x 18x     1x               1x      
import {
  StyleConfig,
  ToolStyleConfig,
  StyleSpecifier,
  AnnotationStyle,
} from '../../../types/AnnotationStyle';
 
/**
 * This class handles the configuration of the tool style. You can use it to set
 * the style of a tool at various levels (annotation, viewport, toolGroup, global).
 *
 * The hierarchy of the configuration is as follows (each level falls back to the
 * next level if not specified):
 *
 * 1) Annotation-level styles (with annotationUID)
 *     2) Viewport-level tool styles
 *         - Per-tool: Length on the viewport with viewportId
 *         - Global: All tools on the viewport with viewportId
 *             3) ToolGroup tool styles
 *                 - Per-tool: Angle on toolGroupId in all viewports of the toolGroup
 *                 - Global: All tools in the toolGroupId for all viewports
 *                     4) Default level:
 *                         - Per-tool: Length styles
 *                         - Global: Opinionated styles by CornerstoneJS
 */
class ToolStyle {
  config: StyleConfig;
 
  constructor() {
    const defaultConfig = {
      color: 'rgb(255, 255, 0)',
      colorHighlighted: 'rgb(0, 255, 0)',
      colorSelected: 'rgb(0, 220, 0)',
      colorLocked: 'rgb(255, 255, 0)',
      lineWidth: '1',
      lineDash: '',
      shadow: true,
      textBoxVisibility: true,
      textBoxFontFamily: 'Helvetica Neue, Helvetica, Arial, sans-serif',
      textBoxFontSize: '14px',
      textBoxColor: 'rgb(255, 255, 0)',
      textBoxColorHighlighted: 'rgb(0, 255, 0)',
      textBoxColorSelected: 'rgb(0, 255, 0)',
      textBoxColorLocked: 'rgb(255, 255, 0)',
      textBoxBackground: '',
      textBoxLinkLineWidth: '1',
      textBoxLinkLineDash: '2,3',
      textBoxShadow: true,
    };
 
    this._initializeConfig(defaultConfig);
  }
 
  /**
   * It returns the annotation-specific tool styles for the annotation with the given UID
   * @param annotationUID - The unique identifier of the annotation.
   * @returns The annotation tool styles for the annotation with the given UID.
   */
  getAnnotationToolStyles(annotationUID: string): AnnotationStyle {
    return this.config.annotations && this.config.annotations[annotationUID];
  }
 
  /**
   * It returns the styles for a given viewport. It includes tool-specific and
   * global styles (all tools in the viewport)
   * @param viewportId - The id of the viewport
   * @returns The viewport tool styles for the given viewport id.
   */
  getViewportToolStyles(viewportId: string): ToolStyleConfig {
    return this.config.viewports && this.config.viewports[viewportId];
  }
 
  /**
   * It returns the tool style for the given toolGroup. It includes tool-specific and
   * global styles (all tools in the toolGroup)
   * @param toolGroupId - The id of the toolGroup.
   * @returns The tool styles for the tool group with the given id.
   */
  getToolGroupToolStyles(toolGroupId: string): ToolStyleConfig {
    return this.config.toolGroups && this.config.toolGroups[toolGroupId];
  }
 
  /**
   * It returns the default tool styles from the config file. It includes tool-specific and
   * global styles (all tools in all tooLGroups)
   * @returns The default tool styles.
   */
  getDefaultToolStyles(): ToolStyleConfig {
    return this.config.default;
  }
 
  /**
   * It takes an annotationUID and a style object and sets the styles at
   * the annotationLevel (highest priority in the hierarchy). The styles is an
   * object with key value pairs.
   * @param annotationUID - string - The unique identifier for the annotation.
   * @param styles - ToolStyles
   */
  setAnnotationStyles(annotationUID: string, styles: AnnotationStyle) {
    let annotationSpecificStyles = this.config.annotations;
 
    if (!annotationSpecificStyles) {
      this.config = {
        ...this.config,
        annotations: {},
      };
 
      annotationSpecificStyles = this.config.annotations;
    }
 
    annotationSpecificStyles[annotationUID] = styles;
  }
 
  /**
   * It takes a viewportId and a ToolStyles object, and adds the ToolStyles object
   * at the viewport level (second highest priority in the hierarchy after the annotation level).
   * @param viewportId - The id of the viewport
   * @param styles - style object including tool-specific and/or global styles (All tools in the viewport)
   */
  setViewportToolStyles(viewportId: string, styles: ToolStyleConfig) {
    let viewportSpecificStyles = this.config.viewports;
 
    if (!viewportSpecificStyles) {
      this.config = {
        ...this.config,
        viewports: {},
      };
 
      viewportSpecificStyles = this.config.viewports;
    }
 
    viewportSpecificStyles[viewportId] = styles;
  }
 
  /**
   * It takes a toolGroupId and a ToolStyles object, and it adds the ToolStyles object
   * at the toolGroup level (third highest priority in the hierarchy after the viewport level).
   * @param toolGroupId - The id of the toolGroup
   * @param styles - style object including tool-specific (in all viewports of the toolGroup) and/or
   * global styles (All tools in the toolGroup for all viewports)
   */
  setToolGroupToolStyles(toolGroupId: string, styles: ToolStyleConfig) {
    let toolGroupSpecificStyles = this.config.toolGroups;
 
    if (!toolGroupSpecificStyles) {
      this.config = {
        ...this.config,
        toolGroups: {},
      };
 
      toolGroupSpecificStyles = this.config.toolGroups;
    }
 
    toolGroupSpecificStyles[toolGroupId] = styles;
  }
 
  /**
   * Sets the default tool styles for the editor. It overrides the default styles for all tools.
   * @param styles - style object including tool-specific (a tool in all toolGroups) and/or
   * global styles (All tools in all tooLGroups)
   */
  setDefaultToolStyles(styles: ToolStyleConfig) {
    this.config.default = styles;
  }
 
  /**
   * It returns the value for a given style key, based on the provided specifications.
   * It starts by looking at the annotation-specific styles, then at the viewport-specific styles,
   * then at the toolGroup-specific styles, and finally at the default styles.
   * @param styleKey - The key of the style.
   * @param styleSpecifier - An object containing the specifications such as viewportId,
   * toolGroupId, toolName and annotationUID which are used to get the style if the level of specificity is
   * met
   * @returns The value for the given style key.
   */
  getStyleProperty(toolStyle: string, specifications: StyleSpecifier) {
    const { annotationUID, viewportId, toolGroupId, toolName } = specifications;
 
    return this._getToolStyle(
      toolStyle,
      annotationUID,
      viewportId,
      toolGroupId,
      toolName
    );
  }
 
  private _getToolStyle(
    property: string,
    annotationUID: string,
    viewportId: string,
    toolGroupId: string,
    toolName: string
  ) {
    if (annotationUID) {
      const annotationToolStyles = this.getAnnotationToolStyles(annotationUID);
 
      Iif (annotationToolStyles) {
        // check first in the toolSpecific styles
        if (annotationToolStyles[property] !== undefined) {
          return annotationToolStyles[property];
        }
      }
    }
 
    if (viewportId) {
      const viewportToolStyles = this.getViewportToolStyles(viewportId);
 
      Iif (viewportToolStyles) {
        // check if we have the viewportId specific style
        // check first in the toolSpecific styles
        if (
          viewportToolStyles[toolName] &&
          viewportToolStyles[toolName][property] !== undefined
        ) {
          return viewportToolStyles[toolName][property];
        }
 
        // check if we have the style in the viewport specific global viewportSpecificStyles
        if (
          viewportToolStyles.global &&
          viewportToolStyles.global[property] !== undefined
        ) {
          return viewportToolStyles.global[property];
        }
      }
    }
 
    if (toolGroupId) {
      const toolGroupToolStyles = this.getToolGroupToolStyles(toolGroupId);
 
      Iif (toolGroupToolStyles) {
        // check first in the toolSpecific styles
        if (
          toolGroupToolStyles[toolName] &&
          toolGroupToolStyles[toolName][property] !== undefined
        ) {
          return toolGroupToolStyles[toolName][property];
        }
 
        // check if we have the style in the toolGroup specific global styles
        if (
          toolGroupToolStyles.global &&
          toolGroupToolStyles.global[property] !== undefined
        ) {
          return toolGroupToolStyles.global[property];
        }
      }
    }
 
    const globalStyles = this.getDefaultToolStyles();
 
    Iif (
      globalStyles[toolName] &&
      globalStyles[toolName][property] !== undefined
    ) {
      return globalStyles[toolName][property];
    }
 
    if (globalStyles.global && globalStyles.global[property] !== undefined) {
      return globalStyles.global[property];
    }
  }
 
  private _initializeConfig(config) {
    const toolStyles = {};
    for (const name in config) {
      toolStyles[name] = config[name];
    }
 
    this.config = {
      default: {
        global: toolStyles as AnnotationStyle,
      },
    };
  }
}
 
const toolStyle = new ToolStyle();
 
export default toolStyle;