mirror of https://github.com/rancher/ui.git
32 lines
814 B
JavaScript
32 lines
814 B
JavaScript
import { and } from '@ember/object/computed';
|
|
import Mixin from '@ember/object/mixin';
|
|
import C from 'ui/utils/constants';
|
|
|
|
export default Mixin.create({
|
|
stripStack: true,
|
|
prefixLength: function() {
|
|
var name = this.get('model.displayName');
|
|
var stackName = (this.get('model.labels')||{})[C.LABEL.STACK_NAME];
|
|
if ( stackName && name.indexOf(stackName) === 0 )
|
|
{
|
|
return stackName.length + 1;
|
|
}
|
|
|
|
return 0;
|
|
}.property('name'),
|
|
showEllipsis: and('stripStack','prefixLength'),
|
|
|
|
displayName: function() {
|
|
var name = this.get('model.displayName')||'';
|
|
if ( this.get('stripStack') )
|
|
{
|
|
var len = this.get('prefixLength');
|
|
return name.substr(len);
|
|
}
|
|
else
|
|
{
|
|
return name;
|
|
}
|
|
}.property('stripStack','prefixLength','model.displayName'),
|
|
});
|