cloudfoundry/stratos

View on GitHub
src/frontend/packages/kubernetes/src/kubernetes/kubernetes-resource-viewer/kubernetes-resource-viewer.component.ts

Summary

Maintainability
C
7 hrs
Test Coverage

Function setProps has 75 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  setProps(props: KubernetesResourceViewerConfig) {
    this.title = props.title;
    this.analysis = props.analysis;
    this.component = props.component;

    Function resource$ has 45 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          map((item: (KubeAPIResource | KubeStatus)) => {
            const resource: KubernetesResourceViewerResource = {} as KubernetesResourceViewerResource;
            const newItem = {} as any;
    
            resource.raw = item;

      Function setProps has a Cognitive Complexity of 14 (exceeds 8 allowed). Consider refactoring.
      Open

        setProps(props: KubernetesResourceViewerConfig) {
          this.title = props.title;
          this.analysis = props.analysis;
          this.component = props.component;
      
      

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function deleteWarn has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        public deleteWarn() {
          // Namespace vs Pod definition in different places
          const defn = (this.data.definition?.definition || this.data.definition) as KubeResourceEntityDefinition;
          this.sidePanelService.hide();
          const confirmation = new ConfirmationDialogConfig(

        There are no issues that match your filters.

        Category
        Status