engine-bay/admin-portal

View on GitHub

Showing 72 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

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

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

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

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

          if (triggerBlueprintChildren.length > 0) {
            children.push({
              nodeId: `${blueprint.id}-trigger-blueprints`,
              label: `Triggers`,
              children: triggerBlueprintChildren,
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 71..77
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 79..85
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 87..93

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

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

          if (expressionBlueprintChildren.length > 0) {
            children.push({
              nodeId: `${blueprint.id}-expression-blueprints`,
              label: `Expressions`,
              children: expressionBlueprintChildren,
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 71..77
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 79..85
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

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

          if (dataTableBlueprintChildren.length > 0) {
            children.push({
              nodeId: `${blueprint.id}-data-table-blueprints`,
              label: `Data Tables`,
              children: dataTableBlueprintChildren,
EngineBay.AdminPortal/AdminPortal/src/pages/studio/WorkbookTree.tsx on lines 71..77
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

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

            dataVariableBlueprints.push({
                name: cell.cellReference,
                namespace: cell.namespace,
                description: `Part of the evaluation of ${cell.formula}`,
                type: cell.type
EngineBay.AdminPortal/AdminPortal/src/lib/imports/generateBlueprintsFromCells.ts on lines 123..128

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

Severity
Category
Status
Source
Language