badguardhome/client/src/install/Setup/AddressList.js

62 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-02-04 14:13:59 +00:00
import React from 'react';
import PropTypes from 'prop-types';
2019-02-06 14:32:32 +00:00
import { getIpList, getDnsAddress, getWebAddress } from '../../helpers/helpers';
import { ALL_INTERFACES_IP } from '../../helpers/constants';
2019-02-04 14:13:59 +00:00
const AddressList = (props) => {
2019-02-06 14:32:32 +00:00
let webAddress = getWebAddress(props.address, props.port);
let dnsAddress = getDnsAddress(props.address, props.port);
2019-02-04 14:13:59 +00:00
if (props.address === ALL_INTERFACES_IP) {
2019-02-04 14:13:59 +00:00
return getIpList(props.interfaces).map((ip) => {
2019-02-06 14:32:32 +00:00
webAddress = getWebAddress(ip, props.port);
dnsAddress = getDnsAddress(ip, props.port);
2019-02-04 14:13:59 +00:00
if (props.isDns) {
return (
<li key={ip}>
<strong>
{dnsAddress}
</strong>
</li>
);
}
return (
<li key={ip}>
<a href={webAddress}>
{webAddress}
</a>
</li>
);
});
}
if (props.isDns) {
return (
<strong>
{dnsAddress}
</strong>
);
}
return (
<a href={webAddress}>
{webAddress}
</a>
);
};
AddressList.propTypes = {
interfaces: PropTypes.object.isRequired,
address: PropTypes.string.isRequired,
port: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
isDns: PropTypes.bool,
};
export default AddressList;