c642b814d4
* move replication-actions component into core addon so that secondary recovery works * move the rest of replication action components
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
import { alias } from '@ember/object/computed';
|
|
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
import ReplicationActions from 'core/mixins/replication-actions';
|
|
import layout from '../templates/components/replication-actions';
|
|
|
|
const DEFAULTS = {
|
|
token: null,
|
|
primary_api_addr: null,
|
|
primary_cluster_addr: null,
|
|
errors: [],
|
|
id: null,
|
|
replicationMode: null,
|
|
force: false,
|
|
};
|
|
|
|
export default Component.extend(ReplicationActions, DEFAULTS, {
|
|
layout,
|
|
replicationMode: null,
|
|
model: null,
|
|
cluster: alias('model'),
|
|
|
|
reset() {
|
|
if (!this || this.isDestroyed || this.isDestroying) {
|
|
return;
|
|
}
|
|
this.setProperties(DEFAULTS);
|
|
},
|
|
|
|
replicationDisplayMode: computed('replicationMode', function() {
|
|
const replicationMode = this.get('replicationMode');
|
|
if (replicationMode === 'dr') {
|
|
return 'DR';
|
|
}
|
|
if (replicationMode === 'performance') {
|
|
return 'Performance';
|
|
}
|
|
}),
|
|
|
|
actions: {
|
|
onSubmit() {
|
|
return this.submitHandler(...arguments);
|
|
},
|
|
clear() {
|
|
this.reset();
|
|
this.setProperties({
|
|
token: null,
|
|
id: null,
|
|
});
|
|
},
|
|
},
|
|
});
|