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

17 lines
536 B
JavaScript
Raw Normal View History

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 && ['kubernetes', 'terraform', 'nomad', 'consul', 'aws'].includes(source)) {
return `${prefix}${source}`;
}
return;
}
export default helper(serviceExternalSource);