weacast/weacast

View on GitHub
packages/core/src/hooks/query.js

Summary

Maintainability
A
3 hrs
Test Coverage
A
93%

Function marshallSpatialQuery has 54 lines of code (exceeds 50 allowed). Consider refactoring.
Open

export function marshallSpatialQuery (hook) {
  const query = hook.params.query
  if (query) {
    marshallGeometryQuery(query)
    // Resampling is used by hooks only, do not send it to DB
Severity: Major
Found in packages/core/src/hooks/query.js - About 1 hr to fix

    Function processData has a Cognitive Complexity of 23 (exceeds 20 allowed). Consider refactoring.
    Open

    export async function processData (hook) {
      const params = hook.params
      const query = params.query
      const service = hook.service
      let items = getItems(hook)
    Severity: Minor
    Found in packages/core/src/hooks/query.js - About 45 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

    Consider simplifying this complex logical expression.
    Open

        if (!_.isNil(params.oLon) && !_.isNil(params.oLat) && !_.isNil(params.sLon) && !_.isNil(params.sLat) && !_.isNil(params.dLon) && !_.isNil(params.dLat)) {
          items.forEach(item => {
            const grid = new Grid({
              bounds: service.forecast.bounds,
              origin: service.forecast.origin,
    Severity: Major
    Found in packages/core/src/hooks/query.js - About 40 mins to fix

      Consider simplifying this complex logical expression.
      Open

          if (!_.isNil(query.oLon) && !_.isNil(query.oLat) && !_.isNil(query.sLon) && !_.isNil(query.sLat) && !_.isNil(query.dLon) && !_.isNil(query.dLat)) {
            // Convert when required from query strings
            hook.params.oLat = _.toNumber(query.oLat)
            hook.params.oLon = _.toNumber(query.oLon)
            hook.params.sLat = _.toNumber(query.sLat)
      Severity: Major
      Found in packages/core/src/hooks/query.js - About 40 mins to fix

        There are no issues that match your filters.

        Category
        Status