component.ts 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2017 The Kubernetes Authors.
//
// 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.

S
Shu Muto 已提交
15 16 17 18
import { Component, OnDestroy, OnInit } from '@angular/core';
import { ServiceDetail } from '@api/backendapi';
import { StateService } from '@uirouter/core';
import { Subscription } from 'rxjs/Subscription';
19

S
Shu Muto 已提交
20 21 22 23 24 25 26 27 28 29
import {
  ActionbarService,
  ResourceMeta,
} from '../../../../common/services/global/actionbar';
import { NotificationsService } from '../../../../common/services/global/notifications';
import {
  EndpointManager,
  Resource,
} from '../../../../common/services/resource/endpoint';
import { NamespacedResourceService } from '../../../../common/services/resource/resource';
30 31 32 33 34 35 36 37 38 39

@Component({
  selector: 'kd-service-detail',
  templateUrl: './template.html',
})
export class ServiceDetailComponent implements OnInit, OnDestroy {
  private serviceSubscription_: Subscription;
  private serviceName_: string;
  service: ServiceDetail;
  isInitialized = false;
40 41
  podListEndpoint: string;
  eventListEndpoint: string;
42 43

  constructor(
S
Shu Muto 已提交
44 45 46 47 48
    private readonly service_: NamespacedResourceService<ServiceDetail>,
    private readonly actionbar_: ActionbarService,
    private readonly state_: StateService,
    private readonly notifications_: NotificationsService
  ) {}
49 50 51

  ngOnInit(): void {
    this.serviceName_ = this.state_.params.resourceName;
S
Shu Muto 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
    this.podListEndpoint = EndpointManager.resource(
      Resource.service,
      true
    ).child(this.serviceName_, Resource.pod);
    this.eventListEndpoint = EndpointManager.resource(
      Resource.service,
      true
    ).child(this.serviceName_, Resource.event);
    this.serviceSubscription_ = this.service_
      .get(
        EndpointManager.resource(Resource.service, true).detail(),
        this.serviceName_
      )
      .startWith({})
      .subscribe((d: ServiceDetail) => {
        this.service = d;
        this.notifications_.pushErrors(d.errors);
        this.actionbar_.onInit.emit(
          new ResourceMeta('Service', d.objectMeta, d.typeMeta)
        );
        this.isInitialized = true;
      });
74 75 76 77 78 79
  }

  ngOnDestroy(): void {
    this.serviceSubscription_.unsubscribe();
  }
}