Home page carousel 73/2173/5
authorSrinivasan Selvam <srinivasan.s.n@huawei.com>
Fri, 27 Dec 2019 10:31:25 +0000 (16:01 +0530)
committerSrinivasan Selvam <srinivasan.s.n@huawei.com>
Thu, 9 Apr 2020 05:48:59 +0000 (11:18 +0530)
commit5c2048d4d3e672783eea4f306aa9a03f33a1a9f2
treed175462db992df57ff7b703be23ee134c6e63011
parent59f512662c02a16c1d5c45b090b185d2e773310f
Home page carousel

login & signup module - role based login added

app management - deployment, history

code optimizations - deployment history

describe page added

nodes features - add, edit, delete

login page beautifications using Particle.js added

signup page particle.js added

Docker file added to create development mode container

Home page modifications using bootstrap added

code optimisation by removing inline css elements

Dashboard component added with the features to view pod-stability
nodes stability and services running, successful deployment datasets
and Deployment success / failure / pending status with doughnut graphs
using bootstrap components with responsive UI

Home page modified with features in portal

Added copyright information in home page

Signed-off-by: Srinivasan Selvam <srinivasan.s.n@huawei.com>
Change-Id: Iba85d2a98a29596baaecd9c6d6744913fb23ccbc
118 files changed:
blueprints/common/eliot-ui/frontend-src/Dockerfile [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/README.md
blueprints/common/eliot-ui/frontend-src/angular.json
blueprints/common/eliot-ui/frontend-src/e2e/src/app.e2e-spec.ts
blueprints/common/eliot-ui/frontend-src/karma.conf.js
blueprints/common/eliot-ui/frontend-src/ng.log [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/nohup.out [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/package-lock.json
blueprints/common/eliot-ui/frontend-src/package.json
blueprints/common/eliot-ui/frontend-src/proxy-conf.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/proxy.conf.json [deleted file]
blueprints/common/eliot-ui/frontend-src/src/app/_helpers/auth.guard.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_helpers/auth.guard.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_models/user.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_models/user.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/AuthGuard.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/authentication.service.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/authentication.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/interceptor.service.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/interceptor.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/_services/user.service.spec.ts [moved from blueprints/common/eliot-ui/frontend-src/src/app/myservice.service.spec.ts with 53% similarity]
blueprints/common/eliot-ui/frontend-src/src/app/_services/user.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/app-routing.module.ts
blueprints/common/eliot-ui/frontend-src/src/app/app.component.html
blueprints/common/eliot-ui/frontend-src/src/app/app.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/app.component.spec.ts
blueprints/common/eliot-ui/frontend-src/src/app/app.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/app.module.ts
blueprints/common/eliot-ui/frontend-src/src/app/dashboard/dashboard.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/dashboard/dashboard.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/dashboard/dashboard.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/dashboard/dashboard.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/datainterface.ts
blueprints/common/eliot-ui/frontend-src/src/app/deployments/deployments.component.html
blueprints/common/eliot-ui/frontend-src/src/app/deployments/deployments.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/deployments/deployments.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/deployments/toast.service.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/deployments/toast.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/description/description.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/description/description.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/description/description.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/description/description.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/eliotservice.service.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/eliotservice.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/history/history.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/history/history.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/history/history.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/history/history.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.html
blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/login/login.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/login/login.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/login/login.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/login/login.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/menu-item/menu-item.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/myservice.service.ts [deleted file]
blueprints/common/eliot-ui/frontend-src/src/app/nodes/dialog-overview-example-dialog.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/nodes/nodes.component.html
blueprints/common/eliot-ui/frontend-src/src/app/nodes/nodes.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/nodes/nodes.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/pods/pods.component.html
blueprints/common/eliot-ui/frontend-src/src/app/pods/pods.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/pods/pods.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/pom.xml [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/services/services.component.html
blueprints/common/eliot-ui/frontend-src/src/app/services/services.component.scss
blueprints/common/eliot-ui/frontend-src/src/app/services/services.component.ts
blueprints/common/eliot-ui/frontend-src/src/app/signup/signup.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/signup/signup.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/signup/signup.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/signup/signup.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/terminal/terminal.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/terminal/terminal.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/terminal/terminal.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/terminal/terminal.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.service.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/toolbar/toolbar.service.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/uninstall/uninstall.component.html [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/uninstall/uninstall.component.scss [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/uninstall/uninstall.component.spec.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/app/uninstall/uninstall.component.ts [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/current-deploy.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/dashboard-test.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/history-test.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/history.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/nodes.json
blueprints/common/eliot-ui/frontend-src/src/assets/data/particlesjs-config.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/data/roles.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/akraino-icon-5.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/ioticon5.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/iotlatest1.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/iotlatest6.jpg [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/kubecon-1.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/kubecon-modified.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/login-drone1.jpg [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/login1.jpg [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/login2.jpg [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/plus-1.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/power.jpg [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/images/user-icon.png [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/md/README.md [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/md/readme.md [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/mobile_browsers.txt [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/particlesjs-config-1.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/particlesjs-config.json [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/assets/pods_nods_widget.txt [new file with mode: 0644]
blueprints/common/eliot-ui/frontend-src/src/index.html
blueprints/common/eliot-ui/frontend-src/src/polyfills.ts
blueprints/common/eliot-ui/frontend-src/src/styles.scss
blueprints/common/eliot-ui/frontend-src/src/styles/material-theme.scss [new file with mode: 0644]