component.ts 3.7 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, StatefulSet, StatefulSetList} from '@api/backendapi';
18 19
import {StateService} from '@uirouter/core';
import {Observable} from 'rxjs/Observable';
20
import {statefulSetState} from '../../../../resource/workloads/statefulset/state';
21
import {ResourceListWithStatuses} from '../../../resources/list';
22
import {NamespaceService} from '../../../services/global/namespace';
23 24 25
import {NotificationsService} from '../../../services/global/notifications';
import {EndpointManager, Resource} from '../../../services/resource/endpoint';
import {NamespacedResourceService} from '../../../services/resource/resource';
26
import {MenuComponent} from '../../list/column/menu/component';
27 28 29 30 31 32 33 34 35 36 37 38 39
import {ListGroupIdentifiers, ListIdentifiers} from '../groupids';

@Component({
  selector: 'kd-stateful-set-list',
  templateUrl: './template.html',
})
export class StatefulSetListComponent extends
    ResourceListWithStatuses<StatefulSetList, StatefulSet> {
  @Input() endpoint = EndpointManager.resource(Resource.statefulSet, true).list();

  constructor(
      state: StateService,
      private readonly statefulSet_: NamespacedResourceService<StatefulSetList>,
40 41
      resolver: ComponentFactoryResolver, notifications: NotificationsService,
      private readonly namespaceService_: NamespaceService) {
42
    super(statefulSetState.name, state, notifications, resolver);
43 44 45 46 47 48 49
    this.id = ListIdentifiers.statefulSet;
    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);
50

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

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

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

  map(statefulSetList: StatefulSetList): StatefulSet[] {
    return statefulSetList.statefulSets;
  }

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

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

  isInSuccessState(resource: StatefulSet): boolean {
75
    return resource.podInfo.warnings.length === 0 && resource.podInfo.pending === 0;
76 77 78 79 80 81 82
  }

  getDisplayColumns(): string[] {
    return ['statusicon', 'name', 'labels', 'pods', 'age', 'images'];
  }

  hasErrors(statefulSet: StatefulSet): boolean {
83
    return statefulSet.podInfo.warnings.length > 0;
84 85 86
  }

  getEvents(statefulSet: StatefulSet): Event[] {
87
    return statefulSet.podInfo.warnings;
88
  }
89 90 91 92

  private shouldShowNamespaceColumn_(): boolean {
    return this.namespaceService_.areMultipleNamespacesSelected();
  }
93
}