component.ts 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.

import {HttpParams} from '@angular/common/http';
import {Component, ComponentFactoryResolver, Input} from '@angular/core';
17
import {Event, ReplicationController, ReplicationControllerList} from '@api/backendapi';
18 19
import {StateService} from '@uirouter/core';
import {Observable} from 'rxjs/Observable';
20
import {replicationControllerState} from '../../../../resource/workloads/replicationcontroller/state';
21 22

import {ResourceListWithStatuses} from '../../../resources/list';
23
import {NamespaceService} from '../../../services/global/namespace';
24 25 26
import {NotificationsService} from '../../../services/global/notifications';
import {EndpointManager, Resource} from '../../../services/resource/endpoint';
import {NamespacedResourceService} from '../../../services/resource/resource';
27
import {MenuComponent} from '../../list/column/menu/component';
28 29 30 31 32 33 34 35 36 37 38 39 40
import {ListGroupIdentifiers, ListIdentifiers} from '../groupids';

@Component({
  selector: 'kd-replication-controller-list',
  templateUrl: './template.html',
})
export class ReplicationControllerListComponent extends
    ResourceListWithStatuses<ReplicationControllerList, ReplicationController> {
  @Input() endpoint = EndpointManager.resource(Resource.replicationController, true).list();

  constructor(
      state: StateService,
      private readonly replicationController_: NamespacedResourceService<ReplicationControllerList>,
41 42
      notifications: NotificationsService, resolver: ComponentFactoryResolver,
      private readonly namespaceService_: NamespaceService) {
43
    super(replicationControllerState.name, state, notifications, resolver);
44 45 46 47 48 49 50
    this.id = ListIdentifiers.replicationController;
    this.groupId = ListGroupIdentifiers.workloads;

    // Register status icon handlers
    this.registerBinding(this.icon.checkCircle, 'kd-success', this.isInSuccessState);
    this.registerBinding(this.icon.timelapse, 'kd-muted', this.isInPendingState);
    this.registerBinding(this.icon.error, 'kd-error', this.isInErrorState);
51

52 53 54
    // Register action columns.
    this.registerActionColumn<MenuComponent>('menu', MenuComponent);

55 56
    // Register dynamic columns.
    this.registerDynamicColumn('namespace', 'name', this.shouldShowNamespaceColumn_.bind(this));
57 58 59 60 61 62 63 64 65 66 67
  }

  getResourceObservable(params?: HttpParams): Observable<ReplicationControllerList> {
    return this.replicationController_.get(this.endpoint, undefined, params);
  }

  map(rcList: ReplicationControllerList): ReplicationController[] {
    return rcList.replicationControllers;
  }

  isInErrorState(resource: ReplicationController): boolean {
68
    return resource.podInfo.warnings.length > 0;
69 70 71
  }

  isInPendingState(resource: ReplicationController): boolean {
72
    return resource.podInfo.warnings.length === 0 && resource.podInfo.pending > 0;
73 74 75
  }

  isInSuccessState(resource: ReplicationController): boolean {
76
    return resource.podInfo.warnings.length === 0 && resource.podInfo.pending === 0;
77 78
  }

79
  protected getDisplayColumns(): string[] {
80 81 82
    return ['statusicon', 'name', 'labels', 'pods', 'age', 'images'];
  }

83 84 85 86
  private shouldShowNamespaceColumn_(): boolean {
    return this.namespaceService_.areMultipleNamespacesSelected();
  }

87
  hasErrors(rc: ReplicationController): boolean {
88
    return rc.podInfo.warnings.length > 0;
89 90 91
  }

  getEvents(rc: ReplicationController): Event[] {
92
    return rc.podInfo.warnings;
93 94
  }
}