aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/global-notice
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/global-notice')
-rw-r--r--sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.css20
-rw-r--r--sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.html18
-rw-r--r--sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.spec.ts37
-rw-r--r--sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.ts48
4 files changed, 0 insertions, 123 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.css b/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.css
deleted file mode 100644
index 06f3c090..00000000
--- a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.css
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * 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
- */
-
-.alert-div{
- position: fixed;
- top: 100px;
- left: 0;
- right: 0;
- margin: auto;
- width: 400px;
-} \ No newline at end of file
diff --git a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.html b/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.html
deleted file mode 100644
index a23e25d4..00000000
--- a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!--
-/**
- * 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
- */
--->
-
-<div class="alert-div">
- <alert *ngFor="let notice of notices; let i = index;" [type]="noticeType[notice.type]" dismissible="true"
- [dismissOnTimeout]="notice.timeout" (onClosed)="onClosed(i)">{{notice.content}}</alert>
-</div> \ No newline at end of file
diff --git a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.spec.ts b/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.spec.ts
deleted file mode 100644
index b4644d4d..00000000
--- a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.spec.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-/**
- * 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 { async, ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { GlobalNoticeComponent } from './global-notice.component';
-
-describe('GlobalNoticeComponent', () => {
- let component: GlobalNoticeComponent;
- let fixture: ComponentFixture<GlobalNoticeComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ GlobalNoticeComponent ]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(GlobalNoticeComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should be created', () => {
- expect(component).toBeTruthy();
- });
-});
diff --git a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.ts b/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.ts
deleted file mode 100644
index 35520683..00000000
--- a/sdc-workflow-designer-ui/src/app/components/global-notice/global-notice.component.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * 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);
- }
-
-}