bowheart/zedux

View on GitHub

Showing 8 of 16 total issues

File createStore.ts has 288 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { hierarchyDescriptorToDiffTree } from '../hierarchy/create'
import { mergeDiffTrees, mergeStateTrees } from '../hierarchy/merge'
import { delegate, propagateChange } from '../hierarchy/traverse'
import {
  Action,
Severity: Minor
Found in src/api/createStore.ts - About 2 hrs to fix

    Function createMachine has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

    export const createMachine = <State extends string = string>(
      initialState?: Reactable
    ) => {
      const method = `createMachine()`
    
    
    Severity: Minor
    Found in src/api/createMachine.ts - 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 createMachine has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const createMachine = <State extends string = string>(
      initialState?: Reactable
    ) => {
      const method = `createMachine()`
    
    
    Severity: Minor
    Found in src/api/createMachine.ts - About 1 hr to fix

      Function applyMachineHooks has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const applyMachineHooks = <T = any>(
        store: Store<T>,
        getMachineState: (state: T) => string
      ) => {
        const enterSubscribers: SubscribersHash = {}
      Severity: Minor
      Found in src/api/applyMachineHooks.ts - About 1 hr to fix

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

        function Home() {
          const { siteConfig } = useDocusaurusContext()
        
          return (
            <Layout
        Severity: Minor
        Found in docs/src/pages/index.tsx - About 1 hr to fix

          Function subscribe has 29 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            const subscribe = (subscriber: Subscriber<State>) => {
              const subscriberObj =
                typeof subscriber === 'function' ? { next: subscriber } : subscriber
          
              if (subscriberObj.next) {
          Severity: Minor
          Found in src/api/createStore.ts - About 1 hr to fix

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

              const registerChildStore = (childStorePath: string[], childStore: Store) => {
                const effectsSubscriber: EffectsSubscriber<State> = ({
                  action,
                  effects,
                  error,
            Severity: Minor
            Found in src/api/createStore.ts - About 1 hr to fix

              Function applyMachineHooks has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

              export const applyMachineHooks = <T = any>(
                store: Store<T>,
                getMachineState: (state: T) => string
              ) => {
                const enterSubscribers: SubscribersHash = {}
              Severity: Minor
              Found in src/api/applyMachineHooks.ts - 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

              Severity
              Category
              Status
              Source
              Language