Showing 50 of 396 total issues
Function ManageTooltip
has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring. Open
private ManageTooltip(): void {
if (this._showTooltip && this._title != null && this._title !== '') {
const o: { [key: string]: any } = {
text: this._title,
align: 'left',
- Read upRead up
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 ManageTooltip
has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring. Open
private ManageTooltip(): void {
if (this._showTooltip && this._title != null && this._title !== '') {
const o: { [key: string]: any } = {
text: this._title,
align: 'left',
- Read upRead up
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 ManageTooltip
has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring. Open
private ManageTooltip(): void {
if (this._showTooltip && this._title != null && this._title !== '') {
const o: { [key: string]: any } = {
text: this._title,
align: 'left',
- Read upRead up
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 CreateMarkers
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
public CreateMarkers(options: Array<IMarkerOptions>, markerIcon?: IMarkerIconInfo): Promise<Array<Marker>> {
const payload = (icon: string, op: Array<IMarkerOptions>): Array<BingMarker> => {
const markers: Array<BingMarker> = op.map(mo => {
let s: string;
const o: Microsoft.Maps.IPushpinOptions = BingConversions.TranslateMarkerOptions(mo);
- Read upRead up
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 ngOnChanges
has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring. Open
public ngOnChanges(changes: { [key: string]: SimpleChange }) {
let shouldSetOptions: boolean = false;
const o: IClusterOptions = {
id: this._id
};
- Read upRead up
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 GeneratePolygonChangeSet
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
private GeneratePolygonChangeSet(changes: SimpleChanges): IPolygonOptions {
const options: IPolygonOptions = { id: this._id };
let hasOptions: boolean = false;
if (changes['Clickable']) { options.clickable = this.Clickable; hasOptions = true; }
if (changes['Draggable']) { options.draggable = this.Draggable; hasOptions = true; }
- Read upRead up
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 ngOnChanges
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public ngOnChanges(changes: { [key: string]: SimpleChange }) {
if (changes['PolylineOptions']) {
this._zone.runOutsideAngular(() => {
this.UpdatePolylines();
});
- Read upRead up
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 CreateMarkers
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public CreateMarkers(options: Array<IMarkerOptions>, markerIcon?: IMarkerIconInfo): Promise<Array<Marker>> {
const payload = (icon: string): Array<GoogleMarker> => {
const markers: Array<GoogleMarker> = options.map(mo => {
const o: GoogleMapTypes.MarkerOptions = GoogleConversions.TranslateMarkerOptions(mo);
if (icon && icon !== '') { o.icon = icon; }
- Read upRead up
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 ngOnChanges
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public ngOnChanges(changes: { [key: string]: SimpleChange }) {
if (changes['PolygonOptions']) {
this._zone.runOutsideAngular(() => {
this.UpdatePolygons();
});
- Read upRead up
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 ShowSpiderCluster
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
private ShowSpiderCluster(cluster: Microsoft.Maps.ClusterPushpin): void {
this.HideSpiderCluster();
this._currentCluster = cluster;
if (cluster && cluster.containedPushpins) {
- Read upRead up
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 AddInfoWindow
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
public AddInfoWindow(info: InfoBoxComponent): void {
const options: IInfoWindowOptions = {};
if (typeof info.Latitude === 'number' && typeof info.Longitude === 'number') {
options.position = {
latitude: info.Latitude,
- Read upRead up
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 GeneratePolylineChangeSet
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
private GeneratePolylineChangeSet(changes: SimpleChanges): IPolylineOptions {
const options: IPolylineOptions = { id: this._id };
let hasOptions: boolean = false;
if (changes['Clickable']) { options.clickable = this.Clickable; hasOptions = true; }
if (changes['Draggable']) { options.draggable = this.Draggable; hasOptions = true; }
- Read upRead up
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 TranslatePolygonOptions
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public static TranslatePolygonOptions(options: IPolygonOptions): Microsoft.Maps.IPolygonOptions {
const o: Microsoft.Maps.IPolygonOptions = {};
const f: (s: string, a: number) => string = (s, a) => {
const m = /rgba?\((\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*\d+[\.\d+]*)*\)/g.exec(s);
if (m && m.length > 3) {
- Read upRead up
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 ngOnChanges
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public ngOnChanges(changes: { [key: string]: SimpleChange }) {
if (typeof this.Latitude !== 'number' || typeof this.Longitude !== 'number') {
return;
}
if (!this._markerAddedToManger) { return; }
- Read upRead up
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 TranslatePaths
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public static TranslatePaths(paths: Array<ILatLong> | Array<Array<ILatLong>>): Array<Array<Microsoft.Maps.Location>> {
const p: Array<Array<Microsoft.Maps.Location>> = new Array<Array<Microsoft.Maps.Location>>();
if (paths == null || !Array.isArray(paths) || paths.length === 0) {
p.push(new Array<Microsoft.Maps.Location>());
}
- Read upRead up
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 GetPolygonCentroid
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
protected GetPolygonCentroid(): ILatLong {
let c: ILatLong = {latitude: 0, longitude: 0};
const path: Array<Array<ILatLong>> = this.GetPaths();
const off = path[0][0];
if (off != null) {
- Read upRead up
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 RemoveEntity
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public RemoveEntity(entity: Marker): void {
if (entity.NativePrimitve && entity.Location) {
const j: number = this._markers.indexOf(entity);
const k: number = this._pendingMarkers.indexOf(entity);
if (j > -1) { this._markers.splice(j, 1); }
- Read upRead up
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 TranslatePolylineOptions
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public static TranslatePolylineOptions(options: IPolylineOptions): Microsoft.Maps.IPolylineOptions {
const o: Microsoft.Maps.IPolylineOptions | any = {};
const f: (s: string, a: number) => string = (s, a) => {
const m = /rgba?\((\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*\d+[\.\d+]*)*\)/g.exec(s);
if (m && m.length > 3) {
- Read upRead up
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 SetValues
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public SetValues(options: { [key: string]: any }): void {
const p: Array<string> = new Array<string>();
for (const key in options) {
if (key !== '') {
if (key === 'position' && !options[key].hasOwnProperty('altitude') &&
- Read upRead up
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 CreateRotatedImageMarker
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
protected static CreateRotatedImageMarker(iconInfo: IMarkerIconInfo): string|Promise<{icon: string, iconInfo: IMarkerIconInfo}> {
if (document == null) { throw Error('Document context (window.document) is required for rotated image markers'); }
if (iconInfo == null || iconInfo.rotation == null || iconInfo.url == null) {
throw Error('IMarkerIconInfo.rotation, IMarkerIconInfo.url are required for rotated image markers.');
}
- Read upRead up
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"