mirror of https://github.com/rancher/ui.git
33 lines
787 B
JavaScript
33 lines
787 B
JavaScript
import Resource from 'ember-api-store/models/resource';
|
|
|
|
var Port = Resource.extend({
|
|
_publicIp: null,
|
|
_publicIpState: 0,
|
|
displayPublicIp: function() {
|
|
var ip = this.get('_publicIp');
|
|
if ( ip )
|
|
{
|
|
return ip;
|
|
}
|
|
else if ( this && this.get('_publicIpState') === 2 )
|
|
{
|
|
return '(Unknown IP)';
|
|
}
|
|
else if ( this && this.get('_publicIpState') === 0 )
|
|
{
|
|
this.set('_publicIpState', 1);
|
|
this.get('store').find('ipaddress', this.get('publicIpAddressId')).then((ip) => {
|
|
this.set('_publicIp', ip.get('address'));
|
|
}).catch(() => {
|
|
this.set('_publicIpState', 2);
|
|
});
|
|
|
|
return 'Loading...';
|
|
}
|
|
|
|
return null;
|
|
}.property('_publicIpState','_publicIp','publicIpAddressId'),
|
|
});
|
|
|
|
export default Port;
|