title.ts 1.3 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.

15 16
import {Injectable} from '@angular/core';
import {Title} from '@angular/platform-browser';
17

18
import {GlobalSettingsService} from './globalsettings';
19 20 21 22 23

@Injectable()
export class TitleService {
  clusterName = '';

24
  constructor(private readonly title_: Title, private readonly settings_: GlobalSettingsService) {}
25

26
  update(): void {
27
    this.settings_.load(
S
Shu Muto 已提交
28 29 30 31 32 33 34
      () => {
        this.clusterName = this.settings_.getClusterName();
        this.apply_();
      },
      () => {
        this.clusterName = '';
        this.apply_();
35
      }
S
Shu Muto 已提交
36
    );
37 38 39
  }

  private apply_(): void {
40
    let title = 'Kubernetes Dashboard';
41 42

    if (this.clusterName && this.clusterName.length > 0) {
43
      title = `${this.clusterName} - ` + title;
44 45 46 47 48
    }

    this.title_.setTitle(title);
  }
}