OperationCode/front-end

View on GitHub

Showing 7 of 11 total issues

Function UpdateProfileForm has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Confirmed

function UpdateProfileForm({ initialValues }) {
  const [shouldShowMilitaryStep, handleShouldShowMilitaryStep] = useState(false);

  // TODO: Abstract method to utility and use for all error-handling purposes
  const generateError = errorObject => {
Severity: Minor
Found in components/Forms/UpdateProfileForm/UpdateProfileForm.js - About 1 hr to fix

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 getPagination has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Confirmed

const getPagination = (
  currentPage: PaginationPropsType['currentPage'],
  totalPages: PaginationPropsType['totalPages'],
) => {
  // maximum length of the Pagination Bar, should be an odd integer, default is 11
Severity: Minor
Found in components/Pagination/Pagination.tsx - About 55 mins to fix

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 Pagination has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Confirmed

function Pagination({ currentPage, pathname, query, totalPages }: PaginationPropsType) {
  /* Developer Errors */
  if (process.env.NODE_ENV !== 'production') {
    const isCurrentPageTooSmall = currentPage < 1;

Severity: Minor
Found in components/Pagination/Pagination.tsx - About 35 mins to fix

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 MultiStepForm has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Confirmed

export function MultiStepForm({
  steps,
  initialValues,
  onEachStepSubmit,
  onFinalSubmit,
Severity: Minor
Found in components/Form/MultiStepForm.js - About 35 mins to fix

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 NavListItem has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Confirmed

function NavListItem({ sublinks, href, name, icon = null }: NavListItemPropsType) {
  const [areSublinksVisible, setSublinksVisible] = useState(false);

  const handleKeyDown = (event: React.KeyboardEvent, indexKeyedOn: number) => {
    const lastSublinkIndex = sublinks && sublinks.length - 1;
Severity: Minor
Found in components/Nav/NavListItem/NavListItem.tsx - About 35 mins to fix

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 RegistrationForm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Confirmed

function RegistrationForm({ initialValues, onSubmit, onSuccess }) {
  const [errorMessage, setErrorMessage] = useState('');

  const handleSubmit = async (values, actions) => {
    try {
Severity: Minor
Found in components/Forms/RegistrationForm/RegistrationForm.js - About 25 mins to fix

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 mockPassword has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

export default function mockPassword({
  hasMinimumLength = true,
  hasOneLowercaseChar = true,
  hasOneUppercaseChar = true,
  hasOneNumber = true,
Severity: Minor
Found in test-utils/mockGenerators/mockPassword.js - About 25 mins to fix

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

Severity
Category
Status
Source
Language