mongaku/mongaku

View on GitHub

Showing 151 of 336 total issues

Avoid too many return statements within this function.
Open

        return (
            <NameFilter
                value={value}
                values={allValues}
                searchName={searchField}
Severity: Major
Found in src/views/SearchForm.js - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

            return null;
    Severity: Major
    Found in src/views/SearchForm.js - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

              return (
                  <YearRangeFilter
                      value={value}
                      searchName={searchField}
                      placeholder={typeSchema.placeholder}
      Severity: Major
      Found in src/views/SearchForm.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return (
                    <FixedStringEdit
                        name={name}
                        type={type}
                        value={value && String(value)}
        Severity: Major
        Found in src/views/EditRecord.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return undefined;
          Severity: Major
          Found in src/lib/clone.js - About 30 mins to fix

            Function canEdit has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            const canEdit = ({user, params: {type, source}, i18n}, res, next) => {
                if (!options.types[type]) {
                    return res.status(404).render("Error", {
                        title: i18n.gettext("Page not found."),
                    });
            Severity: Minor
            Found in src/logic/shared/auth.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 updateRecordSimilarity has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                updateRecordSimilarity() {
                    for (const typeName in options.types) {
                        const Record = record(typeName);
                        const next = () => setTimeout(update, QUERY_RATE);
                        const update = () =>
            Severity: Minor
            Found in src/server/cron.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 render has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                render() {
                    const {mode, type, globalFacets, dynamicValues} = this.props;
                    const {gettext, options} = this.context;
                    const {model} = options.types[type];
                    const types = Object.keys(model);
            Severity: Minor
            Found in src/views/EditRecord.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 stripProp has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            const stripProp = (obj, name) => {
                if (!obj) {
                    return obj;
                }
            
            
            Severity: Minor
            Found in src/schemas/Record.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 render has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                render() {
                    const {facet} = this.props;
                    const {gettext, format} = this.context;
                    let {buckets} = facet;
                    let extra = null;
            Severity: Minor
            Found in src/views/Search.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 exports has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            module.exports = type => {
                if (records[type]) {
                    return records[type];
                }
            
            
            Severity: Minor
            Found in src/lib/record.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