summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.ts
blob: 3552068399cc2210f100f80d683a5bb27881e50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
 * Copyright (c) 2017 ZTE Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     ZTE - initial API and implementation and/or initial documentation
 */

import { Component, OnInit } from '@angular/core';

import { Notice } from '../../model/notice';
import { NoticeType } from '../../model/notice-type.enum';
import { NoticeService } from '../../services/notice.service';

@Component({
  selector: 'wfm-notice',
  templateUrl: './global-notice.component.html',
  styleUrls: ['./global-notice.component.css']
})
export class GlobalNoticeComponent implements OnInit {
  public notices: Notice[] = [];
  public noticeType = NoticeType;

  constructor(private noticeService: NoticeService) { }

  ngOnInit() {
    // const t = new Notice(NoticeType.success, 'success');
    // const t1 = new Notice(NoticeType.info, 'info');
    // const t2 = new Notice(NoticeType.warning, 'warning');
    // const t3 = new Notice(NoticeType.danger, 'danger');
    // this.notices.push(t);
    // this.notices.push(t1);
    // this.notices.push(t2);
    // this.notices.push(t3);
    this.noticeService.showNotice$.subscribe(notice => {
      this.notices.push(notice);
    });
  }

  public onClosed(index: number): void {
    this.notices.splice(index, 1);
  }

}