1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

99 lines
2.2 KiB
React
Raw Normal View History

2018-08-02 14:52:53 +02:00
/*
* Routes Rendering Columns
*/
import React from 'react'
import FilterReason
from 'components/routeservers/large-communities/filter-reason'
import NoexportReason
from 'components/routeservers/large-communities/noexport-reason'
import {ROUTES_RECEIVED,
ROUTES_FILTERED,
ROUTES_NOT_EXPORTED} from './actions';
2018-08-02 14:52:53 +02:00
// Helper:
export const PrimaryIndicator = function(props) {
if (props.route.primary) {
2018-08-02 14:52:53 +02:00
return(
<span className="primary-route is-primary-route">&gt;
<div>Best Route</div>
</span>
);
}
// Default
return (
<span className="primary-route not-primary-route"></span>
)
}
// Helper: Lookup value in route path
export const _lookup = (r, path) => {
return path.split(".").reduce((acc, elem) => acc[elem], r);
}
2018-08-02 14:52:53 +02:00
export const ColDefault = function(props) {
return (
<td>
<span onClick={props.onClick}>{_lookup(props.route, props.column)}</span>
</td>
);
2018-08-02 14:52:53 +02:00
}
// Include filter and noexport reason in this column.
export const ColNetwork = function(props) {
return (
<td className="col-route-network">
<span className="route-network" onClick={props.onClick}>
<PrimaryIndicator route={props.route} />
{props.route.network}
</span>
{props.displayReasons == ROUTES_FILTERED && <FilterReason route={props.route} />}
{props.displayReasons == ROUTES_NOT_EXPORTED && <NoexportReason route={props.route} />}
</td>
);
}
// Special AS Path Widget
export const ColAsPath = function(props) {
const asns = _lookup(props.route, "bgp.as_path");
const baseUrl = "http://irrexplorer.nlnog.net/search/"
let asnLinks = asns.map((asn, i) => {
return (<a key={`${asn}_${i}`} href={baseUrl + asn} target="_blank">{asn} </a>);
});
return (
<td>
{asnLinks}
</td>
);
}
// Meta component, decides what to render based on on
// prop 'column'.
export default function(props) {
2018-08-02 14:52:53 +02:00
const widgets = {
"network": ColNetwork,
"bgp.as_path": ColAsPath,
"ASPath": ColAsPath,
};
let Widget = widgets[props.column] || ColDefault;
return (
<Widget column={props.column} route={props.route}
displayReasons={props.displayReasons}
onClick={props.onClick} />
);
}