CrazySquirrel/CSTiles

View on GitHub

Showing 76 of 76 total issues

File CSTiles.ts has 792 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"use strict";
/**
 * Import interfaces
 */
import IWindow from "../Interfaces/IWindow";
Severity: Major
Found in src/ts/Modules/CSTiles.ts - About 1 day to fix

Function findPosition has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring.
Open

    public static findPosition(grid: Array<Array<boolean>>,
                               gridSize: number,
                               tileSize: Array<number>,
                               tilePosition: Array<number>): {x: number, y: number, grid: Array<Array<boolean>>} {
        let x;
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 day 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 convertCss has a Cognitive Complexity of 63 (exceeds 5 allowed). Consider refactoring.
Open

    public static convertCss(arrCss: Object) {
        for (let strMedia in arrCss) {
            if (arrCss.hasOwnProperty(strMedia)) {
                for (let strBlockID in arrCss[strMedia]) {
                    if (arrCss[strMedia].hasOwnProperty(strBlockID)) {
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 day 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 compiledCssProperties has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

    public static compiledCssProperties(objCssProperties: Object): Object {
        let objCompiledRules = {
            background: [
                "background-image",
                "background-position/background-size",
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 4 hrs 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 compiledCssProperties has 95 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static compiledCssProperties(objCssProperties: Object): Object {
        let objCompiledRules = {
            background: [
                "background-image",
                "background-position/background-size",
Severity: Major
Found in src/ts/Modules/CSTiles.ts - About 3 hrs to fix

Function constructor has 84 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    constructor(domParentNode?: HTMLElement,
                objGridParams?: CGridParams,
                arrTiles?: Array<CTileParams>) {
        /**
         * Assign default params
Severity: Major
Found in src/ts/Modules/CSTiles.ts - About 3 hrs to fix

Function findPosition has 74 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static findPosition(grid: Array<Array<boolean>>,
                               gridSize: number,
                               tileSize: Array<number>,
                               tilePosition: Array<number>): {x: number, y: number, grid: Array<Array<boolean>>} {
        let x;
Severity: Major
Found in src/ts/Modules/CSTiles.ts - About 2 hrs to fix

CSTiles has 25 functions (exceeds 20 allowed). Consider refactoring.
Open

export default class CSTiles {
    /**
     * Convert css object to css
     * @param arrCss
     * @returns {string}
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 2 hrs to fix

Function optimizeCssProperty has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    public static optimizeCssProperty(strCssPropertyName, strCssPropertyValue): string {
        strCssPropertyValue = (" " + strCssPropertyValue + " ")
            .replace(/\s0%/ig, " 0")
            .replace(/[\r\n\t]/ig, " ")
            .replace(/\s+/ig, " ")
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 2 hrs 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 checkInnerParamsForErrors has 64 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static checkInnerParamsForErrors(domParentNode?: HTMLElement,
                                            objGridParams?: CGridParams,
                                            arrTiles?: Array<CTileParams>) {
        let isError = false;
        if (
Severity: Major
Found in src/ts/Modules/CSTiles.ts - About 2 hrs to fix

Function assignDefaultTileParams has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    public static assignDefaultTileParams(objGridParams: CGridParams, arrTiles: Array<CTileParams>): any {
        /**
         * The enumeration of all tiles
         */
        let grid = [];
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 2 hrs 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 optimizeCssProperty has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static optimizeCssProperty(strCssPropertyName, strCssPropertyValue): string {
        strCssPropertyValue = (" " + strCssPropertyValue + " ")
            .replace(/\s0%/ig, " 0")
            .replace(/[\r\n\t]/ig, " ")
            .replace(/\s+/ig, " ")
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 hr to fix

Function assignDefaultTileParams has 45 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static assignDefaultTileParams(objGridParams: CGridParams, arrTiles: Array<CTileParams>): any {
        /**
         * The enumeration of all tiles
         */
        let grid = [];
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 hr to fix

Function convertCss has 42 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static convertCss(arrCss: Object) {
        for (let strMedia in arrCss) {
            if (arrCss.hasOwnProperty(strMedia)) {
                for (let strBlockID in arrCss[strMedia]) {
                    if (arrCss[strMedia].hasOwnProperty(strBlockID)) {
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 hr to fix

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

    public static insertContentVideo(domParentNode: HTMLElement,
                                     objContent: any,
                                     arrCss: Object) {
        let domTileVideo = document.createElement("video");
        domTileVideo.id = CSTiles.getUUID();
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 hr to fix

Function constructor has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    constructor(domParentNode?: HTMLElement,
                objGridParams?: CGridParams,
                arrTiles?: Array<CTileParams>) {
        /**
         * Assign default params
Severity: Minor
Found in src/ts/Modules/CSTiles.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 insertContentAudio has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static insertContentAudio(domParentNode: HTMLElement,
                                     objContent: any,
                                     arrCss: Object) {
        let domTileVideo = document.createElement("audio");
        domTileVideo.id = CSTiles.getUUID();
Severity: Minor
Found in src/ts/Modules/CSTiles.ts - About 1 hr to fix

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

    constructor() {
        this.gridID = "";
        this.gridSize = 8;
        this.tileMargin = 8;
        this.tilePadding = 8;
Severity: Minor
Found in src/ts/Classes/CGridParams.ts - About 1 hr to fix

Function insertContentVideo has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    public static insertContentVideo(domParentNode: HTMLElement,
                                     objContent: any,
                                     arrCss: Object) {
        let domTileVideo = document.createElement("video");
        domTileVideo.id = CSTiles.getUUID();
Severity: Minor
Found in src/ts/Modules/CSTiles.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 insertContentAudio has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    public static insertContentAudio(domParentNode: HTMLElement,
                                     objContent: any,
                                     arrCss: Object) {
        let domTileVideo = document.createElement("audio");
        domTileVideo.id = CSTiles.getUUID();
Severity: Minor
Found in src/ts/Modules/CSTiles.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