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";
- Create a ticketCreate a ticket
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;
- Read upRead up
- Create a ticketCreate a ticket
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)) {
- Read upRead up
- Create a ticketCreate a ticket
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",
- Read upRead up
- Create a ticketCreate a ticket
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",
- Create a ticketCreate a ticket
Function constructor
has 84 lines of code (exceeds 25 allowed). Consider refactoring. Open
constructor(domParentNode?: HTMLElement,
objGridParams?: CGridParams,
arrTiles?: Array<CTileParams>) {
/**
* Assign default params
- Create a ticketCreate a ticket
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;
- Create a ticketCreate a ticket
CSTiles
has 25 functions (exceeds 20 allowed). Consider refactoring. Open
export default class CSTiles {
/**
* Convert css object to css
* @param arrCss
* @returns {string}
- Create a ticketCreate a ticket
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, " ")
- Read upRead up
- Create a ticketCreate a ticket
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 (
- Create a ticketCreate a ticket
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 = [];
- Read upRead up
- Create a ticketCreate a ticket
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, " ")
- Create a ticketCreate a ticket
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 = [];
- Create a ticketCreate a ticket
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)) {
- Create a ticketCreate a ticket
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();
- Create a ticketCreate a ticket
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
- Read upRead up
- Create a ticketCreate a ticket
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();
- Create a ticketCreate a ticket
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;
- Create a ticketCreate a ticket
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();
- Read upRead up
- Create a ticketCreate a ticket
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 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();
- Read upRead up
- Create a ticketCreate a ticket
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"