summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/homes.service.ts
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-08-22 16:55:57 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-08-22 16:56:09 +0800
commitd0f5347dc16b5aa9fc95eb520fbc9a1c7b672b09 (patch)
treeb3891d8de290d755d7f0f00d35bb77d3b89ad747 /usecaseui-portal/src/app/homes.service.ts
parent56923755c761897cc86ca2457667fcc3e6a0e43f (diff)
feat: change the project structure and add mock data function
Change-Id: I381845bff5eb37d1fab3eba8cf1ae7838df523b7 Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/homes.service.ts')
-rw-r--r--usecaseui-portal/src/app/homes.service.ts132
1 files changed, 0 insertions, 132 deletions
diff --git a/usecaseui-portal/src/app/homes.service.ts b/usecaseui-portal/src/app/homes.service.ts
deleted file mode 100644
index b9b9d5bf..00000000
--- a/usecaseui-portal/src/app/homes.service.ts
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
- Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-*/
-import { Injectable } from '@angular/core';
-import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http';
-import { Observable } from 'rxjs/Observable';
-import { homeData, homeVmLineData, servicesSelectData, servicesTableData, creatensData, onboardTableData, onboardDataVNF, onboardDataPNF , baseUrl} from './dataInterface';
-
-@Injectable()
-export class HomesService {
-
- constructor(private http: HttpClient) { }
- baseUrl = baseUrl.baseUrl;
- baseUrlbar = baseUrl.baseUrl + "/uui-lcm/";
- url = {
- home_serviceData: this.baseUrl + "/uui-lcm/serviceNumByCustomer",
- home_performanceData: this.baseUrl + "/performance/queryAllSourceNames",
- home_alarmData: this.baseUrl + "/alarm/statusCount",
- home_alarmChartData: this.baseUrl + "/alarm/diagram",
- home_servicebarData:this.baseUrl + "",
- home_servicebarnsData: this.baseUrlbar + "ns-packages",
- home_servicebarvnfData: this.baseUrlbar + "vnf-packages",
- home_servicebarpnfData: this.baseUrlbar + "pnf-packages",
- sourceNames: this.baseUrl + "/alarm/getSourceNames",
- listSortMasters:this.baseUrl+"/listSortMasters",
- currentLanguage:"/api/portal-auxapi/languageSetting/user/",
-
- }
-
- // Time formatting milliseconds to normal
- dateformater(vmstime) {
- if (!vmstime) {
- return ''
- }
- let mstime = Number((vmstime + '').slice(0, 13));
- let time = new Date(mstime);
- let year = time.getFullYear();
- let month = time.getMonth() + 1;
- let day = time.getDate();
- let hours = time.getHours();
- let minutes = time.getMinutes();
- let seconds = time.getSeconds();
- let formattime = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
- return formattime;
- }
-
-
- // home
- getHomeServiceData() {
- return this.http.get<any>(this.url.home_serviceData);
- }
- getHomePerformanceData() {
- return this.http.get<String[]>(this.url.home_performanceData);
- }
- getHomeAlarmData() {
- return this.http.get<any>(this.url.home_alarmData);
- }
- getHomeAlarmChartData(paramsObj) {
- let params = new HttpParams({ fromObject: paramsObj });
- return this.http.get<any>(this.url.home_alarmChartData, { params });
- }
-
- getHomeServiceBarData(){
- return this.http.get<any>(this.url.home_servicebarData);
- }
- getHomeServiceBarNsData(){
- return this.http.get<any>(this.url.home_servicebarnsData);
- }
- getHomeServiceBarVnfData(){
- return this.http.get<any>(this.url.home_servicebarvnfData);
- }
- getHomeServiceBarPnfData(){
- return this.http.get<any>(this.url.home_servicebarpnfData);
- }
-
- // alarm data
- getAlarmFormData(currentPage: number, pageSize: number, sourceName?: string, priority?: string, startTime?: string, endTime?: string, vfStatus?: string) {
- return this.http.get<any>(this.baseUrl + '/alarm/' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&priority=' + priority + '&startTime=' + startTime + '&endTime=' + endTime + '&vfStatus=' + vfStatus);
- }
-
- getSourceNames() {
- return this.http.get<any>(this.baseUrl + '/alarm/getSourceNames/');
- }
-
- getstatuscount() {
- let httpurl = this.baseUrl + '/alarm/statusCount';
- return this.http.get<any>(httpurl);
- }
- getAlarmDetailData(id) {
- let httpurl = this.baseUrl + '/alarm/getAlarmsHeaderDetail/' + id;
- return this.http.get<any>(httpurl);
- }
-
- // performance data
- getqueryAllSourceNames() {
- let httpurl = this.baseUrl + "/performance/queryAllSourceNames";
- return this.http.get<any>(httpurl);
- }
- getperformanceSourceNames(currentPage: number, pageSize: number, sourceName: string) {
- let httpurl = this.baseUrl + "/performanceSsourceNames" + "/" + currentPage + "/" + pageSize + "?sourceName=" + sourceName;
- return this.http.get<any>(httpurl);
- }
- getPerformanceFormData(currentPage: number, pageSize: number, sourceName?: string, startTime?: string, endTime?: string) {
- return this.http.get<any>(this.baseUrl + '/performance' + '/' + currentPage + '/' + pageSize + '?sourceName=' + sourceName + '&startTime=' + startTime + '&endTime=' + endTime);
- }
- getPerformanceHeaderDetail(id) {
- let httpurl = this.baseUrl + '/performance/getPerformanceHeaderDetail/' + id;
- return this.http.get<any>(httpurl);
- }
-
-
- getListSortMasters(){
- return this.http.get<any>(this.url.listSortMasters);
- }
-
- getCurrentLanguage(currentloginId){
- let url=this.url.currentLanguage+currentloginId;
- return this.http.get<any>(url);
- }
-}