engine-bay/admin-portal

View on GitHub

Showing 112 of 112 total issues

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

const TriggerBlueprintsCount = () => {
  const record = useRecordContext();
  if (!record) return null;
  return (
    <Count
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 32..40
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 42..50
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 52..60
EngineBay.AdminPortal/AdminPortal/src/pages/expressions/Expressions.tsx on lines 52..60

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 68.

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

const InputDataTableBlueprintsCount = () => {
  const record = useRecordContext();
  if (!record) return null;
  return (
    <Count
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 32..40
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 42..50
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 52..60
EngineBay.AdminPortal/AdminPortal/src/pages/blueprints/Blueprints.tsx on lines 62..70

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 68.

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

Function NavigationMenu has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const NavigationMenu = () => {
  const translate = useTranslate();
  return (
    <Menu>
      <Menu.DashboardItem primaryText={translate("dashboard")} />
Severity: Minor
Found in EngineBay.AdminPortal/AdminPortal/src/components/NavigationMenu.tsx - About 1 hr to fix

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

            const { json } = await httpClient(url, {
                method: 'DELETE',
                user: {
                    authenticated: localStorage.getItem("isAuthenticated") === "true",
                    token: localStorage.getItem("token") || ""
    Severity: Major
    Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 1 other location - About 1 hr to fix
    EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 150..156

    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 66.

    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

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

            const { json } = await httpClient(url, {
                method: 'DELETE',
                user: {
                    authenticated: localStorage.getItem("isAuthenticated") === "true",
                    token: localStorage.getItem("token") || ""
    Severity: Major
    Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 1 other location - About 1 hr to fix
    EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 135..141

    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 66.

    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

    Function VariableEdit has 38 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const VariableEdit = () => {
      const translate = useTranslate();
      return (
        <Edit
          resource="data-variable-blueprints"
    Severity: Minor
    Found in EngineBay.AdminPortal/AdminPortal/src/pages/variables/Variables.tsx - About 1 hr to fix

      Function DataTableField has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const DataTableField = (props: DataTableFieldProps) => {
        const record = useRecordContext(props);
      
        const { dataTableRowBlueprints, dataTableColumnBlueprints } = record;
      
      
      Severity: Minor
      Found in EngineBay.AdminPortal/AdminPortal/src/components/DataTableField.tsx - About 1 hr to fix

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

              <Resource
                name="data-variable-blueprints"
                options={{ label: translate("variables") }}
                list={VariableList}
                edit={VariableEdit}
        Severity: Major
        Found in EngineBay.AdminPortal/AdminPortal/src/App.tsx and 4 other locations - About 1 hr to fix
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 75..82
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 88..95
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 104..111
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 112..119

        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 65.

        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

              <Resource
                name="meta-data/expression-blueprints"
                options={{ label: translate("expressions") }}
                list={ExpressionList}
                edit={ExpressionEdit}
        Severity: Major
        Found in EngineBay.AdminPortal/AdminPortal/src/App.tsx and 4 other locations - About 1 hr to fix
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 75..82
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 96..103
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 104..111
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 112..119

        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 65.

        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

              <Resource
                name="trigger-blueprints"
                options={{ label: translate("triggers") }}
                list={TriggerList}
                edit={TriggerEdit}
        Severity: Major
        Found in EngineBay.AdminPortal/AdminPortal/src/App.tsx and 4 other locations - About 1 hr to fix
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 75..82
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 88..95
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 96..103
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 104..111

        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 65.

        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

              <Resource
                name="meta-data/blueprints"
                options={{ label: translate("blueprints") }}
                list={BlueprintList}
                edit={BlueprintEdit}
        Severity: Major
        Found in EngineBay.AdminPortal/AdminPortal/src/App.tsx and 4 other locations - About 1 hr to fix
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 88..95
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 96..103
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 104..111
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 112..119

        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 65.

        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

              <Resource
                name="data-table-blueprints"
                options={{ label: translate("tables") }}
                list={TableList}
                edit={TableEdit}
        Severity: Major
        Found in EngineBay.AdminPortal/AdminPortal/src/App.tsx and 4 other locations - About 1 hr to fix
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 75..82
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 88..95
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 96..103
        EngineBay.AdminPortal/AdminPortal/src/App.tsx on lines 112..119

        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 65.

        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

        Function WorkbookShow has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export const WorkbookShow = () => {
          const translate = useTranslate();
          return (
            <Show resource="workbooks" title={translate("workbook")}>
              <TabbedShowLayout>
        Severity: Minor
        Found in EngineBay.AdminPortal/AdminPortal/src/pages/workbooks/Workbooks.tsx - About 1 hr to fix

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

                  const targetDataVariableBlueprint =
                    blueprint.dataVariableBlueprints.find(
                      (x) =>
                        x.name == expressionBlueprint.outputDataVariableBlueprint.name &&
                        x.namespace ==
          EngineBay.AdminPortal/AdminPortal/src/pages/studio/BlueprintVisualizer.tsx on lines 186..192

          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 61.

          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

          Identical blocks of code found in 4 locations. Consider refactoring.
          Open

                  const { json } = await httpClient(url, {
                      user: {
                          authenticated: localStorage.getItem("isAuthenticated") === "true",
                          token: localStorage.getItem("token") || ""
                      }
          Severity: Major
          Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 3 other locations - About 1 hr to fix
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 37..42
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 48..53
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 83..88

          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 61.

          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 targetDataVariableBlueprint =
                    blueprint.dataVariableBlueprints.find(
                      (x) =>
                        x.name == triggerBlueprint.outputDataVariableBlueprint.name &&
                        x.namespace ==
          EngineBay.AdminPortal/AdminPortal/src/pages/studio/BlueprintVisualizer.tsx on lines 137..143

          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 61.

          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

          Identical blocks of code found in 4 locations. Consider refactoring.
          Open

                  const { json } = await httpClient(url, {
                      user: {
                          authenticated: localStorage.getItem("isAuthenticated") === "true",
                          token: localStorage.getItem("token") || ""
                      }
          Severity: Major
          Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 3 other locations - About 1 hr to fix
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 37..42
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 48..53
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 62..67

          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 61.

          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

          Identical blocks of code found in 4 locations. Consider refactoring.
          Open

                  const { json } = await httpClient(url, {
                      user: {
                          authenticated: localStorage.getItem("isAuthenticated") === "true",
                          token: localStorage.getItem("token") || ""
                      }
          Severity: Major
          Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 3 other locations - About 1 hr to fix
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 48..53
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 62..67
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 83..88

          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 61.

          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

          Identical blocks of code found in 4 locations. Consider refactoring.
          Open

                  const { json } = await httpClient(url, {
                      user: {
                          authenticated: localStorage.getItem("isAuthenticated") === "true",
                          token: localStorage.getItem("token") || ""
                      }
          Severity: Major
          Found in EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts and 3 other locations - About 1 hr to fix
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 37..42
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 62..67
          EngineBay.AdminPortal/AdminPortal/src/lib/data-provider.ts on lines 83..88

          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 61.

          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 4 locations. Consider refactoring.
          Open

                    if (dataVariableBlueprintChildren.length > 0) {
                      children.push({
                        nodeId: `${blueprint.id}-data-variable-blueprints`,
                        label: `Data Variables`,
                        children: dataVariableBlueprintChildren,
          EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 79..85
          EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 87..93
          EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 95..101

          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 60.

          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

          Severity
          Category
          Status
          Source
          Language