blob: e556782ce9e8789124dd92ef7b24cd7bde1a72c8 [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 { Injectable } from '@angular/core';
import { GlyphService } from './glyph.service';
import { LogService } from '../log.service';
import { SvgUtilService } from './svgutil.service';
import * as d3 from 'd3';
const vboxSize = 50;
export const glyphMapping = new Map<string, string>([
// Maps icon ID to the glyph ID it uses.
// NOTE: icon ID maps to a CSS class for styling that icon
['active', 'checkMark'],
['inactive', 'xMark'],
['plus', 'plus'],
['minus', 'minus'],
['play', 'play'],
['stop', 'stop'],
['upload', 'upload'],
['download', 'download'],
['delta', 'delta'],
['nonzero', 'nonzero'],
['close', 'xClose'],
['m_cloud', 'm_cloud'],
['m_map', 'm_map'],
['m_selectMap', 'm_selectMap'],
['thatsNoMoon', 'thatsNoMoon'],
['m_ports', 'm_ports'],
['m_switch', 'm_switch'],
['switch', 'm_switch'],
['m_roadm', 'm_roadm'],
['roadm', 'm_roadm'],
['m_router', 'm_router'],
['router', 'm_router'],
['m_uiAttached', 'm_uiAttached'],
['m_endstation', 'm_endstation'],
['endstation', 'm_endstation'],
['m_summary', 'm_summary'],
['m_details', 'm_details'],
['m_oblique', 'm_oblique'],
['m_filters', 'm_filters'],
['m_cycleLabels', 'm_cycleLabels'],
['m_cycleGridDisplay', 'm_cycleGridDisplay'],
['m_prev', 'm_prev'],
['m_next', 'm_next'],
['m_flows', 'm_flows'],
['m_allTraffic', 'm_allTraffic'],
['m_xMark', 'm_xMark'],
['m_resetZoom', 'm_resetZoom'],
['m_eqMaster', 'm_eqMaster'],
['m_unknown', 'm_unknown'],
['m_controller', 'm_controller'],
['m_eqMaster', 'm_eqMaster'],
['m_virtual', 'm_virtual'],
['m_other', 'm_other'],
['m_bgpSpeaker', 'm_bgpSpeaker'],
['bgpSpeaker', 'm_bgpSpeaker'],
['m_otn', 'm_otn'],
['otn', 'm_otn'],
['m_terminal_device', 'm_otn'],
['m_ols', 'm_roadm'],
['m_roadm_otn', 'm_roadm_otn'],
['roadm_otn', 'm_roadm_otn'],
['m_fiberSwitch', 'm_fiberSwitch'],
['fiber_switch', 'm_fiberSwitch'],
['m_microwave', 'm_microwave'],
['microwave', 'm_microwave'],
['m_relatedIntents', 'm_relatedIntents'],
['m_intentTraffic', 'm_intentTraffic'],
['m_firewall', 'm_firewall'],
['m_balancer', 'm_balancer'],
['m_ips', 'm_ips'],
['m_ids', 'm_ids'],
['m_olt', 'm_olt'],
['m_onu', 'm_onu'],
['m_swap', 'm_swap'],
['m_shortestGeoPath', 'm_shortestGeoPath'],
['m_source', 'm_source'],
['m_destination', 'm_destination'],
['m_topo', 'm_topo'],
['m_shortestPath', 'm_shortestPath'],
['m_disjointPaths', 'm_disjointPaths'],
['m_region', 'm_region'],
['virtual', 'cord'],
['topo', 'topo'],
['bird', 'bird'],
['refresh', 'refresh'],
['query', 'query'],
['garbage', 'garbage'],
['upArrow', 'triangleUp'],
['downArrow', 'triangleDown'],
['triangleLeft', 'triangleLeft'],
['triangleRight', 'triangleRight'],
['appInactive', 'unknown'],
['uiAttached', 'uiAttached'],
['node', 'node'],
['devIcon_SWITCH', 'switch'],
['devIcon_ROADM', 'roadm'],
['devIcon_OTN', 'otn'],
['portIcon_DEFAULT', 'm_ports'],
['meter', 'meterTable'], // TODO: m_meter icon?
['deviceTable', 'switch'],
['flowTable', 'flowTable'],
['portTable', 'portTable'],
['groupTable', 'groupTable'],
['meterTable', 'meterTable'],
['pipeconfTable', 'pipeconfTable'],
['hostIcon_endstation', 'endstation'],
['hostIcon_router', 'router'],
['hostIcon_bgpSpeaker', 'bgpSpeaker'],
// navigation menu icons...
['nav_apps', 'bird'],
['nav_settings', 'cog'],
['nav_cluster', 'node'],
['nav_processors', 'allTraffic'],
['nav_partitions', 'unknown'],
['nav_topo', 'topo'],
['nav_topo2', 'm_cloud'],
['nav_devs', 'switch'],
['nav_links', 'ports'],
['nav_hosts', 'endstation'],
['nav_intents', 'relatedIntents'],
['nav_tunnels', 'ports'], // TODO: use tunnel glyph, when available
['nav_yang', 'yang'],
]);
/**
* ONOS GUI -- SVG -- Icon Service
*/
@Injectable({
providedIn: 'root',
})
export class IconService {
constructor(
private gs: GlyphService,
private log: LogService,
private sus: SvgUtilService
) {
this.log.debug('IconService constructed');
}
ensureIconLibDefs() {
const body = d3.select('body');
let svg = body.select('svg#IconLibDefs');
if (svg.empty()) {
svg = body.append('svg').attr('id', 'IconLibDefs');
svg.append('defs');
}
return svg.select('defs');
}
/**
* Load an icon only to the svg defs collection
*
* Note: This is added for use with IconComponent, where the icon's
* svg element is defined in the component template (and not built
* inline using d3 manipulation
*
* @param iconCls The icon class as a string
*/
loadIconDef(iconCls: string): void {
let glyphName: string = glyphMapping.get(iconCls);
if (!glyphName) {
glyphName = iconCls;
}
this.gs.loadDefs(this.ensureIconLibDefs(), [glyphName], true, [iconCls]);
this.log.debug('icon definition', glyphName, 'added to defs as', iconCls);
}
}