portainer/portainer

View on GitHub
app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx

Summary

Maintainability
D
1 day
Test Coverage

Function getConnectionTypeOptions has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function getConnectionTypeOptions(platformTypes: PlatformType[]) {
  const platformTypeConnectionType = {
    [PlatformType.Docker]: [
      ConnectionType.API,
      ConnectionType.Agent,

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      const uniqueTag = [
        ...new Map(tagOptions.map((item) => [item.ID, item])).values(),
      ].map(({ ID: value, Name: label }) => ({
        value,
        label,
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 73..78

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      const uniqueGroup = [
        ...new Map(groupOptions.map((item) => [item.Id, item])).values(),
      ].map(({ Id: value, Name: label }) => ({
        value,
        label,
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 82..87

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 75.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      return _.compact(
        _.intersection(
          ...platformTypes.map((p) => platformTypeConnectionType[p])
        ).map((c) => connectionTypesDefaultOptions.find((o) => o.value === c))
      );
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 224..228

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 69.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

      return _.compact(
        _.intersection(
          ...connectionTypes.map((p) => connectionTypePlatformType[p])
        ).map((c) => platformDefaultOptions.find((o) => o.value === c))
      );
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 193..197

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 69.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

          <div className={styles.filterLeft}>
            <HomepageFilter
              filterOptions={uniqueGroup}
              onChange={groupOnChange}
              placeHolder="Groups"
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 91..98
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 99..106
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 107..114
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 115..122

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 57.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

          <div className={styles.filterLeft}>
            <HomepageFilter
              filterOptions={platformTypeOptions}
              onChange={setPlatformTypes}
              placeHolder="Platform"
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 99..106
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 107..114
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 115..122
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 123..130

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 57.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

          <div className={styles.filterLeft}>
            <HomepageFilter
              filterOptions={connectionTypeOptions}
              onChange={setConnectionTypes}
              placeHolder="Connection Type"
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 91..98
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 107..114
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 115..122
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 123..130

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 57.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

          <div className={styles.filterLeft}>
            <HomepageFilter
              filterOptions={status}
              onChange={statusOnChange}
              placeHolder="Status"
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 91..98
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 99..106
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 115..122
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 123..130

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 57.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 5 locations. Consider refactoring.
    Open

          <div className={styles.filterLeft}>
            <HomepageFilter
              filterOptions={uniqueTag}
              onChange={tagOnChange}
              placeHolder="Tags"
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 91..98
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 99..106
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 107..114
    app/react/portainer/HomeView/EnvironmentList/EnvironmentListFilters.tsx on lines 123..130

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 57.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    There are no issues that match your filters.

    Category
    Status