blob: 76b628e0e8a1f6e10dab7af723fe60af43320719 [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* 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 { Component, Input, OnChanges, OnDestroy, OnInit } from '@angular/core';
import { animate, state, style, transition, trigger } from '@angular/animations';
import {
FnService,
IconService,
LogService,
DetailsPanelBaseImpl,
WebSocketService
} from 'gui2-fw-lib';
/**
* The details view when a port row is clicked from the Port view
*
* This is expected to be passed an 'id' and it makes a call
* to the WebSocket with an portDetailsRequest, and gets back an
* portDetailsResponse.
*
* The animated fly-in is controlled by the animation below
* The portDetailsState is attached to port-details-panel
* and is false (flies out) when id='' and true (flies in) when
* id has a value
*/
@Component({
selector: 'onos-portdetails',
templateUrl: './portdetails.component.html',
styleUrls: ['./portdetails.component.css', '../../../fw/widget/panel.css', '../../../fw/widget/panel-theme.css'],
animations: [
trigger('portDetailsState', [
state('true', style({
transform: 'translateX(-100%)',
opacity: '100'
})),
state('false', style({
transform: 'translateX(0%)',
opacity: '0'
})),
transition('0 => 1', animate('100ms ease-in')),
transition('1 => 0', animate('100ms ease-out'))
])
]
})
export class PortDetailsComponent extends DetailsPanelBaseImpl implements OnInit, OnDestroy, OnChanges {
@Input() id: string;
@Input() devId: string;
constructor(protected fs: FnService,
protected log: LogService,
protected is: IconService,
protected wss: WebSocketService
) {
super(fs, log, wss, 'port');
}
ngOnInit() {
this.init();
this.log.debug('App Details Component initialized:', this.id);
}
/**
* Stop listening to appDetailsResponse on WebSocket
*/
ngOnDestroy() {
this.destroy();
this.log.debug('App Details Component destroyed');
}
/**
* Details Panel Data Request on row selection changes
* Should be called whenever id changes
* If id or devId is empty, no request is made
*/
ngOnChanges() {
if (this.id === '' || this.devId === '') {
return '';
} else {
const query = {
'id': this.id,
'devId': this.devId
};
this.requestDetailsPanelData(query);
}
}
}