;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ IssueComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(IssueComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.component.ts b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.component.ts
new file mode 100644
index 0000000..86bb8b1
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-issue',
+ templateUrl: './issue.component.html',
+ styleUrls: ['./issue.component.css']
+})
+export class IssueComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.module.ts b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.module.ts
new file mode 100644
index 0000000..01defb9
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.module.ts
@@ -0,0 +1,13 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { IssueComponent } from './issue.component';
+import {IssueRoutingModule} from "./issue.routing.module";
+
+@NgModule({
+ declarations: [IssueComponent],
+ imports: [
+ CommonModule,
+ IssueRoutingModule
+ ]
+})
+export class IssueModule { }
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.routing.module.ts b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.routing.module.ts
new file mode 100644
index 0000000..ceb2ee0
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/issue/issue.routing.module.ts
@@ -0,0 +1,23 @@
+import {NgModule} from "@angular/core";
+import {RouterModule,Routes} from "@angular/router";
+import {IssueComponent} from "../issue/issue.component";
+
+
+const routes: Routes = [
+
+ {
+ path :'',
+ component: IssueComponent
+ }
+
+];
+
+@NgModule({
+ imports : [RouterModule.forChild(routes)],
+ exports : [RouterModule]
+
+})
+
+export class IssueRoutingModule {
+
+}
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.css b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.html b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.html
new file mode 100644
index 0000000..e359713
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.html
@@ -0,0 +1,6 @@
+
+ project works!
+
+ {{projectMessage}}
+
+
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.spec.ts b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.spec.ts
new file mode 100644
index 0000000..4ef92cf
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ProjectComponent } from './project.component';
+
+describe('ProjectComponent', () => {
+ let component: ProjectComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [ ProjectComponent ]
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ProjectComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.ts b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.ts
new file mode 100644
index 0000000..a30b494
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/project/project.component.ts
@@ -0,0 +1,16 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-project',
+ templateUrl: './project.component.html',
+ styleUrls: ['./project.component.css']
+})
+export class ProjectComponent implements OnInit {
+
+ projectMessage = 'Project Message';
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.module.ts b/src/web-ui/cli/issue-managament/src/app/pages/project/project.module.ts
new file mode 100644
index 0000000..8b9edca
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/project/project.module.ts
@@ -0,0 +1,13 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { ProjectComponent } from './project.component';
+import {ProjectRoutingModule} from "./project.routing.module";
+
+@NgModule({
+ declarations: [ProjectComponent],
+ imports: [
+ CommonModule,
+ ProjectRoutingModule
+ ]
+})
+export class ProjectModule { }
diff --git a/src/web-ui/cli/issue-managament/src/app/pages/project/project.routing.module.ts b/src/web-ui/cli/issue-managament/src/app/pages/project/project.routing.module.ts
new file mode 100644
index 0000000..abd22af
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/app/pages/project/project.routing.module.ts
@@ -0,0 +1,24 @@
+import {NgModule} from "@angular/core";
+import {RouterModule,Routes} from "@angular/router";
+import {ProjectComponent} from "../project/project.component";
+
+
+
+const routes: Routes = [
+
+ {
+ path :'',
+ component: ProjectComponent
+ }
+
+];
+
+@NgModule({
+ imports : [RouterModule.forChild(routes)],
+ exports : [RouterModule]
+
+})
+
+export class ProjectRoutingModule {
+
+}
diff --git a/src/web-ui/cli/issue-managament/src/assets/.gitkeep b/src/web-ui/cli/issue-managament/src/assets/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/src/web-ui/cli/issue-managament/src/environments/environment.prod.ts b/src/web-ui/cli/issue-managament/src/environments/environment.prod.ts
new file mode 100644
index 0000000..3612073
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/environments/environment.prod.ts
@@ -0,0 +1,3 @@
+export const environment = {
+ production: true
+};
diff --git a/src/web-ui/cli/issue-managament/src/environments/environment.ts b/src/web-ui/cli/issue-managament/src/environments/environment.ts
new file mode 100644
index 0000000..7b4f817
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/environments/environment.ts
@@ -0,0 +1,16 @@
+// This file can be replaced during build by using the `fileReplacements` array.
+// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
+// The list of file replacements can be found in `angular.json`.
+
+export const environment = {
+ production: false
+};
+
+/*
+ * For easier debugging in development mode, you can import the following file
+ * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
+ *
+ * This import should be commented out in production mode because it will have a negative impact
+ * on performance if an error is thrown.
+ */
+// import 'zone.js/dist/zone-error'; // Included with Angular CLI.
diff --git a/src/web-ui/cli/issue-managament/src/favicon.ico b/src/web-ui/cli/issue-managament/src/favicon.ico
new file mode 100644
index 0000000..8081c7c
Binary files /dev/null and b/src/web-ui/cli/issue-managament/src/favicon.ico differ
diff --git a/src/web-ui/cli/issue-managament/src/index.html b/src/web-ui/cli/issue-managament/src/index.html
new file mode 100644
index 0000000..cffc1a2
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+ IssueManagament
+
+
+
+
+
+
+
+
+
diff --git a/src/web-ui/cli/issue-managament/src/main.ts b/src/web-ui/cli/issue-managament/src/main.ts
new file mode 100644
index 0000000..c7b673c
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/main.ts
@@ -0,0 +1,12 @@
+import { enableProdMode } from '@angular/core';
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+
+import { AppModule } from './app/app.module';
+import { environment } from './environments/environment';
+
+if (environment.production) {
+ enableProdMode();
+}
+
+platformBrowserDynamic().bootstrapModule(AppModule)
+ .catch(err => console.error(err));
diff --git a/src/web-ui/cli/issue-managament/src/polyfills.ts b/src/web-ui/cli/issue-managament/src/polyfills.ts
new file mode 100644
index 0000000..aa665d6
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/polyfills.ts
@@ -0,0 +1,63 @@
+/**
+ * This file includes polyfills needed by Angular and is loaded before the app.
+ * You can add your own extra polyfills to this file.
+ *
+ * This file is divided into 2 sections:
+ * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
+ * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
+ * file.
+ *
+ * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
+ * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
+ * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
+ *
+ * Learn more in https://angular.io/guide/browser-support
+ */
+
+/***************************************************************************************************
+ * BROWSER POLYFILLS
+ */
+
+/** IE10 and IE11 requires the following for NgClass support on SVG elements */
+// import 'classlist.js'; // Run `npm install --save classlist.js`.
+
+/**
+ * Web Animations `@angular/platform-browser/animations`
+ * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
+ * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
+ */
+// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
+
+/**
+ * By default, zone.js will patch all possible macroTask and DomEvents
+ * user can disable parts of macroTask/DomEvents patch by setting following flags
+ * because those flags need to be set before `zone.js` being loaded, and webpack
+ * will put import in the top of bundle, so user need to create a separate file
+ * in this directory (for example: zone-flags.ts), and put the following flags
+ * into that file, and then add the following code before importing zone.js.
+ * import './zone-flags.ts';
+ *
+ * The flags allowed in zone-flags.ts are listed here.
+ *
+ * The following flags will work for all browsers.
+ *
+ * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
+ * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
+ * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
+ *
+ * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
+ * with the following flag, it will bypass `zone.js` patch for IE/Edge
+ *
+ * (window as any).__Zone_enable_cross_context_check = true;
+ *
+ */
+
+/***************************************************************************************************
+ * Zone JS is required by default for Angular itself.
+ */
+import 'zone.js/dist/zone'; // Included with Angular CLI.
+
+
+/***************************************************************************************************
+ * APPLICATION IMPORTS
+ */
diff --git a/src/web-ui/cli/issue-managament/src/styles.scss b/src/web-ui/cli/issue-managament/src/styles.scss
new file mode 100644
index 0000000..282ce80
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/styles.scss
@@ -0,0 +1,69 @@
+@import "~bootstrap/scss/bootstrap";
+@import "~material-design-icons-iconfont/dist/material-design-icons.css";
+@import '~@swimlane/ngx-datatable/release/index.css';
+@import '~@swimlane/ngx-datatable/release/themes/bootstrap.css';
+@import '~@swimlane/ngx-datatable/release/assets/icons.css';
+body {
+ margin: 0;
+ font-size: 0.9375rem;
+ font-weight: 300;
+ line-height: 1.5;
+ color: #4E565A;
+ text-align: left;
+ background-color: #F5F7FA;
+}
+
+@font-face {
+ font-family: 'Material Icons';
+ font-style: normal;
+ font-weight: 400;
+}
+
+.material-icons {
+ font-family: 'Material Icons';
+ font-weight: normal;
+ font-style: normal;
+ font-size: 24px;
+ line-height: 1;
+ letter-spacing: normal;
+ text-transform: none;
+ display: inline-block;
+ white-space: nowrap;
+ word-wrap: normal;
+ direction: ltr;
+ -webkit-font-feature-settings: 'liga';
+ -webkit-font-smoothing: antialiased;
+}
+
+$loader-img: url(/assets/images/loading.gif);
+.loading-indicator-block {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ opacity: 0.7;
+ background: $loader-img no-repeat center center;
+ z-index: 100;
+ .backdrop {
+ background: none !important;
+ border-radius: 0px !important;
+ margin-bottom: 10px;
+ }
+ .spinner-three-bounce {
+ display: none;
+ }
+}
+
+$theme-colors: (
+ "primary": #4B89FC,
+ "secondary": #6c757d
+);
+
+@media screen and (max-width: 992px) {
+ .push-right {
+ .sidebar {
+ left: 235px !important;
+ }
+ }
+}
diff --git a/src/web-ui/cli/issue-managament/src/test.ts b/src/web-ui/cli/issue-managament/src/test.ts
new file mode 100644
index 0000000..1631789
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/src/test.ts
@@ -0,0 +1,20 @@
+// This file is required by karma.conf.js and loads recursively all the .spec and framework files
+
+import 'zone.js/dist/zone-testing';
+import { getTestBed } from '@angular/core/testing';
+import {
+ BrowserDynamicTestingModule,
+ platformBrowserDynamicTesting
+} from '@angular/platform-browser-dynamic/testing';
+
+declare const require: any;
+
+// First, initialize the Angular testing environment.
+getTestBed().initTestEnvironment(
+ BrowserDynamicTestingModule,
+ platformBrowserDynamicTesting()
+);
+// Then we find all the tests.
+const context = require.context('./', true, /\.spec\.ts$/);
+// And load the modules.
+context.keys().map(context);
diff --git a/src/web-ui/cli/issue-managament/tsconfig.app.json b/src/web-ui/cli/issue-managament/tsconfig.app.json
new file mode 100644
index 0000000..31f8397
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/tsconfig.app.json
@@ -0,0 +1,14 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "types": []
+ },
+ "include": [
+ "src/**/*.ts"
+ ],
+ "exclude": [
+ "src/test.ts",
+ "src/**/*.spec.ts"
+ ]
+}
diff --git a/src/web-ui/cli/issue-managament/tsconfig.json b/src/web-ui/cli/issue-managament/tsconfig.json
new file mode 100644
index 0000000..0a91f81
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "baseUrl": "./",
+ "outDir": "./dist/out-tsc",
+ "sourceMap": true,
+ "declaration": false,
+ "downlevelIteration": true,
+ "emitDecoratorMetadata": true,
+ "experimentalDecorators": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "es2015",
+ "typeRoots": [
+ "node_modules/@types"
+ ],
+ "lib": [
+ "es2018",
+ "dom"
+ ]
+ }
+}
diff --git a/src/web-ui/cli/issue-managament/tsconfig.spec.json b/src/web-ui/cli/issue-managament/tsconfig.spec.json
new file mode 100644
index 0000000..6400fde
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/tsconfig.spec.json
@@ -0,0 +1,18 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/spec",
+ "types": [
+ "jasmine",
+ "node"
+ ]
+ },
+ "files": [
+ "src/test.ts",
+ "src/polyfills.ts"
+ ],
+ "include": [
+ "src/**/*.spec.ts",
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/src/web-ui/cli/issue-managament/tslint.json b/src/web-ui/cli/issue-managament/tslint.json
new file mode 100644
index 0000000..188bd78
--- /dev/null
+++ b/src/web-ui/cli/issue-managament/tslint.json
@@ -0,0 +1,92 @@
+{
+ "extends": "tslint:recommended",
+ "rules": {
+ "array-type": false,
+ "arrow-parens": false,
+ "deprecation": {
+ "severity": "warn"
+ },
+ "component-class-suffix": true,
+ "contextual-lifecycle": true,
+ "directive-class-suffix": true,
+ "directive-selector": [
+ true,
+ "attribute",
+ "app",
+ "camelCase"
+ ],
+ "component-selector": [
+ true,
+ "element",
+ "app",
+ "kebab-case"
+ ],
+ "import-blacklist": [
+ true,
+ "rxjs/Rx"
+ ],
+ "interface-name": false,
+ "max-classes-per-file": false,
+ "max-line-length": [
+ true,
+ 140
+ ],
+ "member-access": false,
+ "member-ordering": [
+ true,
+ {
+ "order": [
+ "static-field",
+ "instance-field",
+ "static-method",
+ "instance-method"
+ ]
+ }
+ ],
+ "no-consecutive-blank-lines": false,
+ "no-console": [
+ true,
+ "debug",
+ "info",
+ "time",
+ "timeEnd",
+ "trace"
+ ],
+ "no-empty": false,
+ "no-inferrable-types": [
+ true,
+ "ignore-params"
+ ],
+ "no-non-null-assertion": true,
+ "no-redundant-jsdoc": true,
+ "no-switch-case-fall-through": true,
+ "no-use-before-declare": true,
+ "no-var-requires": false,
+ "object-literal-key-quotes": [
+ true,
+ "as-needed"
+ ],
+ "object-literal-sort-keys": false,
+ "ordered-imports": false,
+ "quotemark": [
+ true,
+ "single"
+ ],
+ "trailing-comma": false,
+ "no-conflicting-lifecycle": true,
+ "no-host-metadata-property": true,
+ "no-input-rename": true,
+ "no-inputs-metadata-property": true,
+ "no-output-native": true,
+ "no-output-on-prefix": true,
+ "no-output-rename": true,
+ "no-outputs-metadata-property": true,
+ "template-banana-in-box": true,
+ "template-no-negated-async": true,
+ "use-lifecycle-interface": true,
+ "use-pipe-transform-interface": true
+ },
+ "rulesDirectory": [
+ "codelyzer"
+ ]
+}
\ No newline at end of file