open-consul/ui/packages/consul-ui/app/helpers/service/external-source.js

22 lines
591 B
JavaScript

import { helper } from '@ember/component/helper';
import { get } from '@ember/object';
export function serviceExternalSource(params, hash) {
let source = get(params[0], 'ExternalSources.firstObject');
if (!source) {
source = get(params[0], 'Meta.external-source');
}
const prefix = typeof hash.prefix === 'undefined' ? '' : hash.prefix;
if (
source &&
['consul-api-gateway', 'vault', 'kubernetes', 'terraform', 'nomad', 'consul', 'aws'].includes(
source
)
) {
return `${prefix}${source}`;
}
return;
}
export default helper(serviceExternalSource);