Skip to content
Snippets Groups Projects
Commit 528a83d5 authored by Martin Mechtel's avatar Martin Mechtel
Browse files

merge second

parent 93a9ebcc
No related branches found
No related tags found
No related merge requests found
import { ReportEntry } from './../syscheck-data.service';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { SyscheckDataService, EnvironmentRating, EnvironmentData } from '../syscheck-data.service'; import { SyscheckDataService } from '../syscheck-data.service';
import { GeneratedFile } from '@angular/compiler'; import { GeneratedFile } from '@angular/compiler';
...@@ -12,7 +13,7 @@ export class EnvironmentCheckComponent implements OnInit { ...@@ -12,7 +13,7 @@ export class EnvironmentCheckComponent implements OnInit {
environmentRating: EnvironmentRating; environmentRating: EnvironmentRating;
screenSize: any; screenSize: any;
deviceInfo: any; deviceInfo: any;
osName: any = "Unknown"; osName: any = 'Unknown';
regex: any; regex: any;
helperRegex: any; helperRegex: any;
isExisting: Array<string>; isExisting: Array<string>;
...@@ -34,23 +35,23 @@ export class EnvironmentCheckComponent implements OnInit { ...@@ -34,23 +35,23 @@ export class EnvironmentCheckComponent implements OnInit {
BrowserRating: 'N/A' BrowserRating: 'N/A'
}; };
constructor( constructor(
private ds: SyscheckDataService private ds: SyscheckDataService
) { } ) { }
ngOnInit() { ngOnInit() {
this.deviceInfo = window.navigator.userAgent; this.deviceInfo = window.navigator.userAgent;
// tslint:disable-next-line:max-line-length
this.regex = /(MSIE|Trident|(?!Gecko.+)Firefox|(?!AppleWebKit.+Chrome.+)Safari(?!.+Edge)|(?!AppleWebKit.+)Chrome(?!.+Edge)|(?!AppleWebKit.+Chrome.+Safari.+)Edge|AppleWebKit(?!.+Chrome|.+Safari)|Gecko(?!.+Firefox))(?: |\/)([\d\.apre]+)/; this.regex = /(MSIE|Trident|(?!Gecko.+)Firefox|(?!AppleWebKit.+Chrome.+)Safari(?!.+Edge)|(?!AppleWebKit.+)Chrome(?!.+Edge)|(?!AppleWebKit.+Chrome.+Safari.+)Edge|AppleWebKit(?!.+Chrome|.+Safari)|Gecko(?!.+Firefox))(?: |\/)([\d\.apre]+)/;
// credit due to: https://gist.github.com/ticky/3909462#gistcomment-2245669 // credit due to: https://gist.github.com/ticky/3909462#gistcomment-2245669
this.helperRegex = /[^.]*/; this.helperRegex = /[^.]*/;
this.isExisting = this.regex.exec(this.deviceInfo); this.isExisting = this.regex.exec(this.deviceInfo);
this.isExisting = this.helperRegex.exec(this.isExisting[0]); this.isExisting = this.helperRegex.exec(this.isExisting[0]);
this.result = this.isExisting[0].split("/"); this.result = this.isExisting[0].split('/');
this.screenSize = "Screen size is " + window.screen.width + " pixels by " + window.screen.height + " pixels"; this.screenSize = 'Screen size is ' + window.screen.width + ' pixels by ' + window.screen.height + ' pixels';
this.osName = window.navigator.platform; this.osName = window.navigator.platform;
this.discoveredEnvData = { this.discoveredEnvData = {
osName: this.getOSVersion(), osName: this.getOSVersion(),
browserName: this.result[0], browserName: this.result[0],
...@@ -59,30 +60,101 @@ export class EnvironmentCheckComponent implements OnInit { ...@@ -59,30 +60,101 @@ export class EnvironmentCheckComponent implements OnInit {
height: window.screen.height, height: window.screen.height,
width: window.screen.width width: window.screen.width
} }
} };
this.discoveredEnvRating = this.calculateEnvironmentRating(this.discoveredEnvData);
this.discoveredEnvRating = this.ds.calculateEnvironmentRating(this.discoveredEnvData); // dummy: transform to label-value-pairs!
const myReport: ReportEntry[] = [];
myReport.push({'label': 'lalala', 'value': 'sososo'});
this.ds.environmentData$.next(this.discoveredEnvData); this.ds.environmentData$.next(myReport);
} }
getOSVersion() { getOSVersion() {
if (window.navigator.userAgent.indexOf("Windows")!= -1) { if (window.navigator.userAgent.indexOf('Windows') !== -1) {
if (window.navigator.userAgent.indexOf("Windows NT 10.0")!= -1) this.osName="Windows 10"; if (window.navigator.userAgent.indexOf('Windows NT 10.0') !== -1) {
if (window.navigator.userAgent.indexOf("Windows NT 6.2") != -1) this.osName="Windows 8"; this.osName = 'Windows 10';
if (window.navigator.userAgent.indexOf("Windows NT 6.1") != -1) this.osName="Windows 7"; }
if (window.navigator.userAgent.indexOf("Windows NT 6.0") != -1) this.osName="Windows Vista"; if (window.navigator.userAgent.indexOf('Windows NT 6.2') !== -1) {
if (window.navigator.userAgent.indexOf("Windows NT 5.1") != -1) this.osName="Windows XP"; this.osName = 'Windows 8';
if (window.navigator.userAgent.indexOf("Windows NT 5.0") != -1) this.osName="Windows 2000"; }
if (window.navigator.userAgent.indexOf('Windows NT 6.1') !== -1) {
this.osName = 'Windows 7';
}
if (window.navigator.userAgent.indexOf('Windows NT 6.0') !== -1) {
this.osName = 'Windows Vista';
}
if (window.navigator.userAgent.indexOf('Windows NT 5.1') !== -1) {
this.osName = 'Windows XP';
}
if (window.navigator.userAgent.indexOf('Windows NT 5.0') !== -1) {
this.osName = 'Windows 2000';
}
}
if (window.navigator.userAgent.indexOf('Mac') !== -1) {
this.osName = 'Mac/iOS';
}
if (window.navigator.userAgent.indexOf('X11') !== -1) {
this.osName = 'UNIX';
}
if (window.navigator.userAgent.indexOf('Linux') !== -1) {
this.osName = 'Linux';
} }
if (window.navigator.userAgent.indexOf("Mac") != -1) this.osName="Mac/iOS";
if (window.navigator.userAgent.indexOf("X11") != -1) this.osName="UNIX";
if (window.navigator.userAgent.indexOf("Linux") != -1) this.osName="Linux";
return this.osName; return this.osName;
} }
goto() { goto() {
this.ds.questionnaireAvailable$.next(true); this.ds.questionnaireAvailable$.next(true);
} }
// // // //
public calculateEnvironmentRating(ed: EnvironmentData): EnvironmentRating {
const ratings: EnvironmentRating = {
OSRating: 'N/A',
ResolutionRating: 'N/A',
BrowserRating: 'N/A'
};
if (ed.osName === 'Windows 7' || ed.osName === 'Windows 10' || ed.osName === 'Windows 8' || ed.osName === 'Mac/iOS') {
ratings.OSRating = 'Good';
} else if (ed.osName === 'Windows Vista' || ed.osName === 'Linux' || ed.osName === 'UNIX') {
ratings.OSRating = 'Possibly compatible';
} else {
ratings.OSRating = 'Not compatible';
}
if (ed.browserName.indexOf('Chrome') || ed.browserName.indexOf('Mozilla')) {
if (parseInt(ed.browserVersion, 10) >= 60) {
ratings.BrowserRating = 'Good';
} else {
ratings.BrowserRating = 'Not compatible';
}
}
if (ed.resolution.width >= 1024 && ed.resolution.height >= 768) {
ratings.ResolutionRating = 'Good';
} else {
ratings.ResolutionRating = 'Not compatible';
}
return ratings;
}
}
export interface EnvironmentData {
osName: string;
// osVersion: string;
browserName: string;
browserVersion: string;
resolution: {
height: number;
width: number;
};
}
export interface EnvironmentRating {
OSRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
ResolutionRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
BrowserRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
} }
import { SyscheckDataService, NetworkRequestTestResult, ReportEntry } from './../syscheck-data.service'; import { SyscheckDataService, NetworkRequestTestResult, NetworkRating, ReportEntry } from './../syscheck-data.service';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { BackendService, RequestBenchmarkerFunction, RequestBenchmarkerFunctionCallback} from '../backend.service'; import { BackendService, RequestBenchmarkerFunction, RequestBenchmarkerFunctionCallback} from '../backend.service';
...@@ -165,20 +165,3 @@ export interface AverageSpeed { ...@@ -165,20 +165,3 @@ export interface AverageSpeed {
downloadTest: number; downloadTest: number;
pingTest: number; pingTest: number;
} }
export interface EnvironmentData {
osName: string;
// osVersion: string;
browserName: string;
browserVersion: string;
resolution: {
height: number;
width: number;
};
}
export interface EnvironmentRating {
OSRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
ResolutionRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
BrowserRating: 'N/A' | 'Good'| 'Not compatible' | 'Possibly compatible';
}
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<mat-spinner></mat-spinner> <mat-spinner></mat-spinner>
</div> </div>
<div class="step-body" #questionnaireBody> <div class="step-body" #questionnaireBody>
<div [formGroup]="form"> <!-- <div [formGroup]="form">
<p *ngFor="let f of formdef"> <div *ngFor="let f of formdef">
<label>{{f.prompt}}</label> <label>{{f.prompt}}</label>
<div [ngSwitch]="f.type"> <div [ngSwitch]="f.type">
...@@ -18,6 +18,6 @@ ...@@ -18,6 +18,6 @@
</div> </div>
<div class="errorMessage" *ngIf="!isValid">{{f.prompt}} is required</div> <div class="errorMessage" *ngIf="!isValid">{{f.prompt}} is required</div>
</p> </div>
</div> </div>-->
</div> </div>
...@@ -56,38 +56,6 @@ export class SyscheckDataService { ...@@ -56,38 +56,6 @@ export class SyscheckDataService {
} }
} }
} }
public calculateEnvironmentRating(ed: EnvironmentData): EnvironmentRating {
let ratings: EnvironmentRating = {
OSRating: 'N/A',
ResolutionRating: 'N/A',
BrowserRating: 'N/A'
};
if(ed.osName === "Windows 7" || ed.osName === "Windows 10" || ed.osName === "Windows 8" || ed.osName === "Mac/iOS") {
ratings.OSRating = 'Good';
} else if (ed.osName === "Windows Vista" || ed.osName === "Linux" || ed.osName === "UNIX") {
ratings.OSRating = 'Possibly compatible';
} else {
ratings.OSRating = 'Not compatible';
}
if(ed.browserName.indexOf("Chrome") || ed.browserName.indexOf("Mozilla"))
if(parseInt(ed.browserVersion) >= 60) {
ratings.BrowserRating = 'Good'
}
else {
ratings.BrowserRating = 'Not compatible'
}
if(ed.resolution.width >= 1024 && ed.resolution.height >= 768) {
ratings.ResolutionRating = 'Good'
} else {
ratings.ResolutionRating = 'Not compatible'
}
return ratings;
}
} }
export interface NetworkData { export interface NetworkData {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment