mirror of https://github.com/rancher/ui.git
59 lines
2.0 KiB
JavaScript
59 lines
2.0 KiB
JavaScript
import Ember from 'ember';
|
|
import Util from 'ui/utils/util';
|
|
|
|
export default Ember.Mixin.create({
|
|
// defineStateCounts('arrangedInstances', 'instanceStates', 'instanceCountSort');
|
|
defineStateCounts(inputKey, countsProperty, sortProperty) {
|
|
|
|
// after a mixin is instantiated they seal the props which prevents us from pushing more objs into reservedKeys
|
|
// BUT they dont freeze them so we can set it again. just clone it push the new values in and then set it
|
|
var rkCln = this.get('reservedKeys').slice(0);
|
|
rkCln.pushObjects([countsProperty, sortProperty]);
|
|
this.set('reservedKeys', rkCln);
|
|
this.set(countsProperty, Ember.computed(`${inputKey}.@each.state`, () => {
|
|
let byName = [];
|
|
let byColor = [];
|
|
|
|
this.get(inputKey).sortBy('stateSort').forEach((inst) => {
|
|
let color = inst.get('stateBackground');
|
|
if ( color === 'bg-muted' ) {
|
|
color = 'bg-success';
|
|
}
|
|
|
|
let state = inst.get('displayState');
|
|
let entry = byName.findBy('state', state);
|
|
if ( entry ) {
|
|
entry.count++;
|
|
} else {
|
|
entry = {state: state, color: color, count: 1};
|
|
byName.push(entry);
|
|
}
|
|
|
|
entry = byColor.findBy('color', color);
|
|
if ( entry ) {
|
|
entry.count++;
|
|
} else {
|
|
entry = {color: color, count: 1};
|
|
byColor.push(entry);
|
|
}
|
|
});
|
|
|
|
return {
|
|
byName: byName,
|
|
byColor: byColor
|
|
};
|
|
}));
|
|
|
|
this.set(sortProperty, Ember.computed(countsProperty, `${inputKey}.[]`, () => {
|
|
let colors = this.get(`${countsProperty}.byColor`);
|
|
let success = (colors.findBy('bg-success')||{}).count + (colors.findBy('bg-muted')||{}).coun;
|
|
let error = (colors.findBy('bg-error')||{}).count;
|
|
let other = this.get(`${inputKey}.length`) - success - error;
|
|
|
|
return Util.strPad(error, 6, '0') +
|
|
Util.strPad(other, 6, '0') +
|
|
Util.strPad(success, 6, '0');
|
|
}));
|
|
}
|
|
});
|